/* ==============================================
   SHOP PAGE - PROFESSIONAL CATEGORY STYLE
   Matches categories.css design language
   ============================================== */

/* ==================== SHOP HERO ORBS ==================== */
.shop-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
    animation: heroOrbDrift 20s ease-in-out infinite;
}

.shop-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,245,255,0.18) 0%, transparent 70%);
    top: -80px;
    left: -60px;
    animation-duration: 22s;
}

.shop-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(181,61,255,0.22) 0%, transparent 70%);
    bottom: -40px;
    right: -40px;
    animation-duration: 18s;
    animation-delay: -6s;
}

.shop-orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255,61,142,0.15) 0%, transparent 70%);
    top: 30%;
    right: 25%;
    animation-duration: 28s;
    animation-delay: -12s;
}

@keyframes heroOrbDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25%       { transform: translate(30px, -40px) scale(1.12); }
    50%       { transform: translate(-20px, 25px) scale(0.9); }
    75%       { transform: translate(25px, 15px) scale(1.05); }
}

/* ==================== SHOP HERO BADGES ==================== */
.shop-hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.shop-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.shop-hero-badge i {
    color: var(--color-neon-cyan);
    font-size: 0.8rem;
}

.shop-hero-badge:hover {
    background: rgba(0,245,255,0.08);
    border-color: rgba(0,245,255,0.3);
    color: rgba(255,255,255,0.9);
    transform: translateY(-2px);
}

/* ==================== SHOP HERO ==================== */
.shop-hero {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color, rgba(255,255,255,0.1));
}

.shop-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(0, 245, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(181, 61, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(255, 61, 142, 0.08) 0%, transparent 50%);
    animation: shopBgShift 15s ease-in-out infinite;
}

@keyframes shopBgShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.shop-hero .container {
    position: relative;
    z-index: 1;
}

.shop-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.shop-hero-particles::before,
.shop-hero-particles::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    opacity: 0.05;
    animation: shopFloatParticles 20s ease-in-out infinite;
}

.shop-hero-particles::before {
    background: radial-gradient(circle, rgba(0, 245, 255, 0.6) 0%, transparent 70%);
    top: 10%;
    left: 15%;
}

.shop-hero-particles::after {
    background: radial-gradient(circle, rgba(181, 61, 255, 0.6) 0%, transparent 70%);
    bottom: 15%;
    right: 10%;
    width: 150px;
    height: 150px;
    animation-delay: 5s;
}

@keyframes shopFloatParticles {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.9); }
    75% { transform: translate(20px, 30px) scale(1.05); }
}

.shop-page-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--color-neon-cyan), var(--color-neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: shopTitleGlow 3s ease-in-out infinite;
    position: relative;
}

.shop-page-title::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(135deg, var(--color-neon-cyan), var(--color-neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(20px);
    opacity: 0.5;
}

@keyframes shopTitleGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(0, 245, 255, 0.5)); }
    50% { filter: drop-shadow(0 0 20px rgba(0, 245, 255, 0.8)); }
}

.shop-page-title i {
    margin-right: 1rem;
    -webkit-text-fill-color: var(--color-neon-cyan);
}

.shop-page-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== SHOP LAYOUT ==================== */
.shop-content-section {
    padding: 60px 0 80px;
    background:
        linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    min-height: 80vh;
}

.shop-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(0, 245, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(181, 61, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 61, 142, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.shop-content-section .container {
    position: relative;
    z-index: 1;
}

.shop-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2.5rem;
    align-items: start;
}

/* ==================== FILTERS SIDEBAR ==================== */
.filters-sidebar {
    position: sticky;
    top: calc(var(--header-height, 70px) + 1.5rem);
    align-self: flex-start;
    background: linear-gradient(135deg, rgba(30, 30, 45, 0.8) 0%, rgba(20, 20, 35, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: fit-content;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.filters-sidebar::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.3), rgba(181, 61, 255, 0.3), transparent);
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.filters-sidebar:hover::before {
    opacity: 0.3;
}

.filters-sidebar:hover {
    border-color: rgba(0, 245, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(0, 245, 255, 0.05);
}

.filters-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text-primary);
}

.filters-title i {
    color: var(--color-neon-cyan);
    font-size: 1.25rem;
}

.filter-group {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-group h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-neon-cyan);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid rgba(0, 245, 255, 0.2);
    padding-bottom: 0.75rem;
}

.filter-group h3 i {
    font-size: 1rem;
    color: var(--color-neon-cyan);
}

.filter-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-neon-cyan);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.02em;
}

.filter-title i {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Category Filters */
.category-filters {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
}

.filter-option:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 245, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
}

.filter-option input[type="checkbox"]:hover {
    border-color: rgba(0, 245, 255, 0.5);
    background: rgba(0, 245, 255, 0.1);
}

.filter-option input[type="checkbox"]:checked {
    background: linear-gradient(135deg, var(--color-neon-cyan), #4db8ff);
    border-color: var(--color-neon-cyan);
    box-shadow: 0 0 12px rgba(0, 245, 255, 0.4);
}

.filter-option input[type="checkbox"]:checked::after {
    content: '✓';
    color: #0a0a0a;
    font-weight: 700;
    font-size: 12px;
    position: absolute;
    display: flex;
}

.filter-option label {
    cursor: pointer;
    color: rgba(255, 255, 255, 0.65);
    transition: all 0.3s ease;
    font-size: 0.9375rem;
    flex: 1;
    font-weight: 500;
}

.filter-option:hover label {
    color: rgba(255, 255, 255, 0.85);
}

.filter-option input:checked + label {
    color: var(--color-neon-cyan);
    font-weight: 600;
    text-shadow: 0 0 8px rgba(0, 245, 255, 0.2);
}

.filter-count {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.125rem 0.5rem;
    border-radius: var(--radius-full);
    min-width: 28px;
    text-align: center;
}

/* Subcategory toggle arrow */
.filter-option.has-children {
    padding-right: 0.25rem;
}

.subcategory-toggle {
    margin-left: auto;
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.45);
    transition: all 0.25s ease;
    padding: 0;
}

.subcategory-toggle:hover {
    background: rgba(0, 245, 255, 0.12);
    border-color: rgba(0, 245, 255, 0.4);
    color: var(--color-neon-cyan);
}

.subcategory-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.subcategory-toggle.expanded i {
    transform: rotate(180deg);
}

/* Collapsible children */
.filter-children {
    display: none;
}

.filter-children.expanded {
    display: block;
    animation: subcatFadeIn 0.2s ease;
}

@keyframes subcatFadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.filter-option-child {
    padding-left: 2rem;
}

.filter-option-child label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
}

.filter-option-child:hover label {
    color: rgba(255, 255, 255, 0.8);
}

.filter-option-child input:checked + label {
    color: var(--color-neon-cyan);
}

/* Price Range */
.price-range {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.price-inputs {
    display: flex;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.price-inputs input {
    flex: 1;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-text-primary);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.price-inputs input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.price-inputs input:hover {
    border-color: rgba(0, 245, 255, 0.3);
    background: rgba(0, 245, 255, 0.05);
}

.price-inputs input:focus {
    border-color: var(--color-neon-cyan);
    background: rgba(0, 245, 255, 0.1);
    box-shadow: 0 0 12px rgba(0, 245, 255, 0.2);
    outline: none;
}

.price-range span {
    color: var(--color-text-muted);
    font-weight: 600;
}

.price-range input {
    width: 100%;
    padding: 0.625rem 0.75rem;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-text-primary);
    font-size: 0.875rem;
    transition: all 0.25s ease;
}

.price-range input:focus {
    border-color: var(--color-neon-cyan);
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.15);
    outline: none;
}

/* Color Swatches */
.color-options {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
}

.color-swatch {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.color-swatch::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.color-swatch:hover,
.color-swatch.active {
    border-color: var(--color-neon-cyan);
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.color-swatch.active::after {
    border-color: var(--color-neon-cyan);
}

/* Size Options */
.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-option.size-item {
    flex: 0 0 auto;
    padding: 0.375rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    background: rgba(10, 10, 10, 0.4);
}

.filter-option.size-item:hover {
    border-color: rgba(0, 245, 255, 0.3);
    background: rgba(0, 245, 255, 0.05);
}

/* ─── Color Swatches (new) ─── */
.color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    padding: 0.25rem 0;
}

.color-swatch label,
label.color-swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    width: auto;
    height: auto;
    border: none;
    background: none;
}

.swatch-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: block;
    border: 2px solid rgba(255,255,255,0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.swatch-circle::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.25s ease;
}

.swatch-circle::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.25s ease;
}

label.color-swatch:hover .swatch-circle {
    border-color: rgba(0,245,255,0.6);
    transform: scale(1.2);
    box-shadow: 0 6px 16px rgba(0,245,255,0.3), 0 2px 8px rgba(0,0,0,0.3);
}

label.color-swatch:hover .swatch-circle::before {
    opacity: 0.8;
}

label.color-swatch.active .swatch-circle {
    border-color: var(--color-neon-cyan);
    transform: scale(1.25);
    box-shadow: 0 8px 20px rgba(0,245,255,0.4), 0 0 16px rgba(0,245,255,0.25), inset 0 0 8px rgba(0,245,255,0.1);
}

label.color-swatch.active .swatch-circle::after {
    border-color: var(--color-neon-cyan);
    box-shadow: 0 0 8px rgba(0,245,255,0.3);
}

.swatch-label {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.6);
    text-align: center;
    white-space: nowrap;
    font-weight: 500;
    transition: all 0.25s ease;
}

label.color-swatch:hover .swatch-label {
    color: rgba(255,255,255,0.8);
}

label.color-swatch.active .swatch-label {
    color: var(--color-neon-cyan);
    font-weight: 700;
    text-shadow: 0 0 6px rgba(0,245,255,0.2);
}

/* ─── Size Buttons (new) ─── */
.size-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0.25rem 0;
}

label.size-btn {
    padding: 0.3rem 0.7rem;
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm, 6px);
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.75);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    user-select: none;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

label.size-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(0,245,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

label.size-btn:hover::before {
    transform: translateX(100%);
}

label.size-btn:hover {
    border-color: rgba(0,245,255,0.5);
    color: rgba(255,255,255,0.9);
    background: rgba(0,245,255,0.08);
    transform: translateY(-1px);
}

label.size-btn.active {
    border-color: var(--color-neon-cyan);
    background: linear-gradient(135deg, rgba(0,245,255,0.15), rgba(77,184,255,0.1));
    color: var(--color-neon-cyan);
    box-shadow: 0 0 12px rgba(0,245,255,0.25), inset 0 0 12px rgba(0,245,255,0.05);
    font-weight: 700;
    box-shadow: 0 0 8px rgba(0,245,255,0.2);
}

/* ─── Pill Filter Options (Krój) ─── */
.filter-options-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0.25rem 0;
}

.filter-option-pill {
    padding: 0;
}

.filter-option-pill label {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 1rem;
    border: 2px solid rgba(191,90,242,0.2);
    border-radius: 999px;
    background: rgba(191,90,242,0.04);
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    position: relative;
    overflow: hidden;
}

.filter-option-pill label::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(191,90,242,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.filter-option-pill label:hover {
    border-color: var(--color-neon-purple, #bf5af2);
    color: rgba(255,255,255,0.9);
    background: rgba(191,90,242,0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(191,90,242,0.15);
}

.filter-option-pill label:hover::before {
    opacity: 0.6;
}

.filter-option-pill input:checked + label,
.filter-option-pill.active label {
    border-color: var(--color-neon-purple, #bf5af2);
    background: linear-gradient(135deg, rgba(191,90,242,0.15), rgba(191,90,242,0.08));
    color: var(--color-neon-purple, #bf5af2);
    box-shadow: 0 0 16px rgba(191,90,242,0.25), inset 0 0 10px rgba(191,90,242,0.08);
    font-weight: 700;
}

/* ─── Filter Expand Button ─── */
/* Filter Expand Button */
.filter-expand-btn {
    width: 100%;
    padding: 0.625rem;
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.filter-expand-btn:hover {
    background: rgba(0, 245, 255, 0.08);
    color: var(--color-neon-cyan);
    border-color: rgba(0, 245, 255, 0.3);
}

/* Clear Filters */
.apply-filters-btn {
    width: 100%;
    padding: 0.9rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--color-neon-cyan), #4db8ff);
    border: 2px solid var(--color-neon-cyan);
    border-radius: var(--radius-md);
    color: #0a0a0a;
    cursor: pointer;
    font-size: 0.9375rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.apply-filters-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 245, 255, 0.3);
    background: linear-gradient(135deg, #4db8ff, var(--color-neon-cyan));
}

.apply-filters-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(0, 245, 255, 0.2);
}

.clear-filters-btn {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 61, 142, 0.08);
    border: 2px solid rgba(255, 61, 142, 0.4);
    border-radius: var(--radius-md);
    color: var(--color-neon-pink);
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.clear-filters-btn:hover {
    background: rgba(255, 61, 142, 0.15);
    border-color: var(--color-neon-pink);
    box-shadow: 0 6px 18px rgba(255, 61, 142, 0.2);
    transform: translateY(-1px);
}

.clear-filters-btn:active {
    transform: translateY(0);
}

/* Filter Loading */
.filter-loading {
    text-align: center;
    padding: 1rem;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.filter-loading i {
    color: var(--color-neon-cyan);
}

.filter-error {
    text-align: center;
    padding: 1rem;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
}

.filter-error i {
    color: var(--color-error);
}

/* ==================== SHOP HEADER ==================== */
.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.shop-header h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.25rem;
}

.results-count {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
}

.results-count strong {
    color: var(--color-neon-cyan);
    font-weight: 600;
}

.sort-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.sort-controls label {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    white-space: nowrap;
}

.sort-select {
    padding: 0.5rem 1rem;
    background: rgba(30, 30, 45, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-text-primary);
    cursor: pointer;
    font-size: 0.875rem;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    transition: all 0.25s ease;
}

.sort-select:focus {
    border-color: var(--color-neon-cyan);
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.15);
    outline: none;
}

/* View Toggle */
.view-toggle {
    display: flex;
    gap: 0.25rem;
    background: rgba(10, 10, 10, 0.4);
    padding: 0.25rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.view-btn {
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.view-btn:hover {
    color: var(--color-text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.view-btn.active {
    background: linear-gradient(135deg, var(--color-neon-cyan), var(--color-neon-purple));
    color: #0a0a0a;
    box-shadow: 0 2px 10px rgba(0, 245, 255, 0.3);
}

/* ==================== PRODUCTS GRID ==================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.products-grid.view-list {
    grid-template-columns: 1fr;
}

/* ==================== PRODUCT CARD ==================== */
.product-card {
    background: linear-gradient(135deg, rgba(30, 30, 45, 0.8) 0%, rgba(20, 20, 35, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    animation: productFadeIn 0.6s ease-out backwards;
}

.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.2s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }
.product-card:nth-child(6) { animation-delay: 0.3s; }
.product-card:nth-child(7) { animation-delay: 0.35s; }
.product-card:nth-child(8) { animation-delay: 0.4s; }
.product-card:nth-child(9) { animation-delay: 0.45s; }

@keyframes productFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animated border glow */
.product-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--color-neon-cyan), var(--color-neon-purple), transparent);
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.product-card:hover::before {
    opacity: 0.5;
    animation: productBorderGlow 3s linear infinite;
}

@keyframes productBorderGlow {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--color-neon-cyan);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(0, 245, 255, 0.1),
                inset 0 0 20px rgba(0, 245, 255, 0.03);
    background: linear-gradient(135deg, rgba(30, 30, 45, 0.95) 0%, rgba(20, 20, 35, 1) 100%);
}

/* Product Image */
.product-card-image {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: linear-gradient(135deg, #111118 0%, #1a1a28 100%);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card-image img {
    transform: scale(1.08);
}

.product-card-image .placeholder-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 4rem;
    color: var(--color-neon-cyan);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.product-card:hover .product-card-image .placeholder-icon {
    opacity: 1;
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(0, 245, 255, 0.4));
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--color-neon-cyan), var(--color-neon-purple));
    color: #0a0a0a;
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 245, 255, 0.3);
}

.product-badge.sale {
    background: linear-gradient(135deg, #ff3d8e, #cc00cc);
    box-shadow: 0 4px 12px rgba(255, 61, 142, 0.3);
}

.product-badge.new {
    background: linear-gradient(135deg, #00ff88, #00cc66);
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
    color: #0a0a0a;
}

/* Quick View Overlay */
.product-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    z-index: 2;
}

.product-card:hover .product-card-overlay {
    transform: translateY(0);
}

.overlay-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(30, 30, 45, 0.9);
    color: var(--color-text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.overlay-btn:hover {
    background: var(--color-neon-cyan);
    color: #0a0a0a;
    border-color: var(--color-neon-cyan);
    transform: scale(1.15);
    box-shadow: 0 4px 15px rgba(0, 245, 255, 0.4);
}

.overlay-btn.cart-btn:hover {
    background: var(--color-neon-purple);
    border-color: var(--color-neon-purple);
    box-shadow: 0 4px 15px rgba(181, 61, 255, 0.4);
}

/* Product Info */
.product-card-info {
    padding: 1.5rem;
    position: relative;
}

.product-card-category {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-neon-cyan);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.product-card-category i {
    font-size: 0.625rem;
}

.product-card-name {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
    color: var(--color-text-primary);
    transition: all 0.3s ease;
    line-height: 1.3;
}

.product-card:hover .product-card-name {
    color: var(--color-neon-cyan);
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.15);
}

.product-card-desc {
    color: var(--color-text-secondary);
    font-size: 0.8125rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Product Price & Actions */
.product-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.product-price {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.product-price .price-current {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-neon-cyan);
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.2);
}

.product-price .price-original {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
}

.product-card-btn {
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--color-neon-cyan), var(--color-neon-purple));
    color: #0a0a0a;
    border: none;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    white-space: nowrap;
}

.product-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 245, 255, 0.4);
}

.product-card-btn:active {
    transform: translateY(0);
}

/* Rating Stars */
.product-rating {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin-bottom: 0.75rem;
}

.product-rating .stars {
    display: flex;
    gap: 0.125rem;
    color: #FFD700;
    font-size: 0.75rem;
}

.product-rating .count {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* Purple accent variant */
.product-card-image .placeholder-icon.accent-purple {
    color: var(--color-neon-purple);
}

.product-card:hover .product-card-image .placeholder-icon.accent-purple {
    filter: drop-shadow(0 0 15px rgba(181, 61, 255, 0.4));
}

/* ==================== LIST VIEW ==================== */
.products-grid.view-list .product-card {
    display: grid;
    grid-template-columns: 240px 1fr;
    align-items: stretch;
}

.products-grid.view-list .product-card-image {
    height: 100%;
    min-height: 200px;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.products-grid.view-list .product-card-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.products-grid.view-list .product-card-desc {
    max-width: 500px;
}

/* ==================== PAGINATION ==================== */
.shop-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.page-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(30, 30, 45, 0.6);
    color: var(--color-text-secondary);
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    text-decoration: none;
}

.page-btn:hover:not(:disabled) {
    border-color: var(--color-neon-cyan);
    color: var(--color-neon-cyan);
    background: rgba(0, 245, 255, 0.05);
    box-shadow: 0 0 12px rgba(0, 245, 255, 0.15);
}

.page-btn.active {
    background: linear-gradient(135deg, var(--color-neon-cyan), var(--color-neon-purple));
    color: #0a0a0a;
    border-color: transparent;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 245, 255, 0.3);
}

.page-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* ==================== LIGHT THEME ==================== */
body[data-theme="light"] .shop-hero {
    background: linear-gradient(135deg, #f0f4f8 0%, #e3e9f0 50%, #d9e2ec 100%);
}

body[data-theme="light"] .shop-hero::before {
    background:
        radial-gradient(circle at 30% 40%, rgba(79, 195, 247, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(224, 170, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(255, 179, 217, 0.06) 0%, transparent 50%);
}

body[data-theme="light"] .shop-content-section {
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 50%, #ffffff 100%);
}

body[data-theme="light"] .shop-content-section::before {
    background-image:
        radial-gradient(circle at 10% 20%, rgba(79, 195, 247, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(224, 170, 255, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 179, 217, 0.03) 0%, transparent 50%);
}

body[data-theme="light"] .filters-sidebar {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 250, 252, 0.98) 100%);
    border-color: rgba(100, 100, 120, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

body[data-theme="light"] .filters-sidebar:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1),
                0 0 15px rgba(79, 195, 247, 0.08);
    border-color: rgba(79, 195, 247, 0.3);
}

body[data-theme="light"] .filter-group {
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

body[data-theme="light"] .filter-title {
    color: var(--color-cta-primary);
}

body[data-theme="light"] .filter-option:hover {
    background: rgba(79, 195, 247, 0.06);
}

body[data-theme="light"] .filter-option label {
    color: #4a5568;
}

body[data-theme="light"] .filter-option:hover label {
    color: #2d3748;
}

body[data-theme="light"] .filter-option input:checked + label {
    color: var(--color-cta-primary);
}

body[data-theme="light"] .filter-group h3 {
    color: var(--color-cta-primary);
    border-bottom-color: rgba(79, 195, 247, 0.28);
}

body[data-theme="light"] .filter-group h3 i {
    color: var(--color-cta-primary);
}

body[data-theme="light"] .filter-count {
    background: rgba(0, 0, 0, 0.04);
    color: #718096;
}

body[data-theme="light"] .price-range input {
    background: rgba(247, 250, 252, 0.8);
    border-color: rgba(100, 100, 120, 0.2);
    color: #2d3748;
}

body[data-theme="light"] .price-range input:focus {
    border-color: var(--color-cta-primary);
    box-shadow: 0 0 10px rgba(79, 195, 247, 0.2);
}

body[data-theme="light"] .price-inputs input {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(100, 100, 120, 0.22);
    color: #2d3748;
}

body[data-theme="light"] .price-inputs input::placeholder {
    color: #94a3b8;
}

body[data-theme="light"] .price-inputs input:hover {
    border-color: rgba(79, 195, 247, 0.45);
    background: rgba(79, 195, 247, 0.06);
}

body[data-theme="light"] .price-inputs input:focus {
    border-color: var(--color-cta-primary);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(79, 195, 247, 0.2);
}

body[data-theme="light"] .color-swatch {
    border-color: rgba(0, 0, 0, 0.1);
}

body[data-theme="light"] .color-swatch:hover,
body[data-theme="light"] .color-swatch.active {
    border-color: var(--color-cta-primary);
}

body[data-theme="light"] .swatch-circle {
    border-color: rgba(100, 100, 120, 0.28);
}

body[data-theme="light"] .swatch-label {
    color: #64748b;
}

body[data-theme="light"] label.color-swatch:hover .swatch-label {
    color: #334155;
}

body[data-theme="light"] label.color-swatch.active .swatch-label {
    color: var(--color-cta-primary);
}

body[data-theme="light"] label.size-btn {
    border-color: rgba(100, 100, 120, 0.24);
    background: rgba(255, 255, 255, 0.96);
    color: #334155;
}

body[data-theme="light"] label.size-btn:hover {
    border-color: rgba(79, 195, 247, 0.5);
    color: #1e293b;
    background: rgba(79, 195, 247, 0.1);
}

body[data-theme="light"] label.size-btn.active {
    border-color: var(--color-cta-primary);
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.14), rgba(199, 125, 255, 0.12));
    color: var(--color-cta-primary);
    box-shadow: 0 0 10px rgba(255, 107, 157, 0.2);
}

body[data-theme="light"] .filter-option-pill label {
    border-color: rgba(199, 125, 255, 0.28);
    background: rgba(199, 125, 255, 0.08);
    color: #4a5568;
}

body[data-theme="light"] .filter-option-pill label:hover {
    border-color: var(--color-cta-secondary);
    background: rgba(199, 125, 255, 0.14);
    color: #1f2937;
}

body[data-theme="light"] .filter-option-pill input:checked + label,
body[data-theme="light"] .filter-option-pill.active label {
    border-color: var(--color-cta-secondary);
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.14), rgba(199, 125, 255, 0.14));
    color: var(--color-cta-secondary);
}

body[data-theme="light"] .filter-expand-btn {
    background: rgba(247, 250, 252, 0.8);
    border-color: rgba(100, 100, 120, 0.15);
    color: #4a5568;
}

body[data-theme="light"] .filter-expand-btn:hover {
    background: rgba(79, 195, 247, 0.08);
    color: var(--color-cta-primary);
    border-color: rgba(79, 195, 247, 0.3);
}

body[data-theme="light"] .clear-filters-btn {
    border-color: rgba(255, 107, 157, 0.3);
    color: #e53e6b;
}

body[data-theme="light"] .clear-filters-btn:hover {
    background: rgba(255, 107, 157, 0.08);
    border-color: #e53e6b;
}

body[data-theme="light"] .shop-header {
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

body[data-theme="light"] .shop-header h1 {
    color: #2d3748;
}

body[data-theme="light"] .results-count {
    color: #4a5568;
}

body[data-theme="light"] .results-count strong {
    color: var(--color-cta-primary);
}

body[data-theme="light"] .sort-select {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(100, 100, 120, 0.2);
    color: #2d3748;
}

body[data-theme="light"] .sort-select:focus {
    border-color: var(--color-cta-primary);
}

body[data-theme="light"] .view-toggle {
    background: rgba(247, 250, 252, 0.8);
    border-color: rgba(100, 100, 120, 0.15);
}

body[data-theme="light"] .view-btn {
    color: #718096;
}

body[data-theme="light"] .view-btn:hover {
    color: #2d3748;
    background: rgba(0, 0, 0, 0.04);
}

body[data-theme="light"] .view-btn.active {
    background: linear-gradient(135deg, var(--color-cta-primary), var(--color-cta-secondary));
    color: #fff;
    box-shadow: 0 2px 8px rgba(255, 107, 157, 0.3);
}

/* Light Product Cards */
body[data-theme="light"] .product-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 250, 252, 0.98) 100%);
    border-color: rgba(100, 100, 120, 0.12);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

body[data-theme="light"] .product-card:hover {
    border-color: var(--color-cta-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1),
                0 0 25px rgba(79, 195, 247, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(250, 250, 252, 1) 100%);
}

body[data-theme="light"] .product-card-image {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8ecf0 100%);
}

body[data-theme="light"] .product-card-image .placeholder-icon {
    color: var(--color-cta-primary);
}

body[data-theme="light"] .product-card-category {
    color: var(--color-cta-primary);
}

body[data-theme="light"] .product-card-name {
    color: #2d3748;
}

body[data-theme="light"] .product-card:hover .product-card-name {
    color: var(--color-cta-primary);
    text-shadow: none;
}

body[data-theme="light"] .product-card-desc {
    color: #4a5568;
}

body[data-theme="light"] .product-card-footer {
    border-top-color: rgba(0, 0, 0, 0.06);
}

body[data-theme="light"] .product-price .price-current {
    color: var(--color-cta-primary);
    text-shadow: none;
}

body[data-theme="light"] .product-price .price-original {
    color: #a0aec0;
}

body[data-theme="light"] .product-card-btn {
    background: linear-gradient(135deg, var(--color-cta-primary), var(--color-cta-secondary));
    color: #fff;
}

body[data-theme="light"] .product-card-btn:hover {
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.35);
}

body[data-theme="light"] .product-rating .count {
    color: #a0aec0;
}

body[data-theme="light"] .overlay-btn {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 0, 0, 0.1);
    color: #2d3748;
}

body[data-theme="light"] .overlay-btn:hover {
    background: var(--color-cta-primary);
    color: #fff;
    border-color: var(--color-cta-primary);
}

/* Light Pagination */
body[data-theme="light"] .shop-pagination {
    border-top-color: rgba(0, 0, 0, 0.06);
}

body[data-theme="light"] .page-btn {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(100, 100, 120, 0.15);
    color: #4a5568;
}

body[data-theme="light"] .page-btn:hover:not(:disabled) {
    border-color: var(--color-cta-primary);
    color: var(--color-cta-primary);
    background: rgba(255, 107, 157, 0.06);
}

body[data-theme="light"] .page-btn.active {
    background: linear-gradient(135deg, var(--color-cta-primary), var(--color-cta-secondary));
    color: #fff;
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
}

body[data-theme="light"] .product-badge {
    color: #fff;
}

body[data-theme="light"] .shop-page-title {
    filter: drop-shadow(0 0 8px rgba(79, 195, 247, 0.3));
}

body[data-theme="light"] .shop-page-subtitle {
    color: #4a5568;
}

body[data-theme="light"] .shop-hero-particles {
    display: none;
}

/* ── Light: hero orbs ── */
body[data-theme="light"] .shop-orb-1 {
    background: radial-gradient(circle, rgba(79,195,247,0.18) 0%, transparent 70%);
}
body[data-theme="light"] .shop-orb-2 {
    background: radial-gradient(circle, rgba(199,125,255,0.18) 0%, transparent 70%);
}
body[data-theme="light"] .shop-orb-3 {
    background: radial-gradient(circle, rgba(255,107,157,0.14) 0%, transparent 70%);
}

/* ── Light: hero badges ── */
body[data-theme="light"] .shop-hero-badge {
    background: rgba(255,255,255,0.72);
    border-color: rgba(0,0,0,0.1);
    color: #4a5568;
    backdrop-filter: none;
}
body[data-theme="light"] .shop-hero-badge:hover {
    background: rgba(255,255,255,0.95);
    border-color: rgba(79,195,247,0.5);
    color: #2d3748;
}
body[data-theme="light"] .shop-hero-badge i {
    color: var(--color-cta-primary);
}

/* ── Light: subcategory toggle ── */
body[data-theme="light"] .subcategory-toggle {
    background: rgba(0,0,0,0.05);
    border-color: rgba(0,0,0,0.15);
    color: #718096;
}
body[data-theme="light"] .subcategory-toggle:hover {
    background: rgba(79,195,247,0.1);
    border-color: var(--color-cta-primary);
    color: var(--color-cta-primary);
}

/* ── Light: collapsible children ── */
body[data-theme="light"] .filter-option-child label {
    color: #718096;
}
body[data-theme="light"] .filter-option-child:hover label {
    color: #2d3748;
}
body[data-theme="light"] .filter-option-child input:checked + label {
    color: var(--color-cta-primary);
}

/* ── Light: shop section background ── */
body[data-theme="light"] .shop-section {
    background: radial-gradient(ellipse at 50% 0%, rgba(79,195,247,0.07) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 100%, rgba(199,125,255,0.06) 0%, transparent 60%),
                #f7f8fc;
}
body[data-theme="light"] .shop-section::before {
    background: radial-gradient(circle, rgba(79,195,247,0.07) 0%, transparent 70%);
}
body[data-theme="light"] .shop-section::after {
    background: radial-gradient(circle, rgba(199,125,255,0.07) 0%, transparent 70%);
}

/* ==================== SHOP SECTION ANIMATED BACKGROUND ==================== */
.shop-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 12% 8%, rgba(0, 245, 255, 0.08) 0%, transparent 52%),
        radial-gradient(ellipse at 88% 92%, rgba(181, 61, 255, 0.1) 0%, transparent 56%),
        linear-gradient(180deg, #0a0a0f 0%, #111527 45%, #0d1020 100%);
}

.shop-section::before,
.shop-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(1px);
}

.shop-section::before {
    width: 520px;
    height: 520px;
    top: -160px;
    left: -220px;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.16) 0%, rgba(0, 245, 255, 0.05) 45%, transparent 72%);
    animation: shopSectionOrbFloatA 22s ease-in-out infinite;
}

.shop-section::after {
    width: 460px;
    height: 460px;
    right: -180px;
    bottom: -140px;
    background: radial-gradient(circle, rgba(181, 61, 255, 0.18) 0%, rgba(255, 61, 142, 0.08) 46%, transparent 74%);
    animation: shopSectionOrbFloatB 28s ease-in-out infinite;
}

.shop-section > .container {
    position: relative;
    z-index: 1;
}

@keyframes shopSectionOrbFloatA {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.9;
    }
    50% {
        transform: translate3d(44px, 28px, 0) scale(1.12);
        opacity: 0.68;
    }
}

@keyframes shopSectionOrbFloatB {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.88;
    }
    50% {
        transform: translate3d(-36px, -24px, 0) scale(1.1);
        opacity: 0.64;
    }
}

body[data-theme="light"] .shop-section {
    background:
        radial-gradient(ellipse at 12% 8%, rgba(79, 195, 247, 0.14) 0%, transparent 54%),
        radial-gradient(ellipse at 88% 92%, rgba(199, 125, 255, 0.14) 0%, transparent 56%),
        linear-gradient(180deg, #f8fbff 0%, #eef3fa 46%, #e8edf6 100%);
}

body[data-theme="light"] .shop-section::before {
    background: radial-gradient(circle, rgba(79, 195, 247, 0.2) 0%, rgba(79, 195, 247, 0.08) 45%, transparent 74%);
}

body[data-theme="light"] .shop-section::after {
    background: radial-gradient(circle, rgba(199, 125, 255, 0.2) 0%, rgba(255, 107, 157, 0.1) 46%, transparent 74%);
}

/* ==================== LIST VIEW (DESKTOP) ==================== */
@media (min-width: 1024px) {
    .products-grid.view-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .products-grid.view-list .product-card {
        display: grid;
        grid-template-columns: 250px minmax(0, 1fr);
        align-items: stretch;
        min-height: 200px;
    }

    .products-grid.view-list .product-card-image {
        order: 1;
        height: 100%;
        min-height: 200px;
        max-height: 220px;
        border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    }

    .products-grid.view-list .product-card-info {
        order: 2;
        padding: 1.1rem 1.25rem;
    }

    .products-grid.view-list .product-card-desc {
        display: block;
    }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1023px) {
    .shop-container {
        grid-template-columns: 1fr;
    }

    .filters-sidebar {
        position: static;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shop-page-title {
        font-size: 2.5rem;
    }
    
    .product-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
}

@media (max-width: 639px) {
    .shop-hero {
        padding: 100px 0 40px;
    }
    
    .shop-page-title {
        font-size: 2rem;
    }

    .products-grid:not(.view-list) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
    }

    .products-grid:not(.view-list) .product-card-image {
        height: 150px;
    }

    .products-grid:not(.view-list) .product-card-info {
        padding: 0.9rem;
    }

    .products-grid:not(.view-list) .product-card-name {
        font-size: 0.95rem;
    }

    .products-grid:not(.view-list) .product-card-desc {
        display: none;
    }

    .products-grid:not(.view-list) .product-card-footer {
        padding-top: 0.7rem;
    }

    .products-grid:not(.view-list) .product-price .price-current {
        font-size: 1rem;
    }

    .products-grid:not(.view-list) .product-card-btn {
        padding: 0.45rem 0.75rem;
        font-size: 0.72rem;
    }

    .products-grid.view-list {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .shop-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .sort-controls {
        width: 100%;
        flex-wrap: wrap;
    }
    
    .sort-select {
        flex: 1;
    }

    .product-card-image {
        height: 220px;
    }
    
    .product-card:hover {
        transform: translateY(-5px) scale(1);
    }
    
    .products-grid.view-list .product-card {
        grid-template-columns: 1fr;
    }
    
    .products-grid.view-list .product-card-image {
        height: 220px;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }
    
    .shop-hero-particles {
        display: none;
    }
}

@media (max-width: 420px) {
    .products-grid:not(.view-list) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ==================== REDUCED MOTION ==================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .shop-hero-particles {
        display: none !important;
    }

    .shop-section::before,
    .shop-section::after {
        animation: none !important;
    }
    
    .product-card:hover {
        transform: translateY(-4px);
    }
}
