/* Color Palette & Variables */
:root {
    --soft-white: #f8fafc;
    --ice-mint: #a3e9d9;
    --sky-blue: #69d7ff;
    --pale-pink: #ffadc8;
    --text-main: #ffffff;
    --accent-blue: #ffffff;
    --accent-teal: #00d2be;
    --white: #ffffff;
    --pill-radius: 50px;
    /* The Asymmetric Shape from Image 2 & 5 */
    --leaf-radius: 20px 120px 20px 120px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: 100;
    scrollbar-width: thin;
    scrollbar-color: rgba(150, 150, 150, 0.85) rgba(255, 255, 255, 0.05);
}

html {
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background: url('../Images/15.png') no-repeat center center fixed;
    background-size: cover;
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
    
}

/* Custom Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #b8b8b8, #777777);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.24);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #d2d2d2, #8a8a8a);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

/* Header Styling */
.main-header {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
}

.header-container {
    width: 92%;
    max-width: 1800px;

    /* iOS 26 Liquid glass base */
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.041),
            rgba(220, 240, 255, 0.041),
            rgba(255, 230, 245, 0.027)
        );
    
    backdrop-filter: blur(24px) saturate(170%) brightness(1.05);
    -webkit-backdrop-filter: blur(24px) saturate(170%) brightness(1.05);

    border-radius: var(--pill-radius);
    padding: 5px 25px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    /* Depth + glow */
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.4);

    border: 1px solid rgba(255, 255, 255, 0.25);

    margin: 0 auto;
}

.header-container::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;

    background:
        radial-gradient(
            circle at top left,
            rgba(255, 255, 255, 0.25),
            transparent 55%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(100, 200, 255, 0.15),
            transparent 60%
        );

    opacity: 0.6;
    pointer-events: none;
    mix-blend-mode: screen;
}

.header-container {
    position: relative;
    overflow: visible;
}



.logo-area {
    display: flex;
    align-items: center;
    gap: 0px;
    flex-shrink: 0;
    font-size: 0;
    cursor: pointer;
}

.brand-name {
    font-weight: 200;
    font-size: 1.2rem;
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.liquid-glass-btn {
    padding: 6px 14px;
    font-size: 0.8rem;
    border-radius: 20px;
    cursor: pointer;

    /* iOS 26 Liquid Glass - Highly Transparent */
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.12),
        rgba(255, 255, 255, 0.02)
    );

    backdrop-filter: blur(24px) saturate(180%) brightness(1.1);
    -webkit-backdrop-filter: blur(24px) saturate(180%) brightness(1.1);

    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.95);

    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.4),
        inset 0 -1px 2px rgba(0, 0, 0, 0.1);

    position: relative;
    overflow: hidden;

    transition: all 0.35s ease;
}

.liquid-glass-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;

    background:
        radial-gradient(
            circle at top left,
            rgba(255, 255, 255, 0.35),
            transparent 55%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(100, 200, 255, 0.2),
            transparent 60%
        );

    opacity: 0.7;
    pointer-events: none;
    mix-blend-mode: screen;
}

.liquid-glass-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
}


@keyframes liquidWobble {
    0%   { transform: scale(1); }
    20%  { transform: scale(1.07, 0.95); }
    40%  { transform: scale(0.98, 1.05); }
    60%  { transform: scale(1.04, 0.97); }
    80%  { transform: scale(0.99, 1.01); }
    100% { transform: scale(1); }
}

.liquid-glass-btn:hover {
    animation: liquidWobble 0.8s ease-out;
}


.logo-icon {
    background: url('../Images/Logos/Proq2.png') no-repeat center / contain;
    width: 95px;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
    margin: -10px 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    margin: 0 15px;
    transition: 0.3s;
    font-size: 14px;
}

.nav-links a.active {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.25),
        rgba(210, 112, 0, 0.18)
    );
    backdrop-filter: blur(15px) saturate(150%);
    -webkit-backdrop-filter: blur(15px) saturate(150%);
    padding: 8px 20px;
    border-radius: var(--pill-radius);
    color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.4);
    box-shadow: 0 4px 15px rgba(212, 145, 0, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    font-weight: 200;
}

.nav-links a.active:hover {
    background: linear-gradient(
        135deg,
        rgba(212, 113, 0, 0.356),
        rgba(210, 119, 0, 0.28)
    );
    box-shadow: 0 6px 25px rgba(212, 145, 0, 0.5), inset 0 1px 2px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    border-color: rgba(211, 112, 0, 0.418);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.auth-wrapper,
.cart-wrapper,
.wishlist-wrapper {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;

    /* iOS 26 Liquid Glass - Transparent */
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.12),
        rgba(255, 255, 255, 0.03)
    );

    backdrop-filter: blur(20px) saturate(170%) brightness(1.08);
    -webkit-backdrop-filter: blur(20px) saturate(170%) brightness(1.08);

    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;

    /* Liquid depth with white glow */
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.35),
        inset 0 -1px 2px rgba(0, 0, 0, 0.1),
        0 0 12px rgba(255, 255, 255, 0.25);

    border: 1px solid rgba(255, 255, 255, 0.2);

    transition: all 0.35s ease;
    transform-origin: center;
    will-change: transform;
    color: rgba(255, 255, 255, 0.9);
    animation: headerIconGlow 3s ease-in-out infinite;
}

@keyframes headerIconGlow {
    0%, 100% {
        box-shadow:
            0 8px 24px rgba(0, 0, 0, 0.2),
            inset 0 1px 2px rgba(255, 255, 255, 0.35),
            inset 0 -1px 2px rgba(0, 0, 0, 0.1),
            0 0 12px rgba(255, 255, 255, 0.25);
    }
    50% {
        box-shadow:
            0 8px 24px rgba(0, 0, 0, 0.2),
            inset 0 1px 2px rgba(255, 255, 255, 0.35),
            inset 0 -1px 2px rgba(0, 0, 0, 0.1),
            0 0 18px rgba(255, 255, 255, 0.35);
    }
}

.auth-wrapper::before,
.cart-wrapper::before,
.wishlist-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;

    background:
        radial-gradient(
            circle at top left,
            rgba(255, 255, 255, 0.4),
            transparent 50%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(100, 200, 255, 0.18),
            transparent 60%
        );

    opacity: 0.65;
    filter: blur(0.5px);
    transform: scale(1.05);
    transition: transform 0.6s ease, filter 0.6s ease;
    pointer-events: none;
    mix-blend-mode: screen;
}


.auth-wrapper:hover,
.cart-wrapper:hover,
.wishlist-wrapper:hover {
    animation: liquidWobble 0.8s ease-out, headerIconGlowHover 1.5s ease-in-out infinite;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.35),
        inset 0 -1px 2px rgba(0, 0, 0, 0.1),
        0 0 20px rgba(255, 255, 255, 0.5);
}

@keyframes headerIconGlowHover {
    0%, 100% {
        box-shadow:
            0 8px 24px rgba(0, 0, 0, 0.2),
            inset 0 1px 2px rgba(255, 255, 255, 0.35),
            inset 0 -1px 2px rgba(0, 0, 0, 0.1),
            0 0 20px rgba(255, 255, 255, 0.5);
    }
    50% {
        box-shadow:
            0 8px 24px rgba(0, 0, 0, 0.2),
            inset 0 1px 2px rgba(255, 255, 255, 0.35),
            inset 0 -1px 2px rgba(0, 0, 0, 0.1),
            0 0 28px rgba(255, 255, 255, 0.7);
    }
}

@keyframes liquidWobble {
    0%   { transform: scale(1) rotate(0deg); }
    20%  { transform: scale(1.06, 0.96) rotate(-1deg); }
    40%  { transform: scale(0.98, 1.04) rotate(1deg); }
    60%  { transform: scale(1.03, 0.97) rotate(-0.5deg); }
    80%  { transform: scale(0.99, 1.01) rotate(0.5deg); }
    100% { transform: scale(1) rotate(0deg); }
}

/* User Name Styling */
.user-name {
    font-weight: 100;
    font-size: 0.55rem;
    color: var(--text-main);
    margin-left: 10px;
    margin-right: 10px;
    letter-spacing: 0.3px;
    opacity: 0.9;
}

.mobile-nav-signout,
.mobile-nav-user {
    display: none !important;
}

/* iOS 26 Liquid Effect Filter */
.ios26-liquid-effect {
    position: relative;
    backdrop-filter: blur(22px) saturate(180%) brightness(1.1);
    -webkit-backdrop-filter: blur(22px) saturate(180%) brightness(1.1);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.02)
    );
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.25),
        inset 0 1px 2px rgba(255, 255, 255, 0.3),
        inset 0 -1px 2px rgba(0, 0, 0, 0.1);
}

.ios26-liquid-effect::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(
            circle at top left,
            rgba(255, 255, 255, 0.35),
            transparent 50%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(100, 200, 255, 0.2),
            transparent 55%
        );
    opacity: 0.6;
    pointer-events: none;
    mix-blend-mode: screen;
}

/* Icon in liquid container - transparent background */
.ios26-liquid-effect .icon-element {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.85);
    font-size: 2.5rem;
}


.auth-icon, .cart-icon, .wishlist-icon {
    font-size: 1.2rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-badge, .wishlist-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: rgba(0, 0, 0, 0.281);
    color: rgb(255, 255, 255);
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.212);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-main);
    transition: 0.3s;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}

@media (max-width: 968px) {
    .header-container {
        padding: 8px 15px;
        width: 92%;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 65px;
        left: 50%;
        transform: translateX(-50%);
        width: 92%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px 0;
        text-align: center;
        border-radius: 25px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        z-index: 1001;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 10px 0;
        padding: 10px;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 130px;
    }

    .hero-visual {
        text-align: center;
        margin-top: 30px;
    }

    .slide img {
        transform: none;
        max-width: 95%;
        margin: 0 auto;
        height: 300px;
    }

    .slide-overlay {
        left: 20px;
    }

    .slide-tagline {
        font-size: 1.6rem;
    }

    .hero-btns {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

}

@media (max-width: 480px) {
    .header-container {
        width: 94%;
        padding: 8px 12px;
    }

    .brand-name {
        font-size: 1rem;
    }

    .logo-icon {
        width: 30px;
        height: 30px;
    }

    .header-actions {
        gap: 8px;
    }

    h1 {
        font-size: 2.2rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .product-card-asymmetric, .custom-card {
        border-radius: 15px 100px 15px 100px;
        padding: 30px 20px;
        width: 100%;
    }

    .card-img-container img, .custom-card img {
        border-radius: 0 80px 0 0;
    }

}
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 5% 50px;
    gap: 40px;
}

.hero-content { flex: 1; }
.hero-visual { flex: 1; text-align: right; }

.slideshow-container {
    position: relative;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
}

.slide {
    display: none;
    position: relative;
}

.slide.show {
    display: block;
}

.slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 30px;
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.5s ease;
}

.slide-overlay {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    text-align: left;
    color: white;
    pointer-events: none;
    z-index: 5;
}

.slide-brand {
    font-size: 1rem;
    font-weight: 200;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
}

.slide-tagline {
    font-size: 2.2rem;
    font-weight: 200;
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.slide-price {
    font-size: 1rem;
    font-weight: 200;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dot-container {
    position: absolute;
    bottom: 25px;
    right: 40px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    height: 6px;
    width: 6px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: inline-block;
    transition: all 0.4s ease;
    cursor: pointer;
}

.dot.active {
    background-color: white;
    width: 20px;
    border-radius: 4px;
}

.fade {
    animation: fadeEffect 1s ease-in-out;
}

@keyframes fadeEffect {
    from { opacity: 0.6; }
    to { opacity: 1; }
}

.badge-pill {
    background: rgba(224, 242, 241, 0.25);
    color: white ;
    padding: 5px 20px;
    border-radius: 999px;
    font-size: 14px;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.35);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.6),
        0 4px 12px rgba(0,0,0,0.08);

    transition: all 0.3s ease;
}

.badge-pill:hover {
    background: rgba(224, 242, 241, 0.35);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.7),
        0 6px 18px rgba(0,0,0,0.12);
}

h1 { font-size: 3.5rem; line-height: 1.2; margin: 20px 0; }
/* This does NOT work because color cannot accept gradients */
.accent-text {
color: #d8d8d8;
}

.hero-btns { display: flex; gap: 15px; margin: 30px 0; }

.btn {
    padding: 14px 35px;
    border-radius: var(--pill-radius);
    text-decoration: none;
  background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--text-main);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Liquid shine effect */
.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.35),
        transparent
    );
    transition: all 0.6s ease;
}

/* Shine animation on hover */
.btn:hover::before {
    left: 100%;
}

/* Primary Button */
/* Small glass buttons that size to their content */
.glass-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    /* Size based on content */
    width: fit-content;
    min-width: unset;
    padding: 10px 16px;

    /* Typography */
    font-size: 0.95rem;
    font-weight: 100;
    line-height: 1;
    white-space: nowrap;
    color: #27E8FF;

    /* Super transparent liquid glass effect */
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.06),
        rgba(255, 255, 255, 0.015)
    );
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);

    /* Soft border */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top-color: rgba(255, 255, 255, 0.18);
    border-left-color: rgba(255, 255, 255, 0.14);

    /* Shape */
    border-radius: 12px;

    /* Subtle depth */
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -1px 0 rgba(255, 255, 255, 0.02),
        0 8px 24px rgba(0, 0, 0, 0.18);

    /* Smooth interaction */
    transition: all 0.35s ease;

    /* Optional shimmer */
    position: relative;
    overflow: hidden;
}

/* Shiny top reflection */
.glass-button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.18),
        rgba(255, 255, 255, 0.03) 40%,
        transparent 100%
    );
    pointer-events: none;
}

/* Hover effect */
.glass-button:hover {
    transform: translateY(-2px);
    border-color: rgba(39, 232, 255, 0.18);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 12px 30px rgba(39, 232, 255, 0.08),
        0 8px 24px rgba(0, 0, 0, 0.22);
}

/* Icon inside button */
.glass-button i,
.glass-button svg {
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Keyframes for pulsing glow */
@keyframes glowCyanPrimary {
    0% {
        box-shadow: 0 0 15px 1px rgba(0,188,212,0.5), 0 0 25px rgba(0,188,212,0.2);
    }
    50% {
        box-shadow: 0 0 25px 3px rgba(0,188,212,0.8), 0 0 40px rgba(0,188,212,0.4);
    }
    100% {
        box-shadow: 0 0 20px 2px rgba(0,188,212,0.6), 0 0 35px rgba(0,188,212,0.3);
    }
}

/* Primary Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 26px;
    font-size: 0.85rem;
    border-radius: var(--pill-radius);
    width: fit-content;
    
    /* Liquid Glass Effect */
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.03)
    );
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    
    /* Liquid Borders */
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    
    color: var(--white);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.25);
    
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(9, 116, 255, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(0, 230, 118, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}

/* Secondary Button */
.btn-secondary {
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,165,0,0.6);
    color: var(--text-main);
    box-shadow: 0 0 15px rgba(255,165,0,0.4), 0 0 30px rgba(255,165,0,0.2);
    animation: glowOrange 2.5s ease-in-out infinite;
}

@keyframes glowOrange {
    0%, 100% {
        box-shadow: 0 0 15px rgba(255,165,0,0.4), 0 0 30px rgba(255,165,0,0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(255,165,0,0.6), 0 0 40px rgba(255,165,0,0.3);
    }
}

/* Outline Button */
.btn-outline {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(0,188,212,0.4);
    color: var(--text-main);
    box-shadow: 0 0 12px rgba(0,188,212,0.3), 0 0 20px rgba(255,255,255,0.1);
    animation: glowCyan 2.5s ease-in-out infinite;
}

@keyframes glowCyan {
    0%, 100% {
        box-shadow: 0 0 12px rgba(0,188,212,0.3), 0 0 20px rgba(255,255,255,0.1);
    }
    50% {
        box-shadow: 0 0 18px rgba(0,188,212,0.5), 0 0 35px rgba(0,188,212,0.2);
    }
}

/* Hover Effects */
.btn:hover {
    transform: translateY(-3px) scale(1.02);
    backdrop-filter: blur(18px);
    box-shadow:
        0 10px 35px rgba(0,188,212,0.25),
        inset 0 0 12px rgba(255,255,255,0.2);
}

.btn-primary:hover {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.25),
        rgba(255, 255, 255, 0.1)
    );
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 12px 35px rgba(0, 188, 212, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.5);
    animation: liquidWobble 0.8s ease-out;
    border-color: rgba(255, 255, 255, 0.4);
}

@keyframes glowCyanPrimaryHover {
    0% {
        box-shadow: 0 0 25px 3px rgba(0,188,212,0.9), 0 0 50px rgba(0,188,212,0.4), inset 0 0 10px rgba(0,188,212,0.1);
    }
    50% {
        box-shadow: 0 0 35px 5px rgba(0,188,212,1), 0 0 70px rgba(0,188,212,0.6), inset 0 0 15px rgba(0,188,212,0.3);
    }
    100% {
        box-shadow: 0 0 30px 4px rgba(0,188,212,0.9), 0 0 60px rgba(0,188,212,0.5), inset 0 0 12px rgba(0,188,212,0.2);
    }
}

.btn-secondary:hover {
    background: rgba(255,165,0,0.2);
    box-shadow: 0 0 25px rgba(255,165,0,0.8), 0 0 50px rgba(255,165,0,0.4), inset 0 0 10px rgba(255,165,0,0.1);
    animation: glowOrangeHover 1.5s ease-in-out infinite;
}

@keyframes glowOrangeHover {
    0%, 100% {
        box-shadow: 0 0 25px rgba(255,165,0,0.8), 0 0 50px rgba(255,165,0,0.4), inset 0 0 10px rgba(255,165,0,0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(255,165,0,1), 0 0 60px rgba(255,165,0,0.6), inset 0 0 15px rgba(255,165,0,0.2);
    }
}

.btn-outline:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 0 20px rgba(0,188,212,0.6), 0 0 40px rgba(0,188,212,0.3), inset 0 0 10px rgba(0,188,212,0.1);
    animation: glowCyanHover 1.5s ease-in-out infinite;
}

@keyframes glowCyanHover {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0,188,212,0.6), 0 0 40px rgba(0,188,212,0.3), inset 0 0 10px rgba(0,188,212,0.1);
    }
    50% {
        box-shadow: 0 0 25px rgba(0,188,212,0.8), 0 0 50px rgba(0,188,212,0.4), inset 0 0 15px rgba(0,188,212,0.2);
    }
}

.hero-stats { display: flex; gap: 40px; margin-top: 50px; }
.stat-item { font-size: 24px; color: var(--accent-blue); }
.stat-item span { display: block; font-size: 14px; color: white; }

/* Procurement Homepage Merchandising */
.procurement-command {
    width: min(1180px, 90%);
    margin: 10px auto 64px;
    display: grid;
    grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1fr);
    gap: 22px;
    align-items: stretch;
    font-weight: 200;
}

.procurement-media {
    min-height: 360px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.18);
}

.procurement-media img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    display: block;
}

.procurement-copy {
    padding: clamp(22px, 3vw, 36px);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: 200;
}

.procurement-copy h2 {
    font-size: clamp(1.55rem, 2.8vw, 2.45rem);
    line-height: 1.12;
    margin: 14px 0 14px;
    max-width: 680px;
    font-weight: 200;
}

.procurement-copy p {
    color: rgba(255, 255, 255, 0.78);
    max-width: 650px;
    font-size: 0.9rem;
    font-weight: 200;
}

.procurement-paths {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 22px 0;
}

.procurement-path {
    min-height: 88px;
    padding: 14px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    font-weight: 200;
}

.procurement-path:hover {
    transform: translateY(-4px);
    border-color: rgba(68, 255, 224, 0.55);
    background: rgba(68, 255, 224, 0.12);
}

.procurement-path i {
    color: var(--accent-blue);
    font-size: 1.55rem;
}

.procurement-path span {
    font-size: 0.78rem;
    line-height: 1.25;
    font-weight: 200;
}

.procurement-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.license-promo-strip {
    width: min(1180px, 90%);
    margin: 0 auto 64px;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(360px, 1.2fr);
    gap: 24px;
    align-items: center;
    font-weight: 200;
}

.license-promo-copy span,
.bundle-label {
    color: white;
    font-size: 0.72rem;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.license-promo-copy h2 {
    margin-top: 8px;
    font-size: clamp(1.2rem, 2.1vw, 1.8rem);
    line-height: 1.12;
    font-weight: 200;
}

.license-promo-items {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.license-promo-items a {
    min-height: 78px;
    padding: 13px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #fff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 0.78rem;
    font-weight: 200;
}

.license-promo-items i {
    color: white;
    font-size: 1.45rem;
}

.procurement-bundles {
    padding: 64px 5%;
    font-weight: 200;
}

.onboarding-procurement {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 42px 0 68px;
}

.onboarding-section-head {
    width: min(1180px, 100%);
    margin: 0 auto 24px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
}

.onboarding-section-head .section-title {
    margin: 0;
    text-align: left;
    max-width: 760px;
}

.onboarding-section-head .section-title h2 {
    margin: 12px 0 8px;
}

.onboarding-section-head .section-title p {
    color: rgba(255, 255, 255, 0.72);
}

.onboarding-components-link {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 0.78rem;
    border-bottom: 1px solid rgba(68, 255, 224, 0.45);
}

.onboarding-components-link i {
    color: var(--accent-teal);
    font-size: 1rem;
}

.bundle-grid {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.bundle-card {
    min-height: 280px;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    font-weight: 200;
}

.onboarding-procurement .bundle-card {
    min-height: 330px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055)),
        rgba(10, 18, 24, 0.35);
}

.onboarding-procurement .bundle-card:first-child {
    border-color: rgba(68, 255, 224, 0.48);
}

.bundle-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 18px 0 22px;
}

.bundle-includes span {
    min-height: 27px;
    display: inline-flex;
    align-items: center;
    padding: 0 9px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.65rem;
}

.bundle-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: rgba(68, 255, 224, 0.13);
    color: var(--accent-blue);
    font-size: 1.55rem;
    margin-bottom: 22px;
}

.bundle-card h3 {
    font-size: 1.12rem;
    margin: 8px 0 12px;
    font-weight: 200;
}

.bundle-card p:not(.bundle-label) {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.82rem;
    line-height: 1.55;
    font-weight: 200;
}

.bundle-link {
    margin-top: auto;
    align-self: flex-start;
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    text-decoration: none;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 200;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        0 0 15px rgba(255, 255, 255, 0.8),
        0 0 30px rgba(0, 0, 0, 0.5),
        0 0 45px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    animation: glowPulse 3s ease-in-out infinite;
}

.bundle-link::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.bundle-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    box-shadow:
        0 0 20px rgba(0, 0, 0, 1),
        0 0 40px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.5);
    animation: glowPulseHover 2s ease-in-out infinite;
}

.bundle-link:hover::before {
    animation: shine 0.6s ease;
}

@media (max-width: 980px) {
    .procurement-command,
    .license-promo-strip,
    .bundle-grid {
        grid-template-columns: 1fr;
    }

    .procurement-paths,
    .license-promo-items {
        grid-template-columns: 1fr;
    }

    .procurement-media,
    .procurement-media img {
        min-height: 320px;
    }

    .onboarding-section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 640px) {
    .procurement-command,
    .license-promo-strip {
        width: 92%;
        margin-bottom: 56px;
    }

    .procurement-copy {
        padding: 24px;
    }

    .procurement-actions {
        flex-direction: column;
    }

    .procurement-actions .btn {
        width: 100%;
        text-align: center;
    }

    .onboarding-procurement {
        width: min(calc(100% - 24px), 1280px);
        padding-top: 28px;
    }

    .onboarding-procurement .bundle-card {
        min-height: 300px;
    }
}

/* Features Section */
.features {
    padding: 80px 5%;
    background: rgba(255, 255, 255, 0.05);
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

/* Grid Layout */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* Liquid Glass Feature Card */
.feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.25);

    padding: 35px;
    text-align: left;

    transition: all 0.35s ease;
    overflow: hidden;
}

/* Glass reflection layer */
.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.35),
        transparent
    );

    transition: 0.7s;
}

/* Shine sweep animation */
.feature-card:hover::before {
    left: 120%;
}

/* Hover Floating Effect */
.feature-card:hover {
    transform: translateY(-8px) scale(1.02);

    box-shadow:
        0 15px 45px rgba(0,188,212,0.25),
        inset 0 0 15px rgba(255,255,255,0.25);
}

/* Title */
.feature-card h3 {
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 200;
    color: #ffffff;
}

/* Description */
.feature-card p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.4;
}

/* Icon */
.icon-box {
    font-size: 1.7rem;
    font-weight: 100;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.9);
}

/* Featured Procurement Carousel */
.featured-products {
    padding: 56px 5% 64px;
    overflow: hidden;
    font-weight: 200;
}

.featured-products .section-title p {
    max-width: 620px;
    margin: 10px auto 0;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 200;
}

.featured-product-carousel {
    --featured-card-width: clamp(210px, 24vw, 300px);
    --featured-gap: clamp(12px, 1.5vw, 22px);
    width: min(100%, calc((var(--featured-card-width) * 3) + (var(--featured-gap) * 2)));
    margin: 0 auto 18px;
    overflow: hidden;
    position: relative;
    padding: 0;
}

.featured-carousel-track {
    display: flex;
    align-items: stretch;
    gap: var(--featured-gap);
    transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.featured-product-carousel.is-static .featured-carousel-track {
    justify-content: center;
}

.featured-product-carousel .product-card {
    flex: 0 0 var(--featured-card-width);
    width: var(--featured-card-width);
    min-height: 100%;
}

.featured-carousel-card {
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
    cursor: pointer;
}

.featured-carousel-card .card-head {
    height: 190px;
    padding: 18px;
    border-bottom-width: 2px;
}

.featured-carousel-card .card-head img {
    max-height: 112px;
}

.featured-carousel-card .card-head.image-missing::after {
    content: "Image unavailable";
    color: #1a202c;
    font-size: 0.78rem;
    font-weight: 200;
}

.featured-carousel-card .card-body {
    padding: 20px 18px 22px;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    font-weight: 200;
}

.featured-carousel-card .product-title {
    font-size: 0.95rem;
    font-weight: 200;
    min-height: 2.35em;
}

.featured-carousel-card .product-summary {
    font-size: 0.72rem;
    font-weight: 200;
    -webkit-line-clamp: 2;
    min-height: 2.9em;
}

.featured-carousel-card .current-price {
    font-size: 1.08rem;
    font-weight: 200 !important;
}

.license-empty-state {
    padding: 42px 24px;
    border-radius: 8px;
    border: 1px dashed rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.055);
    text-align: center;
    color: rgba(255, 255, 255, 0.72);
}

.license-empty-state i {
    display: block;
    color: var(--accent-blue);
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.license-empty-state h3 {
    color: #fff;
    margin: 0 0 8px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 350px);
    gap: 30px;
    justify-content: flex-start;
    width: 100%;
    max-width: 1200px;
    margin: 0 0 60px 17px;
}

.product-card-asymmetric, .custom-card {
    background: var(--white);
    border-radius: 12px;
    padding: 0px;
    padding-bottom: 60px;
    text-align: center;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    width: 100%;
    box-sizing: border-box;
}

.product-card-asymmetric h3, .custom-card h3 {
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-weight: 200;
    letter-spacing: 0px;
    color: #1a202c;
    line-height: 1.2;
    max-width: 250px;
}

.product-card-asymmetric p, .custom-card p {
    font-size: 0.95rem;
    margin-bottom: 0px;
    color: #4a5568;
    max-width: 280px;
    line-height: 1.4;
}

.product-card-asymmetric .btn, .custom-card .btn, .custom-card .btn-pill {
    margin-top: 25px;
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 100;
    border: 1px solid #ddd;
    color: var(--text-main);
    text-decoration: none;
    border-radius: var(--pill-radius);
    transition: 0.3s;
}

.product-card-asymmetric .btn:hover, .custom-card .btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.card-img-container, .custom-card img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0px;
}

.card-img-container img, .custom-card img {
    width: 100%;
    height: 140px; /* Standardize height to smaller box */
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
    padding: 10px;
}







@media (max-width: 760px) {


}

/*=============================================================================*/
/*                        Authentication Pages Styles                          */
/*=============================================================================*/
/* AUTH PAGES */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 40px;
}

.auth-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 25px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    text-align: center;
}

.auth-card h2 {
    margin-bottom: 10px;
    font-size: 2rem;
}

.auth-card p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 25px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.auth-form input {
    padding: 14px 20px;
    border-radius: var(--pill-radius);
    border: 1px solid #ddd;
    outline: none;
    font-size: 0.95rem;
}

.auth-form button {
    margin-top: 10px;
}

.auth-links {
    margin-top: 20px;
    font-size: 0.85rem;
}

.auth-links a {
    color: var(--accent-blue);
    text-decoration: none;
}

/* Back / Continue Shopping Link */
.back-shopping {
    position: fixed;
    top: 25px;
    left: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 8px 14px;
    border-radius: var(--pill-radius);
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
    z-index: 1100;
}

.back-shopping:hover {
    transform: translateX(-3px);
    background: rgba(255, 255, 255, 0.95);
}

/* Auth pages - site aligned liquid glass */
.auth-page {
    min-height: 100svh;
    padding: 96px 18px 42px;
}

.auth-card {
    width: min(430px, 100%);
    padding: 34px 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.32),
        inset 0 1px 1px rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    color: #fff;
}

.auth-card h2 {
    margin-bottom: 8px;
    color: #fff;
    font-size: clamp(1.55rem, 4vw, 2rem);
    font-weight: 200;
}

.auth-card p {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 200;
}

.auth-form {
    gap: 13px;
}

.auth-form input {
    min-height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    font-weight: 200;
}

.auth-form input::placeholder {
    color: rgba(255, 255, 255, 0.66);
}

.auth-form input:focus {
    border-color: rgba(68, 255, 224, 0.65);
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 0 0 4px rgba(68, 255, 224, 0.12);
}

.auth-form .btn-primary,
.auth-form button.btn-primary {
    width: 100%;
    min-height: 44px;
    margin-top: 8px;
    color: #fff;
    border-radius: var(--pill-radius);
}

.auth-form .btn-primary:disabled,
.auth-form button.btn-primary:disabled {
    opacity: 0.62;
    cursor: not-allowed;
}

.auth-links {
    color: rgba(255, 255, 255, 0.7);
}

.auth-links a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 200;
}

.auth-links a:hover {
    color: #fff;
}

.password-hints {
    color: rgba(255, 255, 255, 0.68) !important;
}

.password-hints li.valid {
    color: #40ffe9 !important;
}

.password-hints li.invalid {
    color: #ff8a8a !important;
}

.error-text,
#apiError,
#matchError {
    color: #ff8a8a !important;
}

.back-shopping {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow:
        0 0 12px rgba(255, 255, 255, 0.32),
        0 0 24px rgba(0, 0, 0, 0.32);
}

.back-shopping:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
}

@media (max-width: 560px) {
    .auth-page {
        align-items: flex-start;
        padding: 92px 14px 32px;
    }

    .auth-card {
        padding: 26px 18px;
    }

    .back-shopping {
        top: 16px;
        left: 14px;
    }
}


/* RESPONSIVE  Responsiveness */
@media (max-width: 968px) {
    .hero { flex-direction: column; text-align: center; padding-top: 150px; }
    .hero-visual { text-align: center; }
    .hero-btns { justify-content: center; }
    .hero-stats { justify-content: center; }
    .nav-links { display: none; } /* Mobile would need a toggle */
    h1 { font-size: 2.5rem; }
}

/* Game Setup Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.9);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(8px);
    color: #fff;
}

.loading-overlay.active {
    display: flex;
}

.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.loading-message {
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-blue);
    font-weight: 200 !important;
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1.02); }
}

/* 3D Rotating Cube */
.cube-wrapper {
    perspective: 1000px;
    width: 60px;
    height: 60px;
}

.cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateCube 3s infinite linear;
}

.cube-face {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 1px solid var(--accent-blue);
    background: rgba(0, 188, 212, 0.1);
    box-shadow: inset 0 0 10px rgba(0, 188, 212, 0.3);
}

.front  { transform: rotateY(0deg) translateZ(30px); }
.back   { transform: rotateY(180deg) translateZ(30px); }
.right  { transform: rotateY(90deg) translateZ(30px); }
.left   { transform: rotateY(-90deg) translateZ(30px); }
.top    { transform: rotateX(90deg) translateZ(30px); }
.bottom { transform: rotateX(-90deg) translateZ(30px); }

@keyframes rotateCube {
    0% { transform: rotateX(45deg) rotateY(45deg) rotateZ(0deg); }
    100% { transform: rotateX(405deg) rotateY(405deg) rotateZ(360deg); }
}

/* Confirmation/Status Message */
.status-content {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    max-width: 400px;
    padding: 20px;
}

.status-content.active {
    display: flex;
}

.status-icon-glow {
    width: 80px;
    height: 80px;
    background: var(--accent-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 0 30px rgba(0, 210, 190, 0.4);
    margin-bottom: 10px;
    animation: bounceIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes bounceIn {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.status-title {
    font-size: 1.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/*================================================================================================*/
/*                                --- Product page styling ---                                    */
/*================================================================================================*/
.product-card-asymmetric {
    position: relative;
    overflow: hidden;
}

.product-card-asymmetric::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), var(--ice-mint), transparent);
    animation: lightBeam 5s infinite linear;
}

@keyframes lightBeam {
    0% { left: -100%; }
    20% { left: 120%; }
    100% { left: 120%; }
}


/* Brands Section */

.brands-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.brand-card {
    background: rgba(255, 255, 255, 0.082);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255, 255, 255, 0.35);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.856),
        0 8px 25px rgba(0,0,0,0.08);

    padding: 0;
    border-radius: 18px;
    text-align: center;
    transition: all 0.35s ease;

    width: 150px;
    height: 150px;
    overflow: hidden;
}

.brand-card:hover {
    transform: translateY(-6px) scale(1.03);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.7),
        0 15px 35px rgba(0,0,0,0.12);

    background: rgba(255, 255, 255, 0.35);
}

.brand-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.brand-card-text {
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 200;
    letter-spacing: 0;
}

/* --- Category Showcase Section --- */
.category-showcase {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.category-card {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, filter 0.4s ease;
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-8px);
    filter: brightness(1.05);
}

.category-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.category-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 180px;
}

.liquid-glass-card {
    /* iOS 26 Liquid Glass Design */
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.15),
        rgba(255, 255, 255, 0.05)
    );
    backdrop-filter: blur(28px) saturate(200%) brightness(1.15);
    -webkit-backdrop-filter: blur(28px) saturate(200%) brightness(1.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.25),
        inset 0 1px 2px rgba(255, 255, 255, 0.5),
        inset 0 -1px 2px rgba(0, 0, 0, 0.15);
}

.category-content h3 {
    font-size: 1.5rem;
    font-weight: 200;
    margin-bottom: 8px;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.category-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 15px;
    font-weight: 200;
}

.category-btn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0.1)
    );
    border: 1px solid rgba(0,188,212,0.4);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 0 10px rgba(0,188,212,0.2), 0 0 20px rgba(0,210,190,0.1);
    animation: glowCategory 2.5s ease-in-out infinite;
}

@keyframes glowCategory {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0,188,212,0.2), 0 0 20px rgba(0,210,190,0.1);
    }
    50% {
        box-shadow: 0 0 15px rgba(0,188,212,0.4), 0 0 30px rgba(0,210,190,0.2);
    }
}

.category-btn:hover {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.3),
        rgba(255, 255, 255, 0.15)
    );
    border-color: rgba(0,188,212,0.7);
    box-shadow: 0 0 20px rgba(0,188,212,0.6), 0 8px 25px rgba(0, 210, 190, 0.4), inset 0 0 10px rgba(0,188,212,0.1);
    transform: translateX(3px);
    animation: glowCategoryHover 1.5s ease-in-out infinite;
}

@keyframes glowCategoryHover {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0,188,212,0.6), 0 8px 25px rgba(0, 210, 190, 0.4), inset 0 0 10px rgba(0,188,212,0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(0,188,212,0.8), 0 12px 35px rgba(0, 210, 190, 0.5), inset 0 0 15px rgba(0,188,212,0.2);
    }
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-card {
        height: 350px;
    }
    
    .category-content {
        min-height: 140px;
        padding: 25px;
    }
    
    .category-content h3 {
        font-size: 1.3rem;
    }
}

/* --- 2x2 Advertising Grid --- */
.promo-grid-section { padding: 80px 5%; }

.promo-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.promo-box {
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    transition: transform 0.4s ease;
    color: white;
}

.promo-box:hover { transform: scale(1.02); }

.promo-text h3 { font-size: 2rem; margin-bottom: 10px; }
.btn-link { 
    color: var(--ice-mint); 
    text-decoration: none; 
    font-weight: 200 !important; 
    transition: all 0.3s ease;
    text-shadow: 0 0 8px rgba(0, 210, 190, 0.3);
    animation: textGlowTeal 2.5s ease-in-out infinite;
}

@keyframes textGlowTeal {
    0%, 100% {
        text-shadow: 0 0 8px rgba(0, 210, 190, 0.3);
    }
    50% {
        text-shadow: 0 0 15px rgba(0, 210, 190, 0.5), 0 0 25px rgba(0, 210, 190, 0.2);
    }
}

.btn-link:hover {
    color: var(--accent-teal);
    text-shadow: 0 0 15px rgba(0, 210, 190, 0.8), 0 0 30px rgba(0, 210, 190, 0.4);
    animation: textGlowTealHover 1.5s ease-in-out infinite;
}

@keyframes textGlowTealHover {
    0%, 100% {
        text-shadow: 0 0 15px rgba(0, 210, 190, 0.8), 0 0 30px rgba(0, 210, 190, 0.4);
    }
    50% {
        text-shadow: 0 0 20px rgba(0, 210, 190, 1), 0 0 40px rgba(0, 210, 190, 0.6);
    }
}

/* Store Container Layout */
.store-container { padding-top: 120px; max-width: 1400px; margin: 0; padding-left: 4%; }
.store-header { text-align: center; margin-bottom: 40px; }
.store-header h3 {
    font-weight: 100 !important; 
    font-size: 2rem; 
    color: #ffffff; 
}

/* Search & Sort Bar */
.search-sort-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 0px;
    padding: 0 -2%;
}

.search-box {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.18),
        rgba(220, 240, 255, 0.16),
        rgba(255, 230, 245, 0.25)
    );
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 0 25px;
    height: 44px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 700px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05), inset 0 5px 10px rgba(255, 255, 255, 0.5);
}

.search-icon {
    color: rgb(255, 255, 255);
    font-size: 1.2rem;
}

.search-box input {
    border: none;
    outline: none;
    width: 100%;
    margin-left: 10px;
    font-size: 1rem;
    background: transparent;
    color: white;
}

.custom-dropdown {
    position: relative;
    width: auto;
}

.sort-dropdown {
    padding: 0 45px 0 25px;
    height: 44px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.18),
        rgba(220, 240, 255, 0.16),
        rgba(255, 230, 245, 0.25)
    );
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05), inset 0 5px 10px rgba(255, 255, 255, 0.5);
    cursor: pointer;
    color: var(--text-main);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: auto;
    white-space: nowrap;
}

.sort-dropdown:hover {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.25),
        rgba(220, 240, 255, 0.22),
        rgba(255, 230, 245, 0.32)
    );
}

.sort-dropdown i {
    margin-left: 10px;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.sort-dropdown.active i {
    transform: rotate(180deg);
}

#selectedOption {
    font-size: 0.7rem;
    font-weight: 100;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 8px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.12),
        rgba(220, 240, 255, 0.08),
        rgba(255, 230, 245, 0.1)
    );
    backdrop-filter: blur(24px) saturate(170%) brightness(1.05);
    -webkit-backdrop-filter: blur(24px) saturate(170%) brightness(1.05);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.35),
        inset 0 -1px 2px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
    min-width: 200px;
    font-size: 0.65rem;
    overflow: hidden;
    position: relative;
}

.dropdown-menu::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(
            circle at top left,
            rgba(255, 255, 255, 0.35),
            transparent 55%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(100, 200, 255, 0.18),
            transparent 60%
        );
    opacity: 0.6;
    pointer-events: none;
    mix-blend-mode: screen;
}

.dropdown-menu.active {
    display: block;
}

.dropdown-option {
    padding: 12px 20px;
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.dropdown-option:last-child {
    border-bottom: none;
}

.dropdown-option:hover {
    background: linear-gradient(
        135deg,
        rgba(163, 233, 217, 0.4),
        rgba(105, 215, 255, 0.3)
    );
    padding-left: 25px;
}

.dropdown-option.active {
    background: linear-gradient(
        135deg,
        rgba(163, 233, 217, 0.6),
        rgba(105, 215, 255, 0.5)
    );
    font-weight: 200;
}

/* Sidebar & Grid Layout */
.store-layout {
    display: flex;
    gap: 40px;
    padding: 20px 4% 60px 0%;
    align-items: flex-start;
}

.main-content {
    flex: 1;
    min-width: 0;
}

.sidebar {
    width: 340px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.12),
        rgba(220, 240, 255, 0.08),
        rgba(255, 230, 245, 0.1)
    );
    backdrop-filter: blur(24px) saturate(170%) brightness(1.05);
    -webkit-backdrop-filter: blur(24px) saturate(170%) brightness(1.05);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 35px 25px;
    border-radius: 40px;
    height: calc(100vh - 160px);
    position: sticky;
    top: 140px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.2), 
        inset 0 1px 2px rgba(255, 255, 255, 0.4);
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.sidebar-header h3 {
    font-size: 1.1rem;
    font-weight: 200;
    color: var(--white);
    letter-spacing: 1px;
}

.filter-group { 
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.category-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 5px;
}

.section-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-left: 10px;
}

.brand-list-flattened {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 10px;
}

.brand-item {
    padding: 10px 18px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    cursor: pointer;
    font-size: 14px;
    font-weight: 200;
    transition: all 0.3s ease;
    text-align: left;
    backdrop-filter: blur(10px);
}

.brand-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateX(5px);
}

.brand-item.active {
    background: linear-gradient(
        135deg,
        rgba(0, 188, 212, 0.4),
        rgba(105, 215, 255, 0.3)
    );
    border-color: rgba(0, 188, 212, 0.5);
    color: white;
    font-weight: 200;
    box-shadow: 0 8px 20px rgba(0, 188, 212, 0.2);
}
.filter-group:last-child { margin-bottom: 0; }
.filter-group h3 { margin-bottom: 20px; font-weight: 200 !important; color: var(--text-main); font-size: 14px; }
.filter-label { font-size: 0.9rem; color: var(--text-main); margin-bottom: 15px; font-weight: 200; letter-spacing: 0.5px; }

.category-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 0; }
.pill {
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-main);
    font-size: 14px;
}

.pill:hover {
    background: linear-gradient(
        135deg,
        rgba(0, 188, 212, 0.3),
        rgba(105, 215, 255, 0.25)
    );
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 12px rgba(0, 188, 212, 0.2);
    transform: translateY(-1px);
}

.pill.active { 
    background: linear-gradient(
        135deg,
        rgba(0, 188, 212, 0.5),
        rgba(105, 215, 255, 0.4)
    );
    color: white;
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 6px 20px rgba(0, 188, 212, 0.3);
}

.brand-list { list-style: none; }
.brand-list li {
    padding: 6px 4px; /* reduced padding */
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0.03)
    );
    backdrop-filter: blur(10px) saturate(170%) brightness(1.08);
    -webkit-backdrop-filter: blur(10px) saturate(170%) brightness(1.08);
    border: 1px solid rgba(255, 255, 255, 0.432);
    margin-bottom: 6px; /* slightly smaller spacing */
    border-radius: 60px; /* slightly smaller roundness */
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    color: var(--text-main);
    font-size: 11px; /* smaller text */
    gap: 6px; /* smaller space between icon/text */
    text-align: center;
    position: relative;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.753),
        inset 0 -1px 2px rgba(0, 0, 0, 0.1);
}

.brand-list li::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(
            circle at top left,
            rgba(255, 255, 255, 0.4),
            transparent 50%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(250, 250, 250, 0.18),
            transparent 60%
        );
    opacity: 0.65;
    filter: blur(0.5px);
    transform: scale(1.05);
    transition: transform 0.6s ease, filter 0.6s ease;
    pointer-events: none;
    mix-blend-mode: screen;
}

.brand-list li:hover {
    background: linear-gradient(
        135deg,
        rgba(255, 136, 25, 0.18),
        rgba(255, 255, 255, 0.08)
    );
    border-color: rgba(255, 123, 0, 0.4);
    transform: translateX(4px);
    box-shadow:
        0 10px 30px rgba(223, 89, 0, 0.25),
        inset 0 1px 2px rgba(255, 255, 255, 0.4),
        inset 0 -1px 2px rgba(0, 0, 0, 0.1);
}

.brand-list li.active {
    background: linear-gradient(
        135deg,
        rgba(255, 102, 0, 0.35),
        rgba(0, 0, 0, 0.25)
    );
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    font-weight: 200;
    box-shadow:
        0 8px 25px rgba(177, 71, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.4),
        inset 0 -1px 2px rgba(0, 0, 0, 0.1);
}

.clear-filters-btn {
    width: auto;
    padding: 6px 8px;
    margin-bottom: 15px;
    background: rgba(255, 107, 107, 0.15);
    border: 1px solid rgba(255, 107, 107, 0.4);
    border-radius: 8px;
    color: #ff6b6b;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.2s ease;
}

.clear-filters-btn:hover {
    background: rgba(255, 107, 107, 0.25);
    border-color: rgba(255, 107, 107, 0.6);
}

/* ===== MODERN CATEGORY NAVIGATION (REDESIGNED) ===== */

.store-onboarding-banner {
    min-width: 0;
    margin-bottom: 18px;
    padding: 20px;
    display: grid;
    grid-template-columns: minmax(260px, 1.2fr) minmax(320px, 1fr);
    gap: 20px;
    align-items: center;
    border: 1px solid rgba(68, 255, 224, 0.34);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(68, 255, 224, 0.1), rgba(255, 255, 255, 0.05)),
        rgba(7, 15, 22, 0.42);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.store-onboarding-copy {
    min-width: 0;
}

.store-onboarding-copy > span {
    color: var(--accent-teal);
    font-size: 0.68rem;
    text-transform: uppercase;
}

.store-onboarding-copy h1 {
    margin: 6px 0 7px;
    font-size: 1.35rem;
    line-height: 1.15;
    font-weight: 200;
}

.store-onboarding-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.78rem;
    line-height: 1.5;
}

.store-onboarding-actions {
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.store-onboarding-actions a {
    min-width: 0;
    min-height: 72px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #ffffff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    font-size: 0.7rem;
}

.store-onboarding-actions a:hover {
    border-color: rgba(68, 255, 224, 0.48);
    background: rgba(68, 255, 224, 0.1);
}

.store-onboarding-actions i {
    color: var(--accent-teal);
    font-size: 1.15rem;
}

@media (max-width: 980px) {
    .store-onboarding-banner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .store-onboarding-banner {
        padding: 16px;
    }

    .store-onboarding-actions {
        grid-template-columns: 1fr;
    }

    .store-onboarding-actions a {
        min-height: 52px;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
    }
}

/* Main category button - top level */
.category-main-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 8px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 200;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    position: relative;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: auto;
    touch-action: manipulation;
}

/* Icon styling in category button */
.category-main-btn i:first-child {
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Chevron icon for expandable categories */
.category-main-btn i:last-child {
    margin-left: auto;
    font-size: 1rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover state for main category button */
.category-main-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.15);
}

/* Active/expanded state for category button */
.category-main-btn.active,
.category-main-btn.expanded {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.4), rgba(255, 165, 0, 0.3));
    border-color: rgba(255, 140, 0, 0.6);
    color: rgba(255, 255, 255, 1);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.25), inset 0 1px 2px rgba(255, 255, 255, 0.3);
    font-weight: 200;
}

/* Active click state */
.category-main-btn:active {
    transform: scale(0.98);
}

/* Container for collapsible categories */
.category-tree {
    margin-bottom: 4px;
}

/* Submenu styling */
.category-submenu {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-left: 12px;
    border-left: 2px solid rgba(255, 140, 0, 0.3);
    margin: 0 0 8px 6px;
    max-height: 500px;
    overflow: hidden;
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Collapsed state */
.category-submenu[aria-hidden="true"] {
    max-height: 0;
    opacity: 0;
    padding: 0;
    border-left: 2px solid rgba(255, 140, 0, 0);
    margin: 0;
}

/* Subcategory item styling */
.subcategory-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    margin: 2px 0;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 200;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
}

/* Item icon (bullet point) */
.subcategory-item .item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    opacity: 0.6;
    flex-shrink: 0;
}

/* Hover state for subcategory item */
.subcategory-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.95);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.12);
}

/* Active state for subcategory item */
.subcategory-item.active {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.3), rgba(255, 165, 0, 0.2));
    border-color: rgba(255, 140, 0, 0.5);
    color: rgba(255, 255, 255, 1);
    font-weight: 200;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.2), 0 4px 12px rgba(255, 140, 0, 0.15);
}

/* Rotate chevron when submenu is open */
.category-main-btn[data-toggle] i:last-child {
    transform: rotate(0deg);
}

.category-submenu:not([aria-hidden="true"]) ~ .category-main-btn i:last-child {
    transform: rotate(180deg);
}

/* Ensure chevron rotates for expanded categories */
.category-main-btn[data-toggle].expanded i:last-child {
    transform: rotate(180deg);
}

.category-kicker {
    display: block;
    margin-bottom: 5px;
    color: var(--accent-teal);
    font-size: 0.66rem;
    text-transform: uppercase;
}

.category-card-onboarding {
    border-color: rgba(68, 255, 224, 0.38);
}

.onboarding-category-tree {
    margin-bottom: 18px;
}

.onboarding-category-btn {
    min-height: 52px;
    margin-bottom: 6px;
    border-color: rgba(68, 255, 224, 0.42);
    background: rgba(68, 255, 224, 0.1);
}

.onboarding-category-btn i:first-child {
    color: var(--accent-teal);
}

.onboarding-submenu {
    border-left-color: rgba(68, 255, 224, 0.42);
}

.onboarding-kit-link {
    min-width: 0;
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    text-decoration: none;
}

.onboarding-kit-link > i {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    color: var(--accent-teal);
    font-size: 0.95rem;
}

.onboarding-kit-link strong,
.onboarding-kit-link small {
    display: block;
}

.onboarding-kit-link strong {
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.78rem;
    line-height: 1.25;
}

.onboarding-kit-link small {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.64rem;
}

.component-filter-label {
    margin-top: 4px;
}

/* ===== RESPONSIVE STYLES FOR CATEGORY NAVIGATION ===== */

/* Mobile: Adjust spacing and sizing for smaller screens */
@media (max-width: 768px) {
    .category-main-btn {
        padding: 10px 14px;
        font-size: 0.9rem;
        margin-bottom: 6px;
        gap: 10px;
    }
    
    .category-main-btn i:first-child {
        font-size: 1rem;
    }
    
    .category-main-btn i:last-child {
        font-size: 0.9rem;
    }
    
    .category-submenu {
        padding-left: 10px;
        margin: 0 0 6px 4px;
        border-left-width: 2px;
    }
    
    .subcategory-item {
        padding: 8px 10px;
        font-size: 0.85rem;
        margin: 1px 0;
    }
    
    .subcategory-item .item-icon {
        font-size: 0.7rem;
    }
}

/* Small mobile: Further adjustments */
@media (max-width: 480px) {
    .category-main-btn {
        padding: 9px 12px;
        font-size: 0.85rem;
        margin-bottom: 5px;
    }
    
    .subcategory-item {
        padding: 7px 8px;
        font-size: 0.8rem;
        gap: 8px;
    }
    
    .filter-label {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
}

.unavailable-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.unavailable-content {
    text-align: center;
    padding: 40px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.18),
        rgba(220, 240, 255, 0.16),
        rgba(255, 230, 245, 0.25)
    );
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08), inset 0 5px 10px rgba(255, 255, 255, 0.6);
}

.unavailable-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.unavailable-content p {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 10px;
}

.unavailable-content .btn {
    margin-top: 25px;
}

/* Updated Product Cards */
.products-area { flex: 1; }
.results-count { margin-left: 2%; margin-bottom: 20px; font-size: 0.9rem; color: #666; }

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.61);
}

.card-head { 
    position: relative; 
    width: 100%; 
    height: 240px; 
    padding: 25px; 
    background: #ffffff; 
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 3px solid #000000; /* The black separator line */
}
.card-head img { 
    max-width: 70%; 
    max-height: 140px; /* Further reduced height for a cleaner, consistent small look */
    object-fit: contain; 
    transition: transform 0.3s ease;
}

.product-card:hover .card-head img {
    transform: scale(1.05);
}

.badge-sale {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fce4ec;
    color: #e91e63;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    z-index: 2;
}

.floating-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

.action-btn {
    width: 35px;
    height: 35px;
    background: rgba(0, 0, 0, 0.425);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.action-btn:hover { 
    transform: scale(1.1); 
    background: orange; 
    color: white;
    box-shadow: 0 6px 20px rgba(210, 126, 0, 0.4);
}

.card-body { 
    padding: 25px; 
    text-align: center; 
    background: rgba(255, 255, 255, 0.08); 
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.brand-tag { font-size: 0.7rem; color: #fff; letter-spacing: 1px; }

.card-body h3 { 
    margin: 10px 0; 
    font-size: 1.1rem; 
    color: #ffffff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.6em; /* Keeps height consistent */
}

.card-body p { 
    font-size: 0.8rem; 
    color: rgba(255, 255, 255, 0.7); 
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 3.6em; /* Keeps height consistent */
}

.price-box { margin-bottom: 20px; }
.current-price { color: #ffffff; font-size: 1.4rem; font-weight: 200 !important; }
.old-price { color: #ccc; text-decoration: line-through; margin-left: 10px; font-size: 0.9rem; }

.btn-view-details {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    text-decoration: none;
    color: #ffffff;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 0 15px rgba(255, 255, 255, 0.8),
        0 0 30px rgba(0, 0, 0, 0.5),
        0 0 45px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    animation: glowPulse 3s ease-in-out infinite;
}

.btn-view-details::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.btn-view-details:hover { 
    background: rgba(255, 255, 255, 0.15); 
    color: #ffffff;
    box-shadow: 
        0 0 20px rgba(0, 0, 0, 1),
        0 0 40px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.5);
    animation: glowPulseHover 2s ease-in-out infinite;
}

.btn-view-details:hover::before {
    animation: shine 0.6s ease;
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 
            0 0 15px rgba(0, 0, 0, 0.3),
            0 0 30px rgba(31, 31, 31, 0.1),
            0 0 45px rgba(255, 255, 255, 0.15);
    }
    50% {
        box-shadow: 
            0 0 15px rgba(148, 148, 148, 0.9),
            0 0 30px rgba(0, 0, 0, 0.6),
            0 0 45px rgba(255, 255, 255, 0.3);
    }
}

@keyframes glowPulseHover {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(0, 0, 0, 1),
            0 0 40px rgba(0, 0, 0, 0.8),
            0 0 60px rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 
            0 0 20px rgba(0, 0, 0, 1),
            0 0 40px rgba(0, 0, 0, 0.8),
            0 0 60px rgba(255, 255, 255, 0.5);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

/*=====================================================================================================================*/
/*                                                     cart style                                                      */
/*=====================================================================================================================*/
/* --- Cart Specific Styles --- */
.cart-container {
    padding: 120px 5% 60px;
    min-height: 80vh;
}

.cart-items-heading h2 {
    font-size: 1.25rem;
    margin: 0 0 6px 0;
    color: var(--text-main);
    font-weight: 200;
}
.cart-items-heading .cart-subtitle {
    margin: 0 0 12px 0;
    color: #666;
    font-size: 0.95rem;
}

.cart-layout {
    display: grid;
    /* Left column flexible, right column fixed summary */
    grid-template-columns: 1fr 360px;
    gap: 12px; /* smaller gap so summary sits closer to items */
    margin: 40px auto 0;
    max-width: 1200px; /* center both columns and equalize outer spacing */
    align-items: start;
}

.cart-item-card {
    background: transparent;
    border-radius: 20px;
    padding: 0;
    display: flex;
    align-items: stretch;
    gap: 0;
    margin: 0 0 15px 0;
    width: 100%;
    border: none;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cart-item-card .item-img-container {
    background: #ffffff;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 20px 0 0 20px;
}

.cart-item-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
}

.cart-item-details {
    flex: 1;
    padding: 15px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 0 20px 20px 0;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.4);
}

.cart-item-details .item-info {
    flex-grow: 1;
    min-width: 0;
}

.cart-item-details .item-info h4 {
    margin: 0 0 4px 0;
    font-size: 1rem;
    font-weight: 200;
    color: #ffffff;
    line-height: 1.3;
}

.cart-item-details .item-info p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 6px 0;
    line-height: 1.4;
    font-weight: 200;
}

.cart-item-details .item-price {
    color: var(--accent-blue);
    font-weight: 200;
    font-size: 0.95rem;
    margin: 0;
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 5px 15px;
    border-radius: 50px;
}

.qty-controls button {
    border: none;
    background: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--accent-blue);
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 50%;
}

.qty-controls button:hover {
    background: var(--accent-blue);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 188, 212, 0.3);
    transform: scale(1.1);
}

/* Product Page Specific Buttons */
.qty-btn { 
    border: none; 
    background: none; 
    width: 35px; 
    cursor: pointer; 
    font-size: 1.2rem;
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 50%;
}

.qty-btn:hover {
    background: var(--accent-blue);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 188, 212, 0.3);
    transform: scale(1.1);
}

.btn-wishlist {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #eee;
    background: white;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px rgba(255, 71, 87, 0.3);
}

.btn-wishlist:hover {
    background: #ff4757;
    border-color: #ff4757;
    color: white;
    box-shadow: 0 0 20px rgba(255, 71, 87, 0.8), 0 6px 20px rgba(255, 71, 87, 0.5), inset 0 0 10px rgba(255, 71, 87, 0.2);
    transform: scale(1.1);
    animation: glowRed 1.5s ease-in-out infinite;
}

@keyframes glowRed {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 71, 87, 0.8), 0 6px 20px rgba(255, 71, 87, 0.5), inset 0 0 10px rgba(255, 71, 87, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 71, 87, 1), 0 8px 25px rgba(255, 71, 87, 0.7), inset 0 0 15px rgba(255, 71, 87, 0.3);
    }
}

.summary-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 30px;
    border-radius: 25px;
    position: sticky;
    top: 100px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.4);
}

.summary-card h3 {
    color: var(--text-main);
    font-weight: 100;
}

.summary-card .summary-row span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 100;
}

.summary-card .summary-row.total {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.05rem;
    font-weight: 100;
}

.summary-card .summary-row.total span,
.summary-card #subtotal-price,
.summary-card #delivery-cost,
.summary-card #total-price {
    color: rgba(255, 255, 255, 0.92) !important;
    font-weight: 100 !important;
}

/* Secure checkout small rows with icons */
.secure-checkout {
    font-family: inherit;
}
.secure-checkout .secure-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 6px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.secure-checkout .secure-item i {
    color: #ffffff !important;
    font-size: 1.15rem;
    min-width: 22px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
}

.btn-checkout {
    width: 100%;
    padding: 12px 30px;
    border: none;
    background: linear-gradient(
        to right,
        rgba(0, 187, 212, 0.11),
        rgba(0, 200, 180, 0.075)
    );
    border: 1px solid rgba(0,188,212,0.6);
    color: white;
    border-radius: 50px;
    font-size: 0.95rem;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0,188,212,0.4), 0 0 30px rgba(0,188,212,0.2);
    animation: glowCheckout 2s ease-in-out infinite;
}

@keyframes glowCheckout {
    0%, 100% {
        box-shadow: 0 0 15px rgba(0,188,212,0.4), 0 0 30px rgba(0,188,212,0.2);
    }
    50% {
        box-shadow: 0 0 25px rgba(0,188,212,0.6), 0 0 45px rgba(0,188,212,0.3);
    }
}

/* Liquid shine effect for checkout button */
.btn-checkout::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.35),
        transparent
    );
    transition: all 0.6s ease;
}

/* Shine animation on hover */
.btn-checkout:hover::before {
    left: 100%;
}

.btn-checkout:hover {
    transform: translateY(-3px) scale(1.02);
    backdrop-filter: blur(18px);
    box-shadow:
        0 0 30px rgba(0,188,212,0.8),
        0 10px 35px rgba(0,188,212,0.4),
        inset 0 0 12px rgba(0,188,212,0.2);
    background: linear-gradient(
        to right,
        rgba(0,168,196,0.35),
        rgba(0,194,174,0.35)
    );
    animation: glowCheckoutHover 1.5s ease-in-out infinite;
}

@keyframes glowCheckoutHover {
    0%, 100% {
        box-shadow:
            0 0 30px rgba(0,188,212,0.8),
            0 10px 35px rgba(0,188,212,0.4),
            inset 0 0 12px rgba(0,188,212,0.2);
    }
    50% {
        box-shadow:
            0 0 40px rgba(0,188,212,1),
            0 15px 50px rgba(0,188,212,0.6),
            inset 0 0 15px rgba(0,188,212,0.3);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .cart-layout { grid-template-columns: 1fr; }
    .cart-item-card { flex-wrap: wrap; width: 100%; }
}


/* --- Advanced Responsiveness --- */

/* For TVs and 4K Monitors */
@media (min-width: 2000px) {
    .header-container, .promo-container, .product-grid {
        max-width: 2200px;
    }
    h1 { font-size: 5rem; }
    .product-grid { grid-template-columns: repeat(4, 1fr); }
}

/* For Standard Laptops/Desktops */
@media (max-width: 1440px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
}

/* For Tablets */
@media (max-width: 1024px) {
    .promo-container { grid-template-columns: repeat(2, 1fr); }
    .promo-box { height: 300px; }
    h1 { font-size: 3rem; }
}

/* For Mobile Phones */
@media (max-width: 768px) {
    .promo-container { grid-template-columns: 1fr; }
    .promo-box { height: 350px; padding: 20px; }
    .hero { padding-top: 120px; }
    
    /* 2-column grid on mobile with scaled down products */
    .product-grid { 
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 5px;
    }
    
    .product-card {
        border-radius: 15px;
    }
    
    .card-head { 
        height: 150px;
    }
    
    .badge-sale {
        top: 8px;
        left: 8px;
        padding: 3px 8px;
        font-size: 0.65rem;
    }
    
    .floating-actions {
        top: 8px;
        right: 8px;
        gap: 6px;
    }
    
    .action-btn {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }
    
    .card-body { 
        padding: 12px;
    }
    
    .brand-tag { 
        font-size: 0.6rem;
    }
    
    .card-body h3 { 
        margin: 6px 0;
        font-size: 0.9rem;
    }
    
    .card-body p { 
        font-size: 0.7rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    .price-box { 
        margin-bottom: 10px;
    }
    
    .current-price { 
        font-size: 1rem;
    }
    
    .old-price { 
        font-size: 0.75rem;
    }
    
    .btn-view-details {
        padding: 6px 14px;
        font-size: 0.7rem;
    }
    
    /* Mobile responsive store layout */
    .store-layout {
        flex-direction: column;
        gap: 20px;
        padding: 20px 5%;
    }
    
    .sidebar {
        width: 100% !important;
        margin-bottom: 20px;
    }
    
    .products-area {
        width: 100%;
    }
    
    /* Fix header on mobile */
    .header-container {
        width: 95% !important;
        padding: 10px 15px !important;
    }
    
    /* Fix search and sort bar on mobile */
    .search-sort-bar {
        flex-direction: column;
        gap: 12px;
    }
    
    .search-box {
        width: 100%;
        max-width: 100%;
    }
    
    .custom-dropdown {
        width: 100%;
    }
    
    .sort-dropdown {
        width: 100%;
    }
}

/*=============================================================================*/
/*                           SCROLL ANIMATIONS                                */
/*=============================================================================*/

/* Animation Keyframes */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Initial states for animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive storefront refinement */
@media (max-width: 1180px) {
    .store-container {
        width: 100%;
        max-width: none;
        padding: 108px 16px 48px;
        margin: 0;
    }

    .store-layout {
        flex-direction: column;
        gap: 18px;
        padding: 0;
    }

    .sidebar {
        position: sticky;
        top: 88px;
        z-index: 50;
        width: 100% !important;
        height: auto;
        max-height: 34vh;
        padding: 16px;
        border-radius: 24px;
        gap: 12px;
        overflow-y: auto;
    }

    .sidebar-header {
        padding-bottom: 10px;
    }

    .sidebar-header h3 {
        font-size: 0.9rem;
    }

    .filter-group {
        gap: 10px;
    }

    .filter-label {
        margin-bottom: 8px;
        font-size: 0.75rem;
    }

    .category-main-btn,
    .subcategory-item {
        min-height: 40px;
    }

    .main-content,
    .products-area {
        width: 100%;
    }

    .store-header {
        margin-bottom: 18px;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
        max-width: none;
        margin: 0 0 44px;
        gap: 18px;
        justify-content: stretch;
    }
}

@media (max-width: 768px) {
    html {
        background: #05020a url('../Images/15.png') no-repeat center center fixed;
        background-size: cover;
    }

    body {
        background: transparent;
        isolation: isolate;
    }

    body::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: -1;
        pointer-events: none;
        background: url('../Images/15.png') no-repeat center center;
        background-size: cover;
    }

    .main-header {
        top: 10px;
    }

    .header-container {
        min-height: 56px;
        border-radius: 28px;
    }

    .logo-icon {
        width: 48px;
        height: 48px;
        margin: -6px 0;
    }

    .auth-wrapper,
    .cart-wrapper,
    .wishlist-wrapper {
        width: 36px;
        height: 36px;
    }

    .auth-icon,
    .cart-icon,
    .wishlist-icon {
        font-size: 1rem;
    }

    .cart-badge,
    .wishlist-badge {
        width: 15px;
        height: 15px;
        font-size: 0.58rem;
        border-width: 1px;
    }

    .hamburger span {
        width: 20px;
    }

    .nav-links {
        top: 62px;
        padding: 10px;
        border-radius: 18px;
        background: rgba(20, 20, 20, 0.88);
        border: 1px solid rgba(255, 255, 255, 0.18);
        z-index: 1200;
        box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
    }

    .nav-links a {
        margin: 2px 0;
        padding: 8px;
        font-size: 0.78rem;
    }

    .hero {
        min-height: auto;
        padding: 96px 14px 36px;
        gap: 22px;
    }

    h1 {
        font-size: clamp(1.85rem, 10vw, 2.7rem);
        line-height: 1.05;
    }

    .badge-pill {
        padding: 4px 12px;
        font-size: 0.72rem;
    }

    .hero-btns {
        gap: 8px;
        margin: 20px 0;
    }

    .btn,
    .btn-primary {
        padding: 8px 16px;
        font-size: 0.76rem;
    }

    .hero-stats {
        gap: 10px;
        margin-top: 26px;
    }

    .stat-item {
        font-size: 1rem;
    }

    .stat-item span {
        font-size: 0.68rem;
    }

    .slideshow-container,
    .slide img {
        border-radius: 18px;
    }

    .slide img {
        height: 220px;
    }

    .slide-overlay {
        left: 16px;
    }

    .slide-brand {
        font-size: 0.62rem;
    }

    .slide-tagline {
        font-size: 1.15rem;
    }

    .slide-price {
        padding: 4px 10px;
        font-size: 0.7rem;
    }

    .dot-container {
        right: 16px;
        bottom: 14px;
    }

    .category-showcase,
    .featured-products,
    .features,
    .promo-grid-section {
        padding: 42px 14px;
    }

    .section-title {
        margin-bottom: 24px;
    }

    .section-title h2 {
        font-size: 1.45rem;
    }

    .category-grid,
    .feature-grid,
    .brands-grid {
        gap: 14px;
    }

    .category-card {
        height: 260px;
        border-radius: 20px;
    }

    .category-content {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 14px;
        border-radius: 18px;
    }

    .category-content h3 {
        font-size: 1rem;
    }

    .category-content p,
    .feature-card p {
        font-size: 0.72rem;
    }

    .promo-box {
        min-height: 210px;
        height: auto;
        border-radius: 20px;
    }

    .feature-card {
        padding: 20px;
        border-radius: 18px;
    }

    .store-container {
        padding: 92px 10px 34px;
    }

    .store-layout {
        gap: 12px;
    }

    .sidebar {
        top: 72px;
        max-height: 31vh;
        padding: 12px;
        border-radius: 18px;
        margin-bottom: 0;
    }

    .sidebar-header h3 {
        font-size: 0.78rem;
        letter-spacing: 0.4px;
    }

    .clear-filters-btn {
        margin-bottom: 0;
        padding: 4px 7px;
        font-size: 0.95rem;
    }

    .filter-groups,
    .filter-group,
    .category-section {
        gap: 8px;
    }

    .category-main-btn {
        min-height: 34px;
        padding: 7px 10px;
        border-radius: 10px;
        font-size: 0.76rem;
        gap: 7px;
        margin-bottom: 4px;
    }

    .category-main-btn i:first-child,
    .category-main-btn i:last-child {
        font-size: 0.82rem;
    }

    .category-submenu {
        padding-left: 8px;
        margin: 0 0 4px 3px;
    }

    .subcategory-item {
        min-height: 30px;
        padding: 6px 8px;
        border-radius: 8px;
        font-size: 0.72rem;
        gap: 6px;
    }

    .search-sort-bar {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px;
        align-items: center;
    }

    .search-box {
        height: 38px;
        padding: 0 12px;
        border-radius: 18px;
    }

    .search-box input {
        margin-left: 6px;
        font-size: 0.78rem;
    }

    .custom-dropdown {
        width: auto;
        min-width: 102px;
    }

    .sort-dropdown {
        width: 100%;
        height: 38px;
        padding: 0 12px;
        border-radius: 18px;
        font-size: 0.72rem;
    }

    .dropdown-menu {
        min-width: 150px;
        font-size: 0.7rem;
    }

    .dropdown-option {
        padding: 9px 12px;
    }

    .results-count {
        margin: 0 0 10px;
        font-size: 0.72rem;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 0;
        margin: 0 0 34px;
    }

    .product-card {
        border-radius: 16px;
    }

    .card-head {
        height: 118px;
        padding: 12px;
        background: rgba(255, 255, 255, 0.07);
        backdrop-filter: blur(14px) saturate(150%);
        -webkit-backdrop-filter: blur(14px) saturate(150%);
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .card-head img {
        max-width: 82%;
        max-height: 84px;
    }

    .floating-actions {
        top: 7px;
        right: 7px;
        gap: 5px;
    }

    .action-btn {
        width: 26px;
        height: 26px;
    }

    .badge-sale {
        top: 7px;
        left: 7px;
        padding: 2px 7px;
        font-size: 0.58rem;
    }

    .card-body {
        padding: 10px 9px 12px;
    }

    .brand-tag {
        font-size: 0.56rem;
        letter-spacing: 0.4px;
    }

    .card-body h3 {
        min-height: 2.4em;
        margin: 5px 0;
        font-size: 0.76rem;
        line-height: 1.2;
    }

    .card-body p {
        min-height: 0;
        margin-bottom: 8px;
        font-size: 0.64rem;
        line-height: 1.25;
        -webkit-line-clamp: 2;
    }

    .price-box {
        margin-bottom: 8px;
    }

    .current-price {
        font-size: 0.88rem;
    }

    .old-price {
        display: block;
        margin-left: 0;
        font-size: 0.62rem;
    }

    .btn-view-details {
        width: 100%;
        padding: 6px 8px;
        font-size: 0.65rem;
        box-shadow: none;
        animation: none;
    }

}

@media (max-width: 420px) {
    .header-container {
        width: calc(100% - 16px) !important;
        padding: 6px 9px !important;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .header-actions {
        gap: 6px;
    }

    .auth-wrapper,
    .cart-wrapper,
    .wishlist-wrapper {
        width: 32px;
        height: 32px;
    }

    .hero {
        padding-inline: 10px;
    }

    .slide img {
        height: 180px;
    }

    .store-container {
        padding-inline: 7px;
    }

    .sidebar {
        top: 66px;
        max-height: 28vh;
        padding: 10px;
    }

    .search-sort-bar {
        grid-template-columns: 1fr;
    }

    .custom-dropdown,
    .sort-dropdown {
        width: 100%;
    }

    .product-grid {
        gap: 8px;
    }

    .card-head {
        height: 96px;
        padding: 9px;
        background: rgba(255, 255, 255, 0.055);
    }

    .card-head img {
        max-height: 68px;
    }

    .card-body {
        padding: 8px;
    }

    .card-body h3 {
        font-size: 0.68rem;
    }

    .card-body p {
        display: none;
    }

    .current-price {
        font-size: 0.8rem;
    }
}

@media (max-width: 340px) {
    .wishlist-wrapper {
        display: none;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .btn-view-details {
        font-size: 0.6rem;
    }
}

@media (max-width: 768px) {
    .featured-product-carousel {
        --featured-card-width: calc((100vw - 52px) / 3);
        --featured-gap: 10px;
        width: calc((var(--featured-card-width) * 3) + (var(--featured-gap) * 2));
        max-width: 100%;
        padding: 0;
        margin: 0 auto 16px;
    }

    .featured-carousel-card {
        border-radius: 8px;
    }

    .featured-carousel-card .card-head {
        height: 110px;
        padding: 10px;
    }

    .featured-carousel-card .card-head img {
        max-height: 72px;
    }

    .featured-carousel-card .card-body {
        padding: 9px 7px 10px;
    }

    .featured-carousel-card .product-title {
        font-size: 0.66rem;
        min-height: 2.4em;
    }

    .featured-carousel-card .product-summary {
        display: none;
    }

    .featured-carousel-card .current-price {
        font-size: 0.72rem;
    }

    .featured-carousel-card .btn-view-details {
        width: 100%;
        padding: 6px 4px;
        font-size: 0.58rem;
    }
}

/* Specific animation classes */
.slide-in-left {
    animation: slideInFromLeft 0.8s ease-out forwards;
}

.slide-in-right {
    animation: slideInFromRight 0.8s ease-out forwards;
}

.slide-in-bottom {
    animation: slideInFromBottom 0.8s ease-out forwards;
}

.slide-in-top {
    animation: slideInFromTop 0.8s ease-out forwards;
}

.fade-in-scale {
    animation: fadeInScale 0.8s ease-out forwards;
}

.bounce-in {
    animation: bounceIn 0.8s ease-out forwards;
}

/* Hero auto-animation classes */
.hero-animate-1 {
    animation: slideInFromLeft 1s ease-out forwards;
}

.hero-animate-2 {
    animation: slideInFromRight 1s ease-out 0.2s forwards;
}

.hero-animate-3 {
    animation: fadeInScale 1s ease-out 0.4s forwards;
}

.hero-animate-4 {
    animation: slideInFromBottom 1s ease-out 0.6s forwards;
}

.hero-animate-5 {
    animation: bounceIn 1s ease-out 0.8s forwards;
}

.hero-content h1
{
    opacity: 1;
    font-weight: 100 !important;
    font-size: 40px;
}

.hero-content .badge-pill,

.hero-content p,
.hero-btns,
.hero-stats {
    opacity: 1;
    font-weight: 200 !important;
}

/* Modal / Lightbox for product details */
.modal-overlay{ position:fixed; inset:0; background:rgba(0,0,0,0.45); display:none; align-items:center; justify-content:center; z-index:2000; }
.modal-overlay.open{ display:flex; }
.product-modal{ background:var(--white); width:92%; max-width:980px; border-radius:20px; box-shadow:0 30px 80px rgba(0,0,0,0.35); overflow:hidden; position:relative; }
.modal-close{ position:absolute; right:18px; top:14px; background:rgba(255,255,255,0.9); border:none; font-size:26px; line-height:1; cursor:pointer; color:var(--text-main); padding:6px 8px; border-radius:10px; box-shadow:0 6px 18px rgba(0,0,0,0.06); }
.modal-close:focus{ outline: none; box-shadow:0 0 0 4px rgba(0,210,190,0.12); }
.modal-body{ display:flex; gap:18px; padding:22px; }
.modal-left{ flex:1 1 50%; display:flex; flex-direction:column; gap:12px; }
.modal-gallery{ display:flex; flex-direction:column; gap:12px; }
.modal-gallery .main{ width:100%; height:320px; object-fit:contain; background:#fafafa; border-radius:8px; }
.modal-gallery .thumbs{ display:flex; gap:8px; margin-top:8px; }
.modal-gallery .thumbs img{ width:64px; height:64px; object-fit:cover; border-radius:6px; cursor:pointer; }
.modal-right{ flex:0 0 380px; max-width:380px; }
.modal-right h3{ margin:0 0 8px 0; font-size:1.1rem; }
.modal-specs{ display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.modal-specs .spec{ background:#fbfbfb; padding:10px; border-radius:14px; font-size:0.95rem; }
.modal-description{ font-size:0.95rem; line-height:1.4; }

@media (max-width:900px){ .modal-body{ flex-direction:column; } .modal-right{ max-width:100%; width:100%; } .modal-gallery .main{ height:260px; } }

/*=============================================================================*/
/*                    CATEGORY NAVIGATION STYLING                             */
/*=============================================================================*/

/* Sidebar Filter Context */
.sidebar .filter-label {
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 15px;
    font-weight: 200;
    letter-spacing: 0.5px;
}

.category-pills {
    display: block;
    text-decoration: none;
    margin-bottom: 10px;
}

.sidebar .pill {
    display: block;
    width: 100%;
    padding: 10px 14px;
    text-align: center;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-main);
    font-size: 13px;
    font-weight: 200;
    margin-bottom: 10px;
}

.sidebar .pill:hover {
    background: linear-gradient(
        135deg,
        rgba(0, 188, 212, 0.3),
        rgba(105, 215, 255, 0.25)
    );
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 12px rgba(0, 188, 212, 0.2);
    transform: translateY(-1px);
}

.sidebar .pill.active {
    background: linear-gradient(
        135deg,
        rgba(0, 188, 212, 0.5),
        rgba(105, 215, 255, 0.4)
    );
    color: white;
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 6px 20px rgba(0, 188, 212, 0.3);
}

.category-nav-section {
    position: relative;
    z-index: 950;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.12),
        rgba(220, 240, 255, 0.08),
        rgba(255, 230, 245, 0.1)
    );
    backdrop-filter: blur(24px) saturate(170%) brightness(1.05);
    -webkit-backdrop-filter: blur(24px) saturate(170%) brightness(1.05);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding: 16px 5%;
    margin-top: 120px;
    margin-bottom: 0;
}

.category-nav-section::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(
            circle at top left,
            rgba(255, 255, 255, 0.25),
            transparent 55%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(100, 200, 255, 0.15),
            transparent 60%
        );
    opacity: 0.6;
    pointer-events: none;
    mix-blend-mode: screen;
    z-index: -1;
}

.category-nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.category-nav-item {
    position: relative;
}

.category-nav-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.05)
    );
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    color: var(--text-main);
    cursor: pointer;
    font-size: 14px;
    font-weight: 200;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.35);
    text-decoration: none;
    white-space: nowrap;
}

.category-nav-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(
            circle at top left,
            rgba(255, 255, 255, 0.35),
            transparent 55%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(100, 200, 255, 0.2),
            transparent 60%
        );
    opacity: 0.7;
    pointer-events: none;
    mix-blend-mode: screen;
}

.category-nav-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.18),
        rgba(255, 255, 255, 0.12)
    );
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow:
        0 12px 32px rgba(0, 188, 212, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.4);
}

.category-nav-btn.active {
    background: linear-gradient(
        135deg,
        rgba(0, 188, 212, 0.35),
        rgba(105, 215, 255, 0.25)
    );
    border-color: rgba(0, 188, 212, 0.6);
    color: white;
    font-weight: 200;
    box-shadow:
        0 12px 32px rgba(0, 188, 212, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.4);
}

.category-nav-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    color: rgba(255, 255, 255, 0.6);
}

.category-nav-btn.disabled:hover {
    transform: none;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.05)
    );
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.35);
}

.category-nav-btn.coming-soon::after {
    content: " (coming soon)";
    font-size: 12px;
    opacity: 0.8;
}

/* Dropdown Icon */
.dropdown-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
    display: inline-block;
    margin-left: 0;
}

.category-nav-btn:hover .dropdown-icon {
    transform: rotate(180deg);
}

.category-nav-btn.active .dropdown-icon {
    transform: rotate(180deg);
}

/* Laptops Dropdown Menu */
.laptops-dropdown {
    position: relative;
}

#laptopsMenu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.12),
        rgba(220, 240, 255, 0.08),
        rgba(255, 230, 245, 0.1)
    );
    backdrop-filter: blur(24px) saturate(170%) brightness(1.05);
    -webkit-backdrop-filter: blur(24px) saturate(170%) brightness(1.05);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.35);
    display: none;
    flex-direction: column;
    min-width: 280px;
    z-index: 1010;
    padding: 12px;
    gap: 6px;
}

#laptopsMenu::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(
            circle at top left,
            rgba(255, 255, 255, 0.3),
            transparent 55%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(100, 200, 255, 0.18),
            transparent 60%
        );
    opacity: 0.6;
    pointer-events: none;
    mix-blend-mode: screen;
}

#laptopsMenu.show {
    display: flex;
    animation: slideInFromTop 0.3s ease-out;
}

.dropdown-item {
    padding: 12px 16px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    cursor: pointer;
    font-size: 13px;
    font-weight: 200;
    transition: all 0.2s ease;
    text-decoration: none;
    display: block;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.dropdown-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at top left,
            rgba(255, 255, 255, 0.3),
            transparent 55%
        );
    opacity: 0.5;
    pointer-events: none;
    mix-blend-mode: screen;
}

.dropdown-item:hover {
    background: linear-gradient(
        135deg,
        rgba(255, 102, 0, 0.2),
        rgba(255, 140, 0, 0.15)
    );
    border-color: rgba(255, 143, 0, 0.4);
    transform: translateX(4px);
    box-shadow: 0 6px 16px rgba(255, 102, 0, 0.2);
}

.dropdown-item.active {
    background: linear-gradient(
        135deg,
        rgba(255, 102, 0, 0.35),
        rgba(255, 140, 0, 0.25)
    );
    border-color: rgba(255, 143, 0, 0.6);
    color: white;
    font-weight: 200;
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.3);
}

/* Store Page Filter Dropdown - Laptops Filter */
.laptops-filter-dropdown {
    position: relative;
    margin-bottom: 0;
}

.sidebar .laptops-filter-dropdown {
    margin-bottom: 0;
}

#laptopsFilterBtn {
    width: 100%;
    padding: 10px 14px;
    margin: 0 0 8px 0;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-main);
    cursor: pointer;
    font-size: 13px;
    font-weight: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
}

#laptopsFilterBtn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.45);
}

#laptopsFilterBtn.active {
    background: linear-gradient(
        135deg,
        rgba(255, 102, 0, 0.2),
        rgba(255, 140, 0, 0.15)
    );
    border-color: rgba(255, 143, 0, 0.4);
}

#laptopsFilterBtn i {
    transition: transform 0.3s ease;
    font-size: 12px;
    margin-left: 4px;
}

#laptopsFilterBtn.active i {
    transform: rotate(180deg);
}

/* Brand Dropdown Menu - Expands Downward */
#laptopsFilterMenu {
    position: relative;
    margin-top: 0;
    background: transparent;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    display: none;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
    padding: 0;
    z-index: 100;
    max-height: none;
    overflow: visible;
    box-shadow: none;
    align-items: center;
    justify-content: flex-start;
}

#laptopsFilterMenu.show {
    display: flex;
    margin-top: 6px;
    margin-bottom: 12px;
    animation: slideDown 0.3s ease-out;
}

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

#laptopsFilterMenu::before {
    display: none;
}

/* Brand dropdown item styling */
#laptopsFilterMenu .dropdown-item {
    padding: 7px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--text-main);
    cursor: pointer;
    font-size: 11px;
    font-weight: 200;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    font-family: inherit;
    flex-shrink: 0;
    min-width: fit-content;
    width: auto;
    max-width: 90px;
}

#laptopsFilterMenu .dropdown-item::-moz-focus-inner {
    border: 0;
}

#laptopsFilterMenu .dropdown-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at top left,
            rgba(255, 255, 255, 0.4),
            transparent 55%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(100, 200, 255, 0.1),
            transparent 60%
        );
    opacity: 0.6;
    pointer-events: none;
    mix-blend-mode: screen;
    z-index: -1;
}

#laptopsFilterMenu .dropdown-item:hover {
    background: linear-gradient(
        135deg,
        rgba(255, 140, 0, 0.25),
        rgba(255, 102, 0, 0.15)
    );
    border-color: rgba(255, 143, 0, 0.5);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 102, 0, 0.25);
}

#laptopsFilterMenu .dropdown-item.active {
    background: linear-gradient(
        135deg,
        rgba(255, 143, 0, 0.5),
        rgba(255, 102, 0, 0.35)
    );
    border-color: rgba(255, 143, 0, 0.8);
    color: white;
    font-weight: 200;
    box-shadow: 0 6px 24px rgba(255, 102, 0, 0.4);
    transform: translateY(-2px);
}

#laptopsFilterMenu .dropdown-item:active {
    transform: translateY(0);
}

/* Accessories Button */
#accessoriesBtn {
    width: 100%;
    padding: 10px 14px;
    margin: 0 0 8px 0;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-main);
    cursor: pointer;
    font-size: 13px;
    font-weight: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    text-decoration: none;
}

#accessoriesBtn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.45);
}

#accessoriesBtn.active {
    background: linear-gradient(
        135deg,
        rgba(255, 102, 0, 0.2),
        rgba(255, 140, 0, 0.15)
    );
    border-color: rgba(255, 143, 0, 0.4);
    color: white;
}

/* Category Checkbox in Sidebar */
.category-filter-group {
    margin-bottom: 20px;
}

.category-filter-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 4px;
    cursor: pointer;
    color: var(--text-main);
    font-size: 13px;
    font-weight: 200;
    transition: all 0.2s ease;
}

.category-filter-group input[type="checkbox"] {
    cursor: pointer;
    width: 16px;
    height: 16px;
    accent-color: var(--accent-blue);
}

.category-filter-group label:hover {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding-left: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
    .category-nav-section {
        padding: 12px 5%;
        margin-top: 110px;
    }
    
    .category-nav-container {
        gap: 12px;
    }
    
    .category-nav-btn {
        padding: 9px 18px;
        font-size: 13px;
    }
    
    #laptopsMenu {
        min-width: 240px;
    }
}

@media (max-width: 768px) {
    .category-nav-section {
        padding: 10px 5%;
        margin-top: 110px;
    }
    
    .category-nav-container {
        gap: 8px;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
    }
    
    .category-nav-item {
        flex-shrink: 0;
    }
    
    .category-nav-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .dropdown-icon {
        display: none;
    }
    
    #laptopsMenu {
        min-width: 220px;
        left: auto;
        right: 0;
        top: calc(100% + 6px);
    }
    
    .dropdown-item {
        padding: 10px 12px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .category-nav-section {
        padding: 8px 3%;
        margin-top: 100px;
    }
    
    .category-nav-container {
        gap: 6px;
    }
    
    .category-nav-btn {
        padding: 7px 14px;
        font-size: 11px;
    }
    
    #laptopsMenu {
        min-width: 200px;
        top: calc(100% + 4px);
        margin-top: 0;
    }
    
    .dropdown-item {
        padding: 8px 10px;
        font-size: 11px;
    }
}

/* Smart recommendations */
.recommendation-slot {
    width: 100%;
}

.recommendation-section {
    margin-top: 22px;
    color: var(--text-main);
}

.recommendation-slot--wide,
.recommendation-slot--cart {
    max-width: 1200px;
    margin: 34px auto 0;
}

.recommendation-slot--checkout {
    margin-top: 18px;
}

.recommendation-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.recommendation-heading h3 {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.2;
    color: #ffffff;
}

.recommendation-heading small,
.recommendation-kicker {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.68rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.recommendation-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.recommendation-slot--cart .recommendation-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.recommendation-card {
    min-width: 0;
    display: grid;
    grid-template-rows: 132px 1fr;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2);
}

.recommendation-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 16px;
    background: rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.recommendation-image img {
    width: 100%;
    height: 100%;
    max-height: 94px;
    object-fit: contain;
    display: block;
}

.recommendation-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 13px;
}

.recommendation-copy span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.64rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.recommendation-copy a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.84rem;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recommendation-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.72rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recommendation-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
}

.recommendation-bottom strong {
    color: #ffffff !important;
    font-size: 0.88rem;
    font-weight: 100;
    white-space: nowrap;
}

.recommendation-add {
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, 0.56);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    cursor: pointer;
    font-size: 0.72rem;
    white-space: nowrap;
}

.recommendation-add:hover {
    border-color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.18);
}

.recommendation-add:disabled,
.recommendation-card--added .recommendation-add {
    opacity: 0.65;
    cursor: default;
}

.recommendation-section--compact .recommendation-grid {
    grid-template-columns: 1fr;
    gap: 10px;
}

.recommendation-card--compact {
    grid-template-columns: 78px minmax(0, 1fr);
    grid-template-rows: auto;
    border-radius: 16px;
}

.recommendation-card--compact .recommendation-image {
    min-height: 100%;
    padding: 10px;
    border-bottom: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.recommendation-card--compact .recommendation-image img {
    max-height: 58px;
}

.recommendation-card--compact .recommendation-copy {
    padding: 10px;
}

.recommendation-card--compact .recommendation-copy p {
    -webkit-line-clamp: 1;
}

.recommendation-card--compact .recommendation-bottom {
    align-items: center;
}

.recommendation-card--skeleton {
    min-height: 220px;
    pointer-events: none;
}

.recommendation-card--skeleton .recommendation-image,
.recommendation-card--skeleton span,
.recommendation-card--skeleton strong,
.recommendation-card--skeleton p {
    background: rgba(255, 255, 255, 0.12);
}

.recommendation-card--skeleton span,
.recommendation-card--skeleton strong,
.recommendation-card--skeleton p {
    display: block;
    height: 10px;
    border-radius: 999px;
}

.recommendation-card--skeleton strong {
    width: 75%;
    height: 14px;
}

.recommendation-card--skeleton p {
    width: 90%;
}

@media (max-width: 1024px) {
    .recommendation-grid,
    .recommendation-slot--cart .recommendation-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .recommendation-slot--wide,
    .recommendation-slot--cart {
        margin-top: 22px;
    }

    .recommendation-heading {
        margin-bottom: 10px;
    }

    .recommendation-heading h3 {
        font-size: 0.92rem;
    }

    .recommendation-section--standard .recommendation-grid {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .recommendation-section--standard .recommendation-grid::-webkit-scrollbar {
        display: none;
    }

    .recommendation-section--standard .recommendation-card {
        flex: 0 0 min(78vw, 260px);
        scroll-snap-align: start;
        grid-template-rows: 104px 1fr;
    }

    .recommendation-image {
        padding: 12px;
    }

    .recommendation-copy {
        padding: 11px;
    }

    .recommendation-add {
        min-height: 36px;
        padding-inline: 10px;
    }

    .recommendation-card--compact {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .recommendation-card--compact .recommendation-image img {
        max-height: 48px;
    }

    .recommendation-card--compact .recommendation-copy a {
        font-size: 0.76rem;
    }

    .recommendation-card--compact .recommendation-copy p {
        font-size: 0.66rem;
    }

    .recommendation-card--compact .recommendation-bottom {
        gap: 6px;
    }

    .recommendation-card--compact .recommendation-bottom strong {
        font-size: 0.76rem;
    }

    .recommendation-card--compact .recommendation-add {
        min-height: 30px;
        padding: 5px 9px;
        font-size: 0.66rem;
    }
}

@media (max-width: 360px) {
    .recommendation-section--standard .recommendation-card {
        flex-basis: 84vw;
    }

    .recommendation-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .recommendation-add {
        width: 100%;
    }
}
/* ===== KIT BUILDER ===== */
.kit-page,
.kit-page * {
    font-weight: 200;
}

.kit-page {
    min-height: 100vh;
    padding: 120px 20px 70px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.42)),
        url('../Images/15.png') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
}

.kit-shell {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.kit-header {
    max-width: 760px;
    margin-bottom: 26px;
}

.kit-back-link,
.kit-secondary-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.84);
    text-decoration: none;
    font-size: 0.9rem;
}

.kit-back-link {
    width: fit-content;
    margin-bottom: 12px;
    padding: 9px 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0);
    color: #fff;
    box-shadow:
        0 0 12px rgba(255, 255, 255, 0.45),
        0 0 24px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.25s ease;
}

.kit-back-link:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.5);
}

.kit-eyebrow,
.kit-section-label {
    display: block;
    margin-bottom: 8px;
    color: #00e6d3;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.kit-header h1 {
    margin: 8px 0 10px;
    color: #fff;
    font-size: clamp(1.75rem, 3vw, 2.45rem);
    line-height: 1.1;
}

.kit-header p {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 1rem;
    line-height: 1.7;
}

.kit-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 22px;
    align-items: start;
}

.kit-pack-selector,
.kit-readiness-panel {
    margin-bottom: 22px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    box-shadow: 0 18px 56px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.kit-pack-selector-head,
.kit-readiness-panel {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.kit-pack-selector-head {
    margin-bottom: 14px;
}

.kit-pack-selector h2,
.kit-readiness-panel h2 {
    margin: 0;
    color: #fff;
    font-size: 1.18rem;
    line-height: 1.2;
}

.kit-pack-count {
    flex-shrink: 0;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.78rem;
}

.kit-pack-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.kit-pack-card {
    min-width: 0;
    min-height: 116px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: 1fr auto;
    gap: 10px;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    text-align: left;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.kit-pack-card.active {
    border-color: rgba(0, 230, 211, 0.85);
    background: rgba(0, 230, 211, 0.09);
    box-shadow: 0 14px 30px rgba(0, 230, 211, 0.12);
}

.kit-pack-card:not(.active):hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.42);
}

.kit-pack-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #00e6d3;
    font-size: 1.25rem;
}

.kit-pack-copy {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.kit-pack-copy strong {
    font-size: 0.9rem;
    font-weight: 100;
    line-height: 1.2;
}

.kit-pack-copy small,
.kit-pack-meta {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.72rem;
    line-height: 1.35;
}

.kit-pack-meta {
    grid-column: 1 / -1;
    align-self: end;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.kit-readiness-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    min-width: min(100%, 620px);
}

.kit-readiness-card {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
}

.kit-readiness-card > span {
    display: grid;
    place-items: center;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #00e6d3;
}

.kit-readiness-card.is-missing > span {
    color: rgba(255, 255, 255, 0.5);
}

.kit-readiness-card strong,
.kit-readiness-card small {
    display: block;
    min-width: 0;
}

.kit-readiness-card strong {
    color: #fff;
    font-size: 0.78rem;
    font-weight: 100;
}

.kit-readiness-card small {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.68rem;
    line-height: 1.25;
}

.kit-builder-panel,
.kit-summary-panel {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.kit-builder-panel {
    padding: 22px;
}

.kit-summary-panel {
    position: sticky;
    top: 100px;
    padding: 20px;
}

.kit-panel-head,
.kit-summary-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.kit-panel-head h2,
.kit-summary-top h2 {
    margin: 0;
    color: #fff;
    font-size: 1.25rem;
}

.kit-seat-control,
.kit-model-row {
    display: grid;
    gap: 8px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.85rem;
}

.kit-seat-control small {
    max-width: 220px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.72rem;
    line-height: 1.35;
}

.kit-seat-control input,
.kit-model-row select {
    width: 100%;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0 12px;
    outline: none;
    text-overflow: ellipsis;
}

.kit-model-row select option {
    color: #111;
}

.kit-seat-control input {
    width: 96px;
}

.kit-brand-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(80px, 1fr));
    gap: 10px;
    margin-bottom: 18px;
}

.kit-brand-btn {
    display: grid;
    place-items: center;
    gap: 7px;
    min-height: 82px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.kit-brand-btn img {
    max-width: 54px;
    max-height: 32px;
    object-fit: contain;
}

.kit-brand-btn span {
    font-size: 0.78rem;
}

.kit-brand-btn.active {
    border-color: rgba(0, 230, 211, 0.9);
    box-shadow: 0 10px 28px rgba(0, 230, 211, 0.16);
}

.kit-brand-btn:not(:disabled):hover {
    transform: translateY(-2px);
}

.kit-brand-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.kit-model-row {
    margin-bottom: 18px;
}

.kit-laptop-preview {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    min-height: 250px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.kit-device-image {
    display: grid;
    place-items: center;
    height: 210px;
    background: #fff;
    border-radius: 8px;
}

.kit-device-image.is-empty {
    background: rgba(255, 255, 255, 0.08);
    border: 1px dashed rgba(255, 255, 255, 0.24);
}

.kit-device-image img {
    width: min(90%, 220px);
    max-height: 180px;
    object-fit: contain;
}

.kit-image-placeholder {
    display: grid;
    place-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.82rem;
}

.kit-image-placeholder i {
    color: var(--accent-blue);
    font-size: 1.8rem;
}

.kit-device-copy {
    min-width: 0;
}

.kit-device-brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.72);
}

.kit-device-brand img {
    width: 34px;
    height: 24px;
    object-fit: contain;
}

.kit-device-copy h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.35;
}

.kit-device-copy p {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.kit-device-copy strong {
    color: #fff;
    font-size: 1.35rem;
}

.kit-spec-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 12px 0 16px;
}

.kit-spec {
    min-height: 58px;
    padding: 9px 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
}

.kit-spec span {
    display: block;
    margin-bottom: 3px;
    color: #00e6d3;
    font-size: 0.68rem;
    text-transform: uppercase;
}

.kit-spec strong {
    display: block;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.82rem;
    line-height: 1.3;
}

.kit-device-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.kit-inline-toggle,
.kit-remove-btn {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0);
    color: #fff;
    cursor: pointer;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.kit-inline-toggle {
    padding: 8px 14px;
    font-size: 0.78rem;
}

.kit-inline-toggle.is-off,
.kit-remove-btn {
    color: rgba(255, 255, 255, 0.76);
}

.kit-included-section {
    margin-top: 22px;
}

.kit-included-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.kit-mini-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    min-height: 138px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.kit-mini-item.is-removed {
    opacity: 0.55;
}

.kit-mini-item.is-microsoft {
    background: rgba(0, 0, 0, 0.82);
    border-color: rgba(255, 255, 255, 0.24);
}

.kit-mini-image {
    display: grid;
    place-items: center;
    flex: 0 0 86px;
    width: 86px;
    height: 86px;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.kit-mini-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.kit-mini-image .kit-image-placeholder {
    width: 100%;
    height: 100%;
    gap: 3px;
    padding: 8px;
    color: rgba(0, 0, 0, 0.55);
    font-size: 0.62rem;
    text-align: center;
}

.kit-mini-image .kit-image-placeholder i {
    color: #00a99d;
    font-size: 1.1rem;
}

.kit-mini-item span {
    color: #00a99d;
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 100;
}

.kit-mini-item h3 {
    margin: 6px 0 6px;
    color: #fff;
    font-size: 0.92rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
    font-weight: 100;
}

.kit-mini-item > div {
    min-width: 0;
}

.kit-mini-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.85rem;
    font-weight: 100;
}

.kit-mini-item .kit-mini-detail {
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.74rem;
    line-height: 1.35;
    font-weight: 100;
}

.kit-remove-btn {
    margin-left: auto;
    display: grid;
    place-items: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    padding: 0;
    border-color: rgba(255, 94, 94, 0.5);
    color: #ff5e5e;
    font-size: 1rem;
}

.kit-remove-btn i {
    color: inherit;
    font-size: 1.05rem;
}

.kit-remove-btn.is-add {
    border-color: rgba(64, 255, 233, 0.4);
    color: #40ffe9;
}

.kit-summary-list {
    display: grid;
    gap: 12px;
    margin: 14px 0 18px;
}

.kit-total-breakdown {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 16px;
}

.kit-total-breakdown div {
    min-height: 64px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
}

.kit-total-breakdown span,
.kit-total-breakdown strong {
    display: block;
}

.kit-total-breakdown span {
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.7rem;
    text-transform: uppercase;
}

.kit-total-breakdown strong {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 100;
}


.kit-summary-line {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.kit-summary-line span {
    color: #00a99d;
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 100;
}

.kit-summary-line p {
    margin: 5px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.9rem;
    line-height: 1.35;
    font-weight: 100;
}

.kit-summary-line strong {
    color: #fff;
    white-space: nowrap;
    font-weight: 100;
}

.kit-summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 18px 0 8px;
    color: #fff;
}

.kit-summary-total strong {
    font-size: 1.45rem;
    font-weight: 100;
}

.kit-note {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.84rem;
    line-height: 1.5;
}

.kit-add-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 44px;
    margin-bottom: 12px;
    padding: 11px 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0);
    color: #fff;
    box-shadow:
        0 0 15px rgba(255, 255, 255, 0.8),
        0 0 30px rgba(0, 0, 0, 0.5),
        0 0 45px rgba(255, 255, 255, 0.2);
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: glowPulse 3s ease-in-out infinite;
}

.kit-add-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow:
        0 0 20px rgba(0, 0, 0, 1),
        0 0 40px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(255, 255, 255, 0.4);
    animation: glowPulseHover 2s ease-in-out infinite;
}

.kit-add-btn:disabled {
    opacity: 0.78;
    cursor: wait;
}

.kit-secondary-link {
    justify-content: center;
    width: 100%;
    color: rgba(255, 255, 255, 0.82);
}

.kit-loading-state {
    display: grid;
    place-items: center;
    min-height: 180px;
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
}

@media (max-width: 980px) {
    .kit-layout {
        grid-template-columns: 1fr;
    }

    .kit-pack-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kit-readiness-panel {
        display: grid;
    }

    .kit-readiness-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        min-width: 0;
    }

    .kit-summary-panel {
        position: static;
    }

    .kit-brand-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .kit-included-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .kit-page {
        padding: 96px 14px 54px;
    }

    .kit-builder-panel,
    .kit-pack-selector,
    .kit-readiness-panel,
    .kit-summary-panel {
        padding: 16px;
    }

    .kit-panel-head,
    .kit-pack-selector-head {
        display: grid;
    }

    .kit-pack-count {
        width: fit-content;
    }

    .kit-brand-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kit-pack-grid,
    .kit-readiness-grid,
    .kit-total-breakdown {
        grid-template-columns: 1fr;
    }

    .kit-laptop-preview {
        grid-template-columns: 1fr;
        padding: 14px;
    }

    .kit-device-image {
        height: 180px;
    }

    .kit-included-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {


}

@media (max-width: 760px) {
    .header-actions .user-name,
    .header-actions #logoutBtn {
        display: none !important;
    }

    .mobile-nav-signout {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: #ffdddd !important;
        border: 1px solid rgba(255, 94, 94, 0.35);
        border-radius: 999px;
        background: rgba(255, 94, 94, 0.12);
    }

    .mobile-nav-user {
        display: block;
        padding: 8px 10px;
        color: rgba(255, 255, 255, 0.78);
        font-size: 0.76rem;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .nav-links {
        left: auto !important;
        right: 12px !important;
        transform: none !important;
        width: 46vw !important;
        min-width: 190px;
        max-width: 240px;
    }

    .hero-content h1 {
        font-size: clamp(1.55rem, 8vw, 2.05rem) !important;
        line-height: 1.08;
    }

    .hero-visual {
        width: min(92vw, 340px);
        max-width: 340px;
        margin: 0 auto;
    }

    .slideshow-container {
        width: 100%;
        min-height: 300px;
    }

    .slideshow-container,
    .slide img {
        border-radius: 18px;
    }

    .slide img {
        width: 100%;
        max-width: 100%;
        height: 300px !important;
        object-fit: cover;
    }

    .slide-tagline {
        font-size: 1.35rem !important;
    }
}

@media (max-width: 760px) {
    .store-container {
        padding: 88px 9px 34px !important;
    }

    .store-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    .main-content {
        display: contents;
    }

    .store-header {
        order: 0;
        margin: 0 !important;
        position: sticky;
        top: 72px;
        z-index: 940;
    }

    .search-sort-bar {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto !important;
        gap: 8px !important;
        align-items: center !important;
        width: 100%;
        margin: 0 !important;
        padding: 0 !important;
    }

    .search-box {
        width: 100% !important;
        max-width: none !important;
        height: 38px !important;
        padding: 0 11px !important;
        border-radius: 18px !important;
    }

    .search-box input {
        min-width: 0;
        font-size: 0.78rem !important;
    }

    .custom-dropdown {
        width: auto !important;
        min-width: 104px !important;
    }

    .sort-dropdown {
        width: 104px !important;
        min-width: 104px !important;
        height: 38px !important;
        padding: 0 10px !important;
        border-radius: 18px !important;
        font-size: 0.72rem !important;
    }

    .sidebar {
        order: 1;
        position: sticky !important;
        top: 118px !important;
        z-index: 920;
        max-height: 33vh !important;
        overflow-y: auto;
    }

    .products-area {
        order: 2;
    }

    .product-grid .product-card .card-head {
        background: #ffffff !important;
        border-bottom: 2px solid #000000 !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .product-grid .product-card .card-head img {
        max-width: 84% !important;
        object-fit: contain !important;
    }

    .product-grid .product-card .product-summary {
        display: -webkit-box !important;
        min-height: 2.55em;
        margin-bottom: 8px !important;
        overflow: hidden;
        color: rgba(255, 255, 255, 0.78);
        font-size: 0.62rem !important;
        line-height: 1.28 !important;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
}

/* Mobile store filter drawer */
.mobile-filter-toggle {
    display: none;
}

@media (max-width: 760px) {
    .store-container {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    .store-layout {
        width: 100% !important;
        padding: 0 !important;
    }

    .store-header {
        width: 100% !important;
    }

    .search-sort-bar {
        grid-template-columns: minmax(0, 1fr) 88px !important;
        gap: 6px !important;
    }

    .search-box {
        min-width: 0 !important;
    }

    .custom-dropdown {
        min-width: 88px !important;
    }

    .sort-dropdown {
        width: 88px !important;
        min-width: 88px !important;
        padding: 0 8px !important;
        justify-content: center !important;
        gap: 4px !important;
    }

    .sort-dropdown i {
        margin-left: 0 !important;
    }

    #selectedOption {
        font-size: 0.66rem !important;
    }

    .sidebar {
        width: 100% !important;
        top: 114px !important;
        max-height: 52px !important;
        min-height: 0 !important;
        height: auto !important;
        padding: 9px 10px !important;
        gap: 0 !important;
        overflow: hidden !important;
        border-radius: 18px !important;
        transition: max-height 0.28s ease, opacity 0.22s ease, transform 0.22s ease, padding 0.22s ease, margin 0.22s ease;
    }

    .sidebar.mobile-filters-open {
        max-height: min(62vh, 470px) !important;
        overflow-y: auto !important;
    }

    .sidebar.mobile-filters-hidden {
        max-height: 0 !important;
        margin: -4px 0 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        border-color: transparent !important;
    }

    .sidebar-header {
        min-height: 34px;
        padding-bottom: 0 !important;
        border-bottom: 0 !important;
        gap: 8px;
    }

    .sidebar-header h3 {
        font-size: 0.78rem !important;
        font-weight: 200 !important;
        letter-spacing: 0 !important;
        margin: 0;
    }

    .mobile-filter-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        min-width: 84px;
        height: 34px;
        margin-left: auto;
        padding: 0 12px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.34);
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
        color: #fff;
        font-size: 0.72rem;
        font-weight: 200;
        cursor: pointer;
        box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.35);
    }

    .mobile-filter-toggle i {
        font-size: 0.95rem;
        transition: transform 0.22s ease;
    }

    .mobile-filter-toggle[aria-expanded="true"] i {
        transform: rotate(180deg);
    }

    .filter-groups {
        max-height: 0;
        margin-top: 0;
        opacity: 0;
        pointer-events: none;
        overflow: hidden;
        transition: max-height 0.28s ease, opacity 0.22s ease, margin 0.22s ease;
    }

    .sidebar.mobile-filters-open .filter-groups {
        max-height: 410px;
        margin-top: 10px;
        opacity: 1;
        pointer-events: auto;
        overflow: visible;
    }

    .filter-group {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px !important;
    }

    .filter-label {
        grid-column: 1 / -1;
        margin: 0 0 2px !important;
        font-size: 0.72rem !important;
        letter-spacing: 0 !important;
        opacity: 0.9;
    }

    .category-tree {
        display: contents;
    }

    .category-main-btn {
        min-height: 38px !important;
        margin: 0 !important;
        padding: 8px 9px !important;
        border-radius: 12px !important;
        gap: 6px !important;
        font-size: 0.72rem !important;
        line-height: 1.1 !important;
    }

    .category-main-btn:hover:not(.active),
    .subcategory-item:hover {
        transform: none !important;
    }

    .category-main-btn i:first-child,
    .category-main-btn i:last-child {
        font-size: 0.82rem !important;
    }

    .category-submenu {
        grid-column: 1 / -1;
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px !important;
        width: 100%;
        max-height: 260px;
        margin: 0 !important;
        padding: 6px !important;
        border-left: 0 !important;
        border-radius: 12px;
        background: rgba(0, 0, 0, 0.16);
    }

    .category-submenu[aria-hidden="true"] {
        display: none !important;
        max-height: 0 !important;
        padding: 0 !important;
    }

    .subcategory-item {
        min-height: 32px !important;
        margin: 0 !important;
        padding: 7px 8px !important;
        border-radius: 10px !important;
        font-size: 0.68rem !important;
        line-height: 1.1 !important;
    }

    .subcategory-item .item-icon {
        display: none;
    }

    .products-area .results-count {
        font-size: 0.72rem;
    }
}

@media (max-width: 420px) {
    .search-sort-bar {
        grid-template-columns: minmax(0, 1fr) 84px !important;
    }

    .custom-dropdown,
    .sort-dropdown {
        min-width: 84px !important;
        width: 84px !important;
    }

    .mobile-filter-toggle {
        min-width: 78px;
        padding: 0 10px;
    }
}

@media (max-width: 420px) {
    .store-header {
        top: 68px;
    }

    .sidebar {
        top: 112px !important;
    }

    .search-sort-bar {
        grid-template-columns: minmax(0, 1fr) 96px !important;
    }

    .sort-dropdown {
        width: 96px !important;
        min-width: 96px !important;
        font-size: 0.68rem !important;
    }

    .product-grid .product-card .product-summary {
        font-size: 0.58rem !important;
        -webkit-line-clamp: 2;
    }
}

/* Full-height home hero visual */
.hero {
    position: relative;
    isolation: isolate;
    min-height: 76vh !important;
    min-height: 76svh !important;
    padding: 124px 5% 52px !important;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.54) 42%, rgba(0, 0, 0, 0.16) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.04) 42%, rgba(0, 0, 0, 0.34) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 0 0 min(52%, 720px);
    max-width: 720px;
}

.hero-content h1,
.hero-content .badge-pill,
.hero-content > p,
.hero-content .hero-btns,
.hero-content .hero-stats {
    opacity: 1;
}

.hero-visual {
    position: absolute !important;
    inset: 0;
    z-index: 1;
    width: 100% !important;
    height: 100%;
    max-width: none !important;
    margin: 0 !important;
    pointer-events: none;
}

.hero .hero-visual.animate-on-scroll,
.hero .hero-visual.slide-in-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
}

.slideshow-container {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    border-radius: 0 !important;
    overflow: hidden;
}

.slide,
.slide.show {
    height: 100%;
}

.slide img {
    width: 100% !important;
    height: 100% !important;
    min-height: 76vh;
    min-height: 76svh;
    border-radius: 0 !important;
    object-fit: cover;
    object-position: center;
    transform: none !important;
}

.slide-overlay,
.slide-brand,
.slide-tagline,
.slide-price {
    display: none !important;
}

.dot-container {
    right: clamp(24px, 4vw, 70px);
    bottom: 34px;
}

.procurement-command {
    position: relative;
    z-index: 2;
    margin-top: 48px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

@media (max-width: 980px) {
    .hero {
        display: flex;
        align-items: flex-end;
        min-height: 80vh !important;
        min-height: 80svh !important;
        padding: 126px 24px 54px !important;
    }

    .hero-content {
        flex-basis: 100%;
        max-width: 680px;
    }

    .hero-visual {
        width: 100% !important;
    }

    .hero::before {
        background:
            linear-gradient(90deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.3) 100%),
            linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.18) 45%, rgba(0, 0, 0, 0.66) 100%);
    }
}

@media (max-width: 760px) {
    .hero {
        min-height: 82vh !important;
        min-height: 82svh !important;
        padding: 112px 16px 42px !important;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-visual {
        width: 100% !important;
    }

    .slideshow-container {
        min-height: 100% !important;
    }

    .slide img {
        height: 100% !important;
        min-height: 82vh;
        min-height: 82svh;
    }

    .dot-container {
        right: 18px;
        bottom: 18px;
    }
}

/* Sticky procurement/category scroll stage */
.procurement-scroll-stage {
    width: min(1540px, 94vw);
    margin: 18px auto 72px;
    display: grid;
    grid-template-columns: minmax(300px, 0.78fr) minmax(640px, 1.42fr);
    gap: clamp(18px, 2.2vw, 34px);
    align-items: start;
}

.procurement-scroll-stage.animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
}

.preferred-category-panel {
    min-width: 0;
}

.preferred-category-panel .section-title {
    margin-bottom: 0;
    text-align: left;
}

.preferred-category-panel .section-title h2 {
    max-width: 360px;
    margin-top: 12px;
    font-size: clamp(1.55rem, 2.4vw, 2.45rem);
    line-height: 1.08;
}

.preferred-category-panel .category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 20px;
}

.preferred-category-panel .category-card {
    height: clamp(220px, 28vh, 300px);
    border-radius: 8px;
}

.preferred-category-panel .category-content {
    min-height: 118px;
    padding: 18px;
}

.preferred-category-panel .category-content h3 {
    font-size: 1.12rem;
    margin-bottom: 5px;
}

.preferred-category-panel .category-content p {
    margin-bottom: 10px;
    font-size: 0.78rem;
    line-height: 1.35;
}

.preferred-category-panel .category-btn {
    width: fit-content;
    padding: 8px 14px;
    font-size: 0.72rem;
}

.procurement-sticky-panel {
    position: sticky;
    top: 120px;
    display: grid;
    gap: 16px;
    align-self: start;
    min-width: 0;
}

.procurement-scroll-stage .procurement-command,
.procurement-scroll-stage .license-promo-strip {
    width: 100% !important;
    margin: 0 !important;
}

.procurement-scroll-stage .procurement-command {
    grid-template-columns: minmax(240px, 0.9fr) minmax(320px, 1.05fr);
    gap: 16px;
}

.procurement-scroll-stage .procurement-media {
    min-height: 300px;
}

.procurement-scroll-stage .procurement-media img {
    min-height: 300px;
}

.procurement-scroll-stage .procurement-copy {
    min-height: 300px;
    padding: clamp(20px, 2.3vw, 32px);
}

.procurement-scroll-stage .procurement-copy h2 {
    font-size: clamp(1.5rem, 2.4vw, 2.25rem);
}

.procurement-scroll-stage .license-promo-strip {
    grid-template-columns: minmax(230px, 0.72fr) minmax(360px, 1.28fr);
    padding: 18px;
}

@media (max-width: 1180px) {
    .procurement-scroll-stage {
        width: min(100% - 28px, 980px);
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .procurement-sticky-panel {
        position: static;
    }

    .preferred-category-panel .section-title {
        text-align: center;
    }

    .preferred-category-panel .section-title h2 {
        max-width: none;
    }

    .preferred-category-panel .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .procurement-scroll-stage {
        width: calc(100% - 24px);
        margin-top: 16px;
        margin-bottom: 48px;
    }

    .preferred-category-panel .category-grid,
    .procurement-scroll-stage .procurement-command,
    .procurement-scroll-stage .license-promo-strip,
    .procurement-scroll-stage .license-promo-items {
        grid-template-columns: 1fr;
    }

    .preferred-category-panel .category-card {
        height: 250px;
    }

    .procurement-scroll-stage .procurement-media,
    .procurement-scroll-stage .procurement-media img {
        min-height: 240px;
    }

    .procurement-scroll-stage .procurement-copy {
        min-height: auto;
    }
}

/* Cleaner sticky procurement stage */
.procurement-scroll-stage {
    --category-image-height: clamp(350px, 42vh, 480px);
    --procurement-image-height: clamp(740px, 88vh, 530px);
    width: min(1720px, 94vw);
    margin-top: 34px;
    grid-template-columns: minmax(360px, 0.72fr) minmax(720px, 1.28fr);
    gap: clamp(38px, 4.6vw, 78px);
}

.procurement-scroll-stage,
.procurement-scroll-stage * {
    font-weight: 100 !important;
}

.preferred-category-panel .section-title {
    margin-bottom: 42px;
}

.preferred-category-panel .section-title h2 {
    max-width: 620px;
    font-size: clamp(1.45rem, 2.1vw, 2.05rem);
    line-height: 1.12;
}

.preferred-category-panel .category-grid {
    gap: clamp(58px, 8vh, 96px);
    margin-top: 0;
}

.preferred-category-panel .category-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: auto;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    cursor: pointer;
}

.preferred-category-panel .category-card:hover {
    transform: none;
    filter: none;
}

.preferred-category-panel .category-image-wrapper {
    position: relative;
    order: 2;
    z-index: 1;
    height: var(--category-image-height);
    border-radius: 20px;
    overflow: hidden;
    border: 0;
    background: #050505;
}

.preferred-category-panel .category-image-wrapper img {
    height: 100%;
    object-fit: cover;
}

.preferred-category-panel .category-content,
.preferred-category-panel .category-content.liquid-glass-card {
    position: relative;
    order: 1;
    inset: auto;
    z-index: 2;
    min-height: auto;
    max-width: 420px;
    padding: 0;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.preferred-category-panel .category-content h3 {
    margin-bottom: 8px;
    color: #fff;
    font-size: 1.04rem;
    line-height: 1.2;
    text-shadow: none;
}

.preferred-category-panel .category-content p {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    line-height: 1.5;
}

.preferred-category-panel .category-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 38px;
    padding: 8px 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0);
    box-shadow:
        0 0 12px rgba(255, 255, 255, 0.42),
        0 0 24px rgba(0, 0, 0, 0.42);
    color: #fff;
    font-size: 0.72rem;
    text-decoration: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.preferred-category-panel .category-btn::after {
    content: " \2192";
    color: inherit;
}

.procurement-sticky-panel {
    top: 112px;
    gap: clamp(28px, 4vh, 46px);
}

.procurement-scroll-stage .procurement-command,
.procurement-scroll-stage .license-promo-strip {
    width: 100% !important;
    margin: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.procurement-scroll-stage .procurement-command {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 26px;
}

.procurement-scroll-stage .procurement-media {
    height: var(--procurement-image-height);
    min-height: 0;
    max-height: var(--procurement-image-height);
    border: 0;
    border-radius: 8px;
    background: #050505;
    box-shadow: none;
}

.procurement-scroll-stage .procurement-media img {
    height: 100% !important;
    min-height: 0;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
}

.procurement-scroll-stage .procurement-copy {
    min-height: auto;
    padding: 0;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.procurement-scroll-stage .badge-pill {
    padding: 5px 16px;
    font-size: 0.72rem;
}

.procurement-scroll-stage .procurement-copy h2 {
    max-width: 620px;
    margin: 18px 0 14px;
    font-size: clamp(1.55rem, 2.15vw, 2.15rem);
    line-height: 1.08;
}

.procurement-scroll-stage .procurement-copy p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.82rem;
    line-height: 1.6;
}

.procurement-scroll-stage .procurement-paths {
    max-width: 720px;
    margin-top: 24px;
}

.procurement-scroll-stage .procurement-path {
    min-height: 64px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.055);
    font-size: 0.72rem;
}

.procurement-scroll-stage .procurement-actions {
    margin-top: 24px;
}

.procurement-scroll-stage .procurement-path i,
.procurement-scroll-stage .license-promo-items i {
    font-size: 1.15rem;
}

.procurement-scroll-stage .license-promo-strip {
    display: grid;
    grid-template-columns: minmax(260px, 0.42fr) minmax(520px, 1fr);
    gap: 42px;
    align-items: start;
    padding: 0;
}

.procurement-scroll-stage .license-promo-copy h2 {
    max-width: 420px;
    margin-top: 10px;
    font-size: clamp(1.18rem, 1.7vw, 1.58rem);
    line-height: 1.12;
}

.procurement-scroll-stage .license-promo-items {
    align-self: center;
}

.procurement-scroll-stage .license-promo-items a {
    min-height: 62px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.045);
    font-size: 0.7rem;
}

@media (max-width: 1180px) {
    .procurement-scroll-stage {
        width: min(100% - 32px, 1040px);
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .procurement-sticky-panel {
        position: static;
    }
}

@media (max-width: 760px) {
    .procurement-scroll-stage {
        width: calc(100% - 24px);
    }

    .preferred-category-panel .section-title {
        margin-bottom: 28px;
    }

    .preferred-category-panel .category-grid {
        gap: 46px;
    }

    .preferred-category-panel .category-image-wrapper,
    .procurement-scroll-stage .procurement-media,
    .procurement-scroll-stage .procurement-media img {
        min-height: 0;
        height: 260px;
    }

    .procurement-scroll-stage .license-promo-strip,
    .procurement-scroll-stage .license-promo-items {
        grid-template-columns: 1fr;
    }
}

/* Final mobile store controls */
@media (max-width: 760px) {
    body.store-page .store-layout {
        padding: 0 !important;
    }

    body.store-page .store-header {
        width: 100% !important;
    }

    body.store-page .search-sort-bar {
        grid-template-columns: minmax(0, 1fr) 88px !important;
        gap: 6px !important;
        width: 100% !important;
    }

    body.store-page .search-box {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
    }

    body.store-page .custom-dropdown,
    body.store-page .sort-dropdown {
        width: 88px !important;
        min-width: 88px !important;
    }

    body.store-page .sidebar {
        max-height: 52px !important;
        height: auto !important;
        overflow: hidden !important;
    }

    body.store-page .sidebar.mobile-filters-open {
        max-height: min(62vh, 470px) !important;
        overflow-y: auto !important;
    }

    body.store-page .sidebar.mobile-filters-hidden {
        max-height: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
    }
}

@media (max-width: 420px) {
    body.store-page .search-sort-bar {
        grid-template-columns: minmax(0, 1fr) 84px !important;
    }

    body.store-page .custom-dropdown,
    body.store-page .sort-dropdown {
        width: 84px !important;
        min-width: 84px !important;
    }
}

/* Smart header hover previews */
.nav-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 200;
}

.nav-links a:not(.active):hover,
.nav-links a:not(.active):focus-visible,
.nav-links a.nav-preview-active {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 140, 0, 0.16));
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow:
        0 8px 28px rgba(255, 140, 0, 0.18),
        inset 0 1px 2px rgba(255, 255, 255, 0.28);
    transform: translateY(-1px);
}

.nav-preview-panel {
    --preview-left: 50%;
    position: absolute;
    top: calc(100% + 12px);
    left: var(--preview-left);
    width: min(520px, calc(100vw - 42px));
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background:
        radial-gradient(circle at top left, rgba(68, 255, 224, 0.16), transparent 38%),
        linear-gradient(135deg, rgba(18, 18, 18, 0.82), rgba(54, 28, 38, 0.72));
    backdrop-filter: blur(24px) saturate(170%);
    -webkit-backdrop-filter: blur(24px) saturate(170%);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.36),
        inset 0 1px 2px rgba(255, 255, 255, 0.28);
    opacity: 0;
    transform: translate(-50%, -8px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1002;
}

.nav-preview-panel.visible {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
    pointer-events: auto;
}

.nav-preview-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: var(--accent-teal);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.26);
}

.nav-preview-icon i {
    font-size: 1.45rem;
}

.nav-preview-copy {
    min-width: 0;
}

.nav-preview-kicker {
    display: block;
    margin-bottom: 4px;
    color: var(--accent-teal);
    font-size: 0.64rem;
    font-weight: 200;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-preview-copy strong {
    display: block;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 200;
    line-height: 1.2;
}

.nav-preview-copy p {
    max-width: 430px;
    margin: 7px 0 12px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    line-height: 1.45;
}

.nav-preview-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 13px;
}

.nav-preview-chips span {
    padding: 5px 9px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.66rem;
    font-weight: 200;
}

.nav-preview-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 15px;
    border-radius: 999px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 200;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 140, 0, 0.22));
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.24), inset 0 1px 2px rgba(255, 255, 255, 0.28);
}

@media (max-width: 968px) {
    .nav-preview-panel {
        display: none;
    }

    .nav-links a {
        display: flex;
        min-height: 34px;
        padding: 8px 10px;
    }
}

/* Header mega-menu version */
@media (min-width: 969px) {
    .header-container {
        flex-wrap: wrap;
        row-gap: 0;
        transition: background 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease, border-radius 0.26s ease, padding 0.26s ease;
    }

    .header-container.nav-preview-open {
        background:
            radial-gradient(circle at 82% 0%, rgba(255, 138, 31, 0.2), transparent 34%),
            radial-gradient(circle at 8% 10%, rgba(68, 255, 224, 0.12), transparent 38%),
            linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(220, 240, 255, 0.045), rgba(255, 230, 245, 0.035));
        border-color: rgba(255, 255, 255, 0.26);
        box-shadow:
            0 24px 80px rgba(0, 0, 0, 0.34),
            inset 0 1px 2px rgba(255, 255, 255, 0.34);
        border-radius: 34px;
        padding-bottom: 18px;
    }

    .header-container.nav-preview-open .nav-links a,
    .header-container.nav-preview-open .user-name,
    .header-container.nav-preview-open .brand-name {
        color: rgba(255, 255, 255, 0.92) !important;
    }

    .header-container.nav-preview-open .nav-links a.active,
    .header-container.nav-preview-open .nav-links a.nav-preview-active,
    .header-container.nav-preview-open .nav-links a:hover {
        color: #ffffff !important;
        background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(153, 112, 70, 0.28));
        border-color: rgba(255, 255, 255, 0.28);
        box-shadow:
            0 10px 34px rgba(0, 0, 0, 0.28),
            0 0 22px rgba(196, 139, 75, 0.18),
            inset 0 1px 2px rgba(255, 255, 255, 0.28);
    }

    .header-container.nav-preview-open .wishlist-wrapper,
    .header-container.nav-preview-open .cart-wrapper,
    .header-container.nav-preview-open .auth-wrapper {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.2);
    }

    .nav-preview-panel {
        position: static;
        flex: 0 0 100%;
        width: 100%;
        display: grid;
        grid-template-columns: minmax(260px, 0.9fr) minmax(520px, 1.6fr);
        gap: 18px;
        max-height: 0;
        margin: 0;
        padding: 0;
        overflow: hidden;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        opacity: 0;
        transform: translateY(-8px);
        pointer-events: none;
        transition: max-height 0.28s ease, opacity 0.2s ease, transform 0.2s ease, margin 0.24s ease;
        z-index: 2;
    }

    .nav-preview-panel.visible {
        max-height: 330px;
        margin-top: 8px;
        padding-top: 14px;
        border-top: 1px solid rgba(14, 18, 24, 0.1);
        border-top-color: rgba(255, 255, 255, 0.12);
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-preview-feature {
        display: grid;
        grid-template-columns: 54px minmax(0, 1fr);
        gap: 14px;
        padding: 16px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.075);
        border: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.2);
    }

    .nav-preview-icon {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.18);
    }

    .nav-preview-copy strong {
        color: rgba(255, 255, 255, 0.96);
    }

    .nav-preview-copy p {
        color: rgba(255, 255, 255, 0.7);
    }

    .nav-preview-chips span {
        color: rgba(255, 255, 255, 0.82);
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.14);
    }

    .nav-preview-action {
        color: #fff;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(153, 112, 70, 0.3));
        border-color: rgba(255, 255, 255, 0.24);
    }

    .nav-preview-mega {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .nav-preview-column {
        min-width: 0;
        padding: 15px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.065);
        border: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.2);
    }

    .nav-preview-column h4 {
        margin: 0 0 10px;
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.72rem;
        font-weight: 200;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .nav-preview-column a {
        display: grid;
        grid-template-columns: 32px minmax(0, 1fr);
        gap: 10px;
        align-items: start;
        padding: 10px;
        border-radius: 16px;
        color: rgba(255, 255, 255, 0.88);
        text-decoration: none;
        transition: background 0.18s ease, transform 0.18s ease;
    }

    .nav-preview-column a:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateY(-1px);
    }

    .nav-preview-column i {
        display: grid;
        place-items: center;
        width: 32px;
        height: 32px;
        border-radius: 12px;
        color: var(--accent-teal);
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .nav-preview-column strong {
        display: block;
        color: rgba(255, 255, 255, 0.94);
        font-size: 0.78rem;
        font-weight: 200;
        line-height: 1.2;
    }

    .nav-preview-column small {
        display: block;
        margin-top: 4px;
        color: rgba(255, 255, 255, 0.58);
        font-size: 0.66rem;
        line-height: 1.35;
    }
}




/* Customer-flow consistency: wishlist, cart, checkout, and order pages */
.empty-wishlist-msg,
.empty-cart-msg,
.success-container,
.order-content,
.order-details-page .order-content,
.summary-card,
#wishlistSummary .summary-card {
    background:
        radial-gradient(circle at 18% 8%, rgba(68, 255, 224, 0.11), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045)) !important;
    backdrop-filter: blur(22px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(22px) saturate(160%) !important;
    border: 1px solid rgba(255, 255, 255, 0.24) !important;
    box-shadow:
        0 22px 58px rgba(0, 0, 0, 0.26),
        inset 0 1px 2px rgba(255, 255, 255, 0.28) !important;
}

.empty-wishlist-msg,
.empty-cart-msg {
    color: #ffffff !important;
    border-radius: 24px !important;
}

.empty-wishlist-msg i,
.empty-cart-msg i {
    color: rgba(68, 255, 224, 0.68) !important;
}

.empty-wishlist-msg h3,
.empty-cart-msg h3,
.empty-wishlist-msg p,
.empty-cart-msg p {
    color: rgba(255, 255, 255, 0.86) !important;
}

.wishlist-item-card {
    display: grid;
    grid-template-columns: 152px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: stretch;
    margin-bottom: 16px;
    overflow: hidden;
    border-radius: 22px;
    background:
        radial-gradient(circle at 18% 12%, rgba(68, 255, 224, 0.1), transparent 35%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.23), inset 0 1px 2px rgba(255, 255, 255, 0.26);
}

.wishlist-image-box,
.cart-item-card .item-img-container,
.summary-thumb,
.recommendation-image,
.item-thumbnail,
.item-image {
    background: #ffffff !important;
}

.wishlist-image-box {
    min-height: 148px;
    padding: 18px;
    display: grid;
    place-items: center;
    border-radius: 22px 0 0 22px;
}

.wishlist-image-box img {
    width: 100%;
    height: 112px;
    object-fit: contain;
    display: block;
}

.wishlist-copy {
    min-width: 0;
    padding: 18px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
}

.wishlist-kicker {
    color: var(--accent-teal);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 200;
}

.wishlist-title {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.02rem;
    line-height: 1.25;
    font-weight: 200;
}

.wishlist-copy p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.84rem;
    line-height: 1.45;
}

.wishlist-copy strong {
    color: var(--accent-teal);
    font-size: 1.05rem;
    font-weight: 200;
}

.wishlist-actions {
    padding: 18px 18px 18px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wishlist-actions .btn-primary,
.empty-wishlist-msg .btn-primary,
.empty-cart-msg .btn-primary,
.success-container .btn-primary,
.order-container .btn-primary,
.success-container .btn-secondary,
.order-container .btn-secondary,
.orders-page .btn-primary,
.orders-page .btn-secondary,
.review-grid .btn,
.review-grid .btn-primary {
    min-height: 42px;
    padding: 0 22px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 200 !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 140, 0, 0.2)) !important;
    border: 1px solid rgba(255, 255, 255, 0.28) !important;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22), inset 0 1px 2px rgba(255, 255, 255, 0.28) !important;
}

.wishlist-delete-btn {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #ff6b6b;
    background: rgba(255, 78, 88, 0.12);
    border: 1px solid rgba(255, 78, 88, 0.45);
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(255, 78, 88, 0.18), inset 0 1px 2px rgba(255, 255, 255, 0.18);
}

.recommendation-image {
    display: grid;
    place-items: center;
    min-height: 108px;
}

.recommendation-image img,
.summary-thumb,
.item-thumbnail img,
.item-image {
    object-fit: contain !important;
}

.summary-thumb {
    padding: 6px !important;
}

.success-page .success-container {
    border-radius: 24px !important;
    color: #ffffff;
}

.success-title,
.success-subtitle,
.status-message,
.email-note,
.success-container .order-id-label,
.success-container .order-id-value {
    color: rgba(255, 255, 255, 0.88) !important;
}

.success-container .order-id {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(68, 255, 224, 0.28) !important;
    border-left: 4px solid var(--accent-teal) !important;
}

.success-icon {
    color: var(--accent-teal);
}

.order-container {
    max-width: 1120px !important;
}

.order-header {
    background:
        radial-gradient(circle at 20% 0%, rgba(68, 255, 224, 0.14), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05)) !important;
    backdrop-filter: blur(22px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(22px) saturate(160%) !important;
    border: 1px solid rgba(255, 255, 255, 0.24) !important;
    border-radius: 22px !important;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24), inset 0 1px 2px rgba(255, 255, 255, 0.26) !important;
}

.order-content {
    border-radius: 22px !important;
}

.order-content .section {
    border-color: rgba(255, 255, 255, 0.16) !important;
}

.order-content .section h2,
.order-content .item-name,
.order-content .info-value,
.order-content .summary-row,
.order-content p {
    color: rgba(255, 255, 255, 0.88) !important;
}

.order-content .info-label {
    color: var(--accent-teal) !important;
}

.order-content .address-block,
.order-content .summary-box,
.order-content .success-message {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    color: rgba(255, 255, 255, 0.88) !important;
}

@media (max-width: 720px) {
    .wishlist-item-card {
        grid-template-columns: 118px minmax(0, 1fr);
    }

    .wishlist-image-box {
        min-height: 132px;
    }

    .wishlist-actions {
        grid-column: 1 / -1;
        padding: 0 14px 14px;
        justify-content: flex-end;
    }

    .wishlist-copy {
        padding: 14px 14px 14px 0;
    }
}

/* Wishlist page polish */
.wishlist-page {
    min-height: 82vh;
    padding: 138px 5% 64px;
}

.wishlist-page-heading {
    max-width: 1200px;
    margin: 0 auto 22px;
}

.wishlist-page-heading span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 13px;
    margin-bottom: 10px;
    border-radius: 999px;
    color: var(--accent-teal);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 0.68rem;
    font-weight: 200;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wishlist-page-heading h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.55rem, 2.8vw, 2.35rem);
    line-height: 1.1;
    font-weight: 200;
}

.wishlist-layout {
    margin-top: 0;
    gap: 16px;
}

body.wishlist-is-empty .wishlist-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 120px;
}

body.wishlist-is-empty .wishlist-page-heading {
    text-align: center;
    margin-bottom: 18px;
}

body.wishlist-is-empty .wishlist-layout {
    display: block;
    max-width: min(560px, 100%);
    width: 100%;
    margin: 0 auto;
}

.empty-wishlist-msg {
    max-width: 560px;
    min-height: 250px;
    margin: 0 auto;
    padding: 34px 30px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
}

.empty-wishlist-msg i {
    width: 54px;
    height: 54px;
    display: grid !important;
    place-items: center;
    margin: 0 !important;
    border-radius: 18px;
    font-size: 1.7rem !important;
    background: rgba(68, 255, 224, 0.1);
    border: 1px solid rgba(68, 255, 224, 0.22);
}

.empty-wishlist-msg h3 {
    margin: 2px 0 0;
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: 200;
}

.empty-wishlist-msg p {
    max-width: 360px;
    margin: 0 0 6px;
    font-size: 0.88rem;
    line-height: 1.45;
}

.wishlist-item-card {
    grid-template-columns: 138px minmax(0, 1fr) auto;
    gap: 0;
    min-height: 154px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.wishlist-image-box {
    min-height: 154px;
    width: 138px;
    padding: 16px;
    border-radius: 20px 0 0 20px;
}

.wishlist-image-box img {
    max-width: 104px;
    height: 104px;
}

.wishlist-copy {
    padding: 18px 18px;
    gap: 9px;
}

.wishlist-title {
    max-width: 640px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 1.02rem;
}

.wishlist-short-description {
    max-width: 620px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.wishlist-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 680px;
}

.wishlist-specs span {
    min-height: 31px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 9px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.72rem;
    line-height: 1;
}

.wishlist-specs small {
    color: var(--accent-teal);
    font-size: 0.58rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.wishlist-actions {
    min-width: 166px;
    padding: 0 18px;
    justify-content: center;
}

.wishlist-actions .btn-primary {
    min-width: 124px;
    min-height: 40px;
    padding: 0 16px !important;
    white-space: nowrap;
}

#wishlistSummary .summary-card {
    border-radius: 22px;
}

#wishlistSummary .summary-card h3 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 200;
}

#wishlistSummary .summary-card hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    margin: 18px 0;
}

#wishlistSummary .summary-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.82rem;
    line-height: 1.45;
    text-align: left;
}

@media (max-width: 1020px) {
    .wishlist-layout {
        grid-template-columns: 1fr;
    }

    #wishlistSummary .summary-card {
        position: static;
    }
}

@media (max-width: 760px) {
    .wishlist-page {
        padding: 118px 14px 48px;
    }

    .wishlist-page-heading {
        margin-bottom: 16px;
    }

    .wishlist-page-heading h1 {
        font-size: 1.5rem;
    }

    .wishlist-item-card {
        grid-template-columns: 112px minmax(0, 1fr);
        min-height: 138px;
    }

    .wishlist-image-box {
        width: 112px;
        min-height: 138px;
        padding: 12px;
    }

    .wishlist-image-box img {
        max-width: 82px;
        height: 82px;
    }

    .wishlist-copy {
        padding: 14px 14px;
    }

    .wishlist-title {
        font-size: 0.92rem;
    }

    .wishlist-specs {
        gap: 6px;
    }

    .wishlist-specs span {
        min-height: 28px;
        padding: 5px 8px;
        font-size: 0.66rem;
    }

    .wishlist-actions {
        grid-column: 1 / -1;
        min-width: 0;
        padding: 0 14px 14px;
        justify-content: flex-start;
    }

    .wishlist-actions .btn-primary {
        flex: 1;
        min-width: 0;
    }
}

@media (max-width: 430px) {
    .wishlist-item-card {
        grid-template-columns: 96px minmax(0, 1fr);
        border-radius: 18px;
    }

    .wishlist-image-box {
        width: 96px;
        min-height: 128px;
        border-radius: 18px 0 0 18px;
    }

    .wishlist-delete-btn {
        width: 40px;
        height: 40px;
    }

    .empty-wishlist-msg {
        min-height: 230px;
        padding: 28px 20px !important;
    }
}

/* Cart empty state polish */
body.cart-is-empty .cart-container {
    min-height: 78vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 118px;
}

body.cart-is-empty .cart-items-heading {
    max-width: 560px !important;
    width: 100%;
    margin: 0 auto 18px !important;
    text-align: center !important;
    position: static !important;
}

body.cart-is-empty .cart-items-heading h2 {
    font-size: clamp(1.55rem, 3vw, 2.1rem) !important;
    font-weight: 200 !important;
}

body.cart-is-empty .cart-layout {
    display: block;
    max-width: min(560px, 100%);
    width: 100%;
    margin: 0 auto;
}

body.cart-is-empty .cart-summary,
body.cart-is-empty .recommendation-slot {
    display: none !important;
}

.empty-cart-msg {
    max-width: 560px;
    min-height: 250px;
    margin: 0 auto;
    padding: 34px 30px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
}

.empty-cart-msg i {
    width: 54px;
    height: 54px;
    display: grid !important;
    place-items: center;
    margin: 0 !important;
    border-radius: 18px;
    font-size: 1.7rem !important;
    background: rgba(68, 255, 224, 0.1);
    border: 1px solid rgba(68, 255, 224, 0.22);
}

.empty-cart-msg h3 {
    margin: 2px 0 0;
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: 200;
}

.empty-cart-msg p {
    max-width: 360px;
    margin: 0 0 6px;
    font-size: 0.88rem;
    line-height: 1.45;
}

.btn-add-to-cart.is-loading {
    opacity: 0.7;
    pointer-events: none;
}

@media (max-width: 560px) {
    body.cart-is-empty .cart-container {
        padding: 112px 14px 44px;
    }

    .empty-cart-msg {
        min-height: 230px;
        padding: 28px 20px !important;
    }
}

/* Final mobile product-card polish: home and store need different logo scales. */
@media (max-width: 768px) {
    .featured-products .featured-carousel-card .card-head {
        background: #ffffff !important;
        border-bottom: 2px solid #000000 !important;
        min-height: 104px;
    }

    .featured-products .featured-carousel-card .card-head img {
        max-height: 68px !important;
        max-width: 78% !important;
        object-fit: contain !important;
    }

    .featured-products .featured-carousel-card .brand-logo-tag {
        height: 20px !important;
        max-width: 54px !important;
        object-fit: contain !important;
    }

    .featured-products .featured-carousel-card .product-title,
    .featured-products .featured-carousel-card .card-body h3 {
        font-size: 0.58rem !important;
        line-height: 1.2 !important;
        min-height: 2.35em !important;
        margin: 5px 0 !important;
        font-weight: 100 !important;
    }

    body.store-page .product-grid .product-card .brand-logo-tag {
        height: 24px !important;
        max-width: 70px !important;
        object-fit: contain !important;
    }
}

@media (max-width: 420px) {
    .featured-products .featured-carousel-card .brand-logo-tag {
        height: 18px !important;
        max-width: 46px !important;
    }

    body.store-page .product-grid .product-card .brand-logo-tag {
        height: 21px !important;
        max-width: 62px !important;
    }
}
/* Glass rendering cleanup: clips sub-pixel backdrop seams at rounded edges. */
.glass-card,
.liquid-glass-card,
.product-card,
.category-card,
.bundle-card,
.featured-card,
.duo-license-card,
.license-card,
.recommendation-card,
.cart-item,
.checkout-card,
.account-card,
.profile-card {
    overflow: hidden;
    isolation: isolate;
    background-clip: padding-box;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Store product cards: make the liquid glass body fill the full rounded bottom. */
body.store-page .product-grid .product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: rgba(255, 255, 255, 0.045);
    overflow: hidden;
    isolation: isolate;
    background-clip: padding-box;
    transform: translateZ(0);
    backface-visibility: hidden;
}

body.store-page .product-grid .product-card .card-head {
    flex: 0 0 auto;
}

body.store-page .product-grid .product-card .card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 0;
    margin-bottom: -1px;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom-right-radius: inherit;
    border-bottom-left-radius: inherit;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045)),
        rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(22px) saturate(165%);
    -webkit-backdrop-filter: blur(22px) saturate(165%);
    background-clip: padding-box;
    transform: translateZ(0);
    backface-visibility: hidden;
}

body.store-page .product-grid .product-card .price-box {
    margin-top: auto;
}


/* Fresh shared footer and Brands We Sell styling */
.brands-section {
    width: min(1820px, calc(100vw - 84px));
    margin: 0 auto;
    padding: 78px clamp(22px, 3vw, 54px) 86px;
    position: relative;
    overflow: hidden;
    border-radius: 34px 34px 0 0;
    border: 0;
    background:
        linear-gradient(to bottom, rgba(255, 255, 255, 0.085) 0%, rgba(255, 255, 255, 0.05) 62%, rgba(255, 255, 255, 0) 100%),
        rgba(8, 9, 10, 0.2);
    box-shadow: none;
    backdrop-filter: blur(18px) saturate(135%);
    -webkit-backdrop-filter: blur(18px) saturate(135%);
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 72%, rgba(0, 0, 0, 0.68) 88%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 72%, rgba(0, 0, 0, 0.68) 88%, transparent 100%);
}

.brands-section::before,
.brands-section::after {
    display: none;
    content: none;
}

.brands-section .section-title,
.brands-section .brands-grid {
    position: relative;
    z-index: 1;
}

.site-footer {
    margin: 0;
    padding: 0 42px 24px;
    color: #fff;
    background: transparent;
    background-image: none;
    border: 0;
    outline: 0;
    box-shadow: none;
    overflow: visible;
}

.site-footer::before,
.site-footer::after {
    display: none;
    content: none;
}

.site-footer .footer-shell {
    width: min(1820px, calc(100vw - 84px));
    min-height: 320px;
    margin: 0 auto;
    padding: 30px clamp(20px, 2.9vw, 54px);
    display: grid;
    grid-template-columns: minmax(260px, 1.25fr) repeat(2, minmax(180px, 0.85fr)) minmax(270px, 1.1fr);
    gap: clamp(34px, 5vw, 86px);
    align-items: start;
    border: 0;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.014) 54%, rgba(255, 255, 255, 0.024)),
        rgba(8, 9, 10, 0.36);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055), 0 16px 44px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(22px) saturate(145%);
    -webkit-backdrop-filter: blur(22px) saturate(145%);
}

.site-footer .footer-logo {
    min-height: 44px;
}

.site-footer .footer-logo img {
    display: block;
    width: 78px;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
}

.site-footer .footer-brand p {
    max-width: 330px;
    margin: 36px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.84rem;
    line-height: 1.7;
    font-weight: 100;
}

.site-footer .footer-brand small {
    display: block;
    margin-top: 112px;
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.74rem;
    line-height: 1.4;
    font-weight: 100;
}

.site-footer .footer-links h4,
.site-footer .footer-contact h4 {
    margin: 18px 0 21px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.84rem;
    font-weight: 100;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.site-footer .footer-links a,
.site-footer .footer-contact a,
.site-footer .footer-contact p {
    display: block;
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.64);
    text-decoration: none;
    font-size: 0.82rem;
    line-height: 1.38;
    font-weight: 100;
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer .footer-links a:hover,
.site-footer .footer-contact a:hover {
    color: var(--accent-teal);
    transform: translateX(2px);
}

.site-footer .footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.site-footer .footer-socials a {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin: 0;
    border: 1px solid rgba(68, 255, 224, 0.3);
    border-radius: 50%;
    background: rgba(68, 255, 224, 0.08);
    color: var(--accent-teal);
}

.site-footer .footer-socials a:hover {
    color: #ffffff;
    background: rgba(68, 255, 224, 0.16);
    transform: translateY(-2px);
}

@media (max-width: 1180px) {
    .site-footer .footer-shell {
        grid-template-columns: minmax(260px, 1fr) repeat(2, minmax(160px, 1fr));
        gap: 34px 44px;
    }

    .site-footer .footer-brand small {
        margin-top: 52px;
    }
}

@media (max-width: 760px) {
    .brands-section {
        width: calc(100vw - 16px);
        padding: 46px 14px 62px;
        border-radius: 22px 22px 0 0;
        -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 70%, rgba(0, 0, 0, 0.68) 88%, transparent 100%);
        mask-image: linear-gradient(to bottom, #000 0%, #000 70%, rgba(0, 0, 0, 0.68) 88%, transparent 100%);
    }

    .site-footer {
        padding: 0 8px 10px;
    }

    .site-footer .footer-shell {
        width: calc(100vw - 16px);
        min-height: 0;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px 14px;
        padding: 16px 14px 18px;
        border-radius: 22px;
    }

    .site-footer .footer-brand {
        display: contents;
    }

    .site-footer .footer-logo,
    .site-footer .footer-brand p,
    .site-footer .footer-brand small {
        grid-column: 1 / -1;
    }

    .site-footer .footer-logo {
        min-height: 0;
    }

    .site-footer .footer-logo img {
        width: 58px;
    }

    .site-footer .footer-brand p {
        max-width: 250px;
        margin: 6px 0 0;
        font-size: 0.62rem;
        line-height: 1.38;
        font-weight: 100;
    }

    .site-footer .footer-brand small {
        margin: 0;
        justify-self: start;
        align-self: end;
        color: rgba(255, 255, 255, 0.48);
        font-size: 0.52rem;
        line-height: 1.25;
        font-weight: 100;
    }

    .site-footer .footer-links,
    .site-footer .footer-contact {
        min-width: 0;
    }

    .site-footer .footer-contact {
        display: block;
    }

    .site-footer .footer-links h4,
    .site-footer .footer-contact h4 {
        margin: 0 0 7px;
        font-size: 0.58rem;
        line-height: 1.15;
        letter-spacing: 0.9px;
        font-weight: 100;
    }

    .site-footer .footer-links a,
    .site-footer .footer-contact a,
    .site-footer .footer-contact p {
        margin-bottom: 5px;
        font-size: 0.52rem;
        line-height: 1.28;
        font-weight: 100;
        overflow-wrap: anywhere;
    }

    .site-footer .footer-socials {
        gap: 6px;
        margin-top: 8px;
        flex-wrap: wrap;
    }

    .site-footer .footer-socials a {
        width: 24px;
        height: 24px;
        font-size: 0.68rem;
    }
}

@media (max-width: 380px) {
    .site-footer .footer-shell {
        gap: 15px 10px;
        padding: 15px 12px 16px;
    }

    .site-footer .footer-links h4,
    .site-footer .footer-contact h4 {
        font-size: 0.54rem;
    }

    .site-footer .footer-links a,
    .site-footer .footer-contact a,
    .site-footer .footer-contact p,
    .site-footer .footer-brand small {
        font-size: 0.49rem;
    }
}
/* Global thin typography pass: keep the home Inter family everywhere. */
html,
body,
button,
input,
select,
textarea {
    font-family: 'Inter', sans-serif !important;
}

body,
main,
section,
article,
aside,
nav,
header,
footer,
.card,
.product-card,
.glass-card,
.account-card,
.checkout-card,
.summary-card,
.profile-card,
.kit-card,
.bundle-card,
.category-card,
.featured-card,
.recommendation-card,
.modal,
.modal-content {
    font-weight: 100 !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
small,
strong,
label,
li,
button,
input,
select,
textarea,
.logo,
.brand-name,
.nav-links a,
.mobile-nav a,
.header-actions,
.section-title h2,
.section-title p,
.hero-title,
.hero-subtitle,
.kit-card h3,
.kit-card p,
.category-card h3,
.category-card p,
.product-card h3,
.product-card p,
.card-body h3,
.card-body p,
.current-price,
.old-price,
.price-box,
.btn,
.btn-primary,
.btn-secondary,
.btn-outline,
.footer-links h4,
.footer-links a,
.footer-contact h4,
.footer-contact a,
.footer-contact p {
    font-family: 'Inter', sans-serif !important;
    font-weight: 100 !important;
}

b,
strong,
.bold,
[style*="font-weight: bold"],
[style*="font-weight:bold"],
[style*="font-weight: 400"],
[style*="font-weight:400"],
[style*="font-weight: 600"],
[style*="font-weight:600"],
[style*="font-weight: 700"],
[style*="font-weight:700"],
[style*="font-weight: 900"],
[style*="font-weight:900"] {
    font-weight: 100 !important;
}

.main-header,
.header-container,
.nav-links a,
.brand-name,
.header-actions button,
.header-actions a,
.mobile-menu,
.mobile-menu a {
    font-weight: 100 !important;
}

@media (max-width: 760px) {
    body {
        font-size: 13px !important;
    }

    h1,
    .hero-title {
        font-size: clamp(1.85rem, 8vw, 2.45rem) !important;
        line-height: 1.08 !important;
        font-weight: 100 !important;
    }

    h2,
    .section-title h2,
    .promo-text h3,
    .kit-card h3,
    .category-card h3,
    .bundle-card h3,
    .featured-card h3 {
        font-size: clamp(1.25rem, 5.6vw, 1.85rem) !important;
        line-height: 1.12 !important;
        font-weight: 100 !important;
    }

    h3,
    .card-body h3,
    .product-card h3,
    .account-card h3,
    .summary-card h3 {
        font-size: clamp(0.92rem, 4vw, 1.18rem) !important;
        line-height: 1.18 !important;
        font-weight: 100 !important;
    }

    p,
    a,
    span,
    small,
    li,
    label,
    button,
    input,
    select,
    textarea,
    .section-title p,
    .hero-subtitle,
    .kit-card p,
    .category-card p,
    .bundle-card p,
    .featured-card p,
    .product-card p,
    .card-body p,
    .btn,
    .nav-links a {
        font-size: 0.72rem !important;
        line-height: 1.38 !important;
        font-weight: 100 !important;
    }

    .main-header .brand-name,
    .header-actions,
    .header-actions button,
    .header-actions a {
        font-size: 0.68rem !important;
        font-weight: 100 !important;
    }

    .kit-card,
    .category-card,
    .bundle-card,
    .featured-card {
        font-weight: 100 !important;
    }
}

@media (max-width: 420px) {
    body {
        font-size: 12px !important;
    }

    h1,
    .hero-title {
        font-size: clamp(1.65rem, 8vw, 2.1rem) !important;
    }

    h2,
    .section-title h2,
    .promo-text h3,
    .kit-card h3,
    .category-card h3,
    .bundle-card h3,
    .featured-card h3 {
        font-size: clamp(1.08rem, 5.5vw, 1.55rem) !important;
    }

    p,
    a,
    span,
    small,
    li,
    label,
    button,
    input,
    select,
    textarea,
    .section-title p,
    .hero-subtitle,
    .kit-card p,
    .category-card p,
    .bundle-card p,
    .featured-card p,
    .product-card p,
    .card-body p,
    .btn {
        font-size: 0.66rem !important;
        line-height: 1.34 !important;
        font-weight: 100 !important;
    }
}

/* Brands section: clean rounded feature-card glass, no fade. */
.brands-section {
    width: min(1820px, calc(100vw - 84px)) !important;
    margin: 0 auto 24px !important;
    padding: 78px clamp(22px, 3vw, 54px) 86px !important;
    position: relative !important;
    overflow: hidden !important;
    border-radius: 25px !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.12), 0 15px 45px rgba(0, 0, 0, 0.18) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
}

.brands-section::before,
.brands-section::after {
    display: none !important;
    content: none !important;
}

@media (max-width: 760px) {
    .brands-section {
        width: calc(100vw - 16px) !important;
        margin-bottom: 14px !important;
        padding: 42px 14px 48px !important;
        border-radius: 25px !important;
        -webkit-mask-image: none !important;
        mask-image: none !important;
    }
}

/* Footer shell: match feature-card glass effect. */
.site-footer .footer-shell {
    border-radius: 25px !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.12), 0 15px 45px rgba(0, 0, 0, 0.18) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
}

@media (max-width: 760px) {
    .site-footer .footer-shell {
        border-radius: 25px !important;
    }
}

/* Promo image cards: clickable glass buttons with thin center-out glow. */
.promo-box {
    position: relative !important;
    isolation: isolate !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: flex-end !important;
    color: #ffffff !important;
    text-decoration: none !important;
    cursor: pointer !important;
    border: 1px solid rgba(255, 255, 255, 0.32) !important;
    border-radius: 25px !important;
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.1), 0 15px 45px rgba(0, 0, 0, 0.18) !important;
    outline: 0 !important;
    transform: translateZ(0) !important;
}

.promo-box::before,
.promo-box::after {
    content: '' !important;
    position: absolute !important;
    left: 50% !important;
    right: 50% !important;
    height: 1px !important;
    z-index: 2 !important;
    pointer-events: none !important;
    opacity: 0 !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), rgba(68, 255, 224, 0.9), rgba(255, 255, 255, 0.95), transparent) !important;
    box-shadow: 0 0 10px rgba(68, 255, 224, 0.42) !important;
    transition: left 0.42s ease, right 0.42s ease, opacity 0.24s ease !important;
}

.promo-box::before {
    top: 0 !important;
}

.promo-box::after {
    bottom: 0 !important;
}

.promo-box:hover,
.promo-box:focus-visible {
    transform: translateY(-4px) scale(1.01) !important;
    border-color: rgba(255, 255, 255, 0.58) !important;
    box-shadow: inset 0 0 16px rgba(255, 255, 255, 0.16), 0 18px 54px rgba(0, 0, 0, 0.24), 0 0 18px rgba(68, 255, 224, 0.14) !important;
}

.promo-box:hover::before,
.promo-box:hover::after,
.promo-box:focus-visible::before,
.promo-box:focus-visible::after {
    left: 18px !important;
    right: 18px !important;
    opacity: 1 !important;
}

.promo-box:focus-visible {
    outline: 1px solid rgba(255, 255, 255, 0.78) !important;
    outline-offset: 4px !important;
}

.promo-text {
    position: relative !important;
    z-index: 3 !important;
}

.promo-text h3,
.promo-text p,
.promo-text .btn-link {
    font-weight: 100 !important;
    text-shadow: none !important;
}

/* Ultra-thin rendering pass: visual thinning beyond font-weight: 100. */
html,
body,
button,
input,
select,
textarea,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
small,
strong,
label,
li {
    font-synthesis: none !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    text-rendering: geometricPrecision !important;
    font-variation-settings: 'wght' 100 !important;
    text-shadow: none !important;
}

/* Category images: shared thin white glass frame. */
.category-image-wrapper,
.preferred-category-panel .category-image-wrapper {
    border: 1px solid rgba(255, 255, 255, 0.32) !important;
    border-radius: 25px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.12), 0 15px 45px rgba(0, 0, 0, 0.18) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
}

.category-image-wrapper img,
.preferred-category-panel .category-image-wrapper img {
    border-radius: inherit !important;
}

/* Minimal mobile cleanup: white category controls, compact cards, triangle license tiles. */
.category-btn,
.preferred-category-panel .category-btn {
    border-color: rgba(255, 255, 255, 0.42) !important;
    color: rgba(255, 255, 255, 0.94) !important;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.08), 0 0 10px rgba(255, 255, 255, 0.12) !important;
    animation: none !important;
}

.category-btn:hover,
.category-btn:focus-visible,
.preferred-category-panel .category-btn:hover,
.preferred-category-panel .category-btn:focus-visible {
    border-color: rgba(255, 255, 255, 0.78) !important;
    color: #ffffff !important;
    box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.16), 0 0 16px rgba(255, 255, 255, 0.24) !important;
    animation: none !important;
    transform: translateY(-1px) !important;
}

.category-btn::after,
.preferred-category-panel .category-btn::after {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent) !important;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2) !important;
}

@media (max-width: 760px) {
    .section-title {
        width: min(100%, 360px) !important;
        margin: 0 auto 18px !important;
    }

    .section-title h2,
    .preferred-category-panel .section-title h2,
    .procurement-scroll-stage .procurement-copy h2,
    .procurement-scroll-stage .license-promo-copy h2 {
        font-size: clamp(1rem, 5vw, 1.42rem) !important;
        line-height: 1.08 !important;
    }

    .section-title p,
    .preferred-category-panel .section-title p,
    .procurement-scroll-stage .procurement-copy p,
    .procurement-scroll-stage .license-promo-copy p,
    .category-content p,
    .feature-card p {
        font-size: 0.58rem !important;
        line-height: 1.28 !important;
    }

    .preferred-category-panel,
    .features,
    .brands-section,
    .procurement-scroll-stage {
        width: min(100% - 28px, 390px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .preferred-category-panel .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .preferred-category-panel .category-card,
    .category-card {
        height: 190px !important;
        min-height: 0 !important;
        border-radius: 16px !important;
    }

    .preferred-category-panel .category-image-wrapper,
    .category-image-wrapper {
        border-radius: 16px !important;
    }

    .preferred-category-panel .category-content,
    .category-content {
        min-height: 78px !important;
        padding: 10px !important;
    }

    .preferred-category-panel .category-content h3,
    .category-content h3 {
        font-size: 0.76rem !important;
        line-height: 1.08 !important;
        margin-bottom: 4px !important;
    }

    .preferred-category-panel .category-btn,
    .category-btn {
        padding: 6px 9px !important;
        font-size: 0.52rem !important;
        border-radius: 999px !important;
    }

    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .feature-card {
        min-height: 128px !important;
        padding: 14px 12px !important;
        border-radius: 16px !important;
    }

    .feature-card h3 {
        font-size: 0.72rem !important;
        line-height: 1.12 !important;
        margin-bottom: 8px !important;
    }

    .feature-card .icon-box,
    .icon-box {
        margin-bottom: 10px !important;
        font-size: 1.15rem !important;
    }

    .brands-section {
        padding: 28px 18px 30px !important;
        border-radius: 20px !important;
    }

    .brands-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 75px) !important;
        justify-content: center !important;
        gap: 10px !important;
    }

    .brand-card {
        width: 75px !important;
        height: 75px !important;
        border-radius: 12px !important;
    }

    .brand-image {
        padding: 10px !important;
    }

    .procurement-scroll-stage .procurement-command,
    .procurement-scroll-stage .license-promo-strip {
        width: min(100%, 390px) !important;
        padding: 14px !important;
    }

    .procurement-scroll-stage .procurement-paths,
    .procurement-scroll-stage .license-promo-items {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
        align-items: stretch !important;
    }

    .procurement-scroll-stage .procurement-path,
    .procurement-scroll-stage .license-promo-items a {
        min-height: 58px !important;
        padding: 10px 11px !important;
        border-radius: 10px !important;
        font-size: 0.56rem !important;
    }

    .procurement-scroll-stage .procurement-path:nth-child(3),
    .procurement-scroll-stage .license-promo-items a:nth-child(3) {
        grid-column: 1 / -1 !important;
        width: calc(50% - 5px) !important;
        justify-self: center !important;
    }

    .procurement-scroll-stage .procurement-path i,
    .procurement-scroll-stage .license-promo-items i {
        font-size: 0.95rem !important;
    }
}

@media (max-width: 420px) {
    .preferred-category-panel,
    .features,
    .brands-section,
    .procurement-scroll-stage {
        width: min(100% - 22px, 372px) !important;
    }

    .preferred-category-panel .category-grid {
        gap: 8px !important;
    }

    .preferred-category-panel .category-card,
    .category-card {
        height: 174px !important;
    }

    .feature-card {
        min-height: 116px !important;
        padding: 12px 10px !important;
    }

    .brands-grid {
        grid-template-columns: repeat(3, 70px) !important;
        gap: 9px !important;
    }

    .brand-card {
        width: 70px !important;
        height: 70px !important;
    }
}

/* Phone categories: restore size and use horizontal service-style rail. */
@media (max-width: 760px) {
    .preferred-category-panel {
        width: 100% !important;
        max-width: none !important;
        overflow: hidden !important;
        position: relative !important;
        padding: 0 !important;
    }

    .preferred-category-panel .section-title {
        width: min(100% - 48px, 360px) !important;
        margin: 0 auto 18px !important;
        text-align: center !important;
    }

    .preferred-category-panel .category-grid {
        display: grid !important;
        grid-auto-flow: column !important;
        grid-auto-columns: minmax(300px, 82vw) !important;
        grid-template-columns: none !important;
        gap: 16px !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 34px 14px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        scroll-padding-inline: 34px !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: thin !important;
        scrollbar-color: rgba(255, 255, 255, 0.55) rgba(255, 255, 255, 0.08) !important;
    }

    .preferred-category-panel .category-grid::-webkit-scrollbar {
        height: 3px !important;
    }

    .preferred-category-panel .category-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.08) !important;
        border-radius: 999px !important;
    }

    .preferred-category-panel .category-grid::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.62) !important;
        border-radius: 999px !important;
    }

    .preferred-category-panel::before,
    .preferred-category-panel::after {
        content: '' !important;
        position: absolute !important;
        top: 90px !important;
        bottom: 12px !important;
        width: 34px !important;
        z-index: 5 !important;
        pointer-events: none !important;
    }

    .preferred-category-panel::before {
        left: 0 !important;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent) !important;
    }

    .preferred-category-panel::after {
        right: 0 !important;
        background: linear-gradient(270deg, rgba(0, 0, 0, 0.72), transparent) !important;
    }

    .preferred-category-panel .category-card {
        width: auto !important;
        height: 360px !important;
        min-height: 360px !important;
        border-radius: 22px !important;
        scroll-snap-align: center !important;
    }

    .preferred-category-panel .category-image-wrapper {
        height: 100% !important;
        min-height: 0 !important;
        border-radius: 22px !important;
    }

    .preferred-category-panel .category-content,
    .preferred-category-panel .category-content.liquid-glass-card {
        position: absolute !important;
        inset: auto 0 0 0 !important;
        min-height: 138px !important;
        max-width: none !important;
        padding: 20px 18px !important;
    }

    .preferred-category-panel .category-content h3 {
        font-size: 1rem !important;
        line-height: 1.12 !important;
        margin-bottom: 7px !important;
    }

    .preferred-category-panel .category-content p {
        font-size: 0.66rem !important;
        line-height: 1.34 !important;
        margin-bottom: 10px !important;
    }

    .preferred-category-panel .category-btn {
        padding: 8px 13px !important;
        font-size: 0.62rem !important;
        border-radius: 999px !important;
    }
}

@media (max-width: 420px) {
    .preferred-category-panel .category-grid {
        grid-auto-columns: minmax(286px, 82vw) !important;
        gap: 14px !important;
        padding-inline: 28px !important;
        scroll-padding-inline: 28px !important;
    }

    .preferred-category-panel .category-card {
        height: 340px !important;
        min-height: 340px !important;
    }
}

/* Phone categories v2: full-bleed product-style carousel with bottom line indicators. */
@media (max-width: 760px) {
    .preferred-category-panel {
        width: 100vw !important;
        max-width: none !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        padding: 0 0 18px !important;
        overflow: hidden !important;
        position: relative !important;
    }

    .preferred-category-panel::before {
        display: none !important;
        content: none !important;
    }

    .preferred-category-panel::after {
        content: '' !important;
        position: absolute !important;
        left: 50% !important;
        right: auto !important;
        top: auto !important;
        bottom: 2px !important;
        width: 152px !important;
        height: 3px !important;
        transform: translateX(-50%) !important;
        pointer-events: none !important;
        border-radius: 999px !important;
        background:
            linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0 22px, transparent 22px 28px),
            repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.34) 0 16px, transparent 16px 26px) !important;
        box-shadow: none !important;
        opacity: 1 !important;
    }

    .preferred-category-panel .section-title {
        width: min(100% - 34px, 380px) !important;
        margin: 0 auto 16px !important;
        text-align: center !important;
    }

    .preferred-category-panel .category-grid {
        display: grid !important;
        grid-auto-flow: column !important;
        grid-auto-columns: minmax(290px, 78vw) !important;
        grid-template-columns: none !important;
        gap: 14px !important;
        width: 100vw !important;
        margin: 0 !important;
        padding: 0 22px 18px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        scroll-padding-inline: 22px !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
    }

    .preferred-category-panel .category-grid::-webkit-scrollbar {
        display: none !important;
    }

    .preferred-category-panel .category-card {
        width: auto !important;
        height: auto !important;
        min-height: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        border-radius: 18px !important;
        overflow: visible !important;
        scroll-snap-align: center !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .preferred-category-panel .category-image-wrapper {
        position: relative !important;
        inset: auto !important;
        order: 1 !important;
        width: 100% !important;
        height: 168px !important;
        min-height: 168px !important;
        border-radius: 18px 18px 0 0 !important;
        overflow: hidden !important;
        border: 1px solid rgba(255, 255, 255, 0.32) !important;
        border-bottom: 0 !important;
        background: rgba(255, 255, 255, 0.08) !important;
        box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.12) !important;
    }

    .preferred-category-panel .category-image-wrapper img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: inherit !important;
    }

    .preferred-category-panel .category-content,
    .preferred-category-panel .category-content.liquid-glass-card {
        position: relative !important;
        inset: auto !important;
        order: 2 !important;
        width: 100% !important;
        min-height: 118px !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 14px 16px 16px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        border-radius: 0 0 18px 18px !important;
        border: 1px solid rgba(255, 255, 255, 0.32) !important;
        border-top: 0 !important;
        background: rgba(255, 255, 255, 0.08) !important;
        backdrop-filter: blur(18px) !important;
        -webkit-backdrop-filter: blur(18px) !important;
        box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.12), 0 12px 34px rgba(0, 0, 0, 0.18) !important;
    }

    .preferred-category-panel .category-content h3 {
        margin: 0 0 6px !important;
        font-size: 0.86rem !important;
        line-height: 1.12 !important;
    }

    .preferred-category-panel .category-content p {
        margin: 0 0 10px !important;
        font-size: 0.6rem !important;
        line-height: 1.32 !important;
    }

    .preferred-category-panel .category-btn {
        width: fit-content !important;
        margin-top: auto !important;
        padding: 7px 12px !important;
        font-size: 0.56rem !important;
        border-radius: 999px !important;
    }
}

@media (max-width: 420px) {
    .preferred-category-panel .category-grid {
        grid-auto-columns: minmax(270px, 78vw) !important;
        gap: 12px !important;
        padding-inline: 18px !important;
        scroll-padding-inline: 18px !important;
    }

    .preferred-category-panel .category-image-wrapper {
        height: 150px !important;
        min-height: 150px !important;
    }

    .preferred-category-panel .category-content,
    .preferred-category-panel .category-content.liquid-glass-card {
        min-height: 112px !important;
        padding: 13px 14px 15px !important;
    }
}

/* Phone polish: equal product cards, clean category carousel indicators and aligned content. */
.preferred-category-panel .category-btn::after {
    content: none !important;
    display: none !important;
}

@media (max-width: 760px) {
    .featured-products {
        width: 100vw !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        padding: 42px 0 52px !important;
        overflow: hidden !important;
    }

    .featured-products .section-title {
        width: min(100% - 30px, 380px) !important;
        margin: 0 auto 22px !important;
    }

    .featured-product-carousel {
        --featured-gap: 8px !important;
        --featured-card-width: calc((100vw - 40px) / 3) !important;
        width: 100vw !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 12px !important;
        overflow: hidden !important;
    }

    .featured-carousel-track {
        gap: var(--featured-gap) !important;
        align-items: stretch !important;
    }

    .featured-product-carousel .product-card,
    .featured-carousel-card {
        flex: 0 0 var(--featured-card-width) !important;
        width: var(--featured-card-width) !important;
        min-width: var(--featured-card-width) !important;
        height: 240px !important;
        min-height: 240px !important;
        display: flex !important;
        flex-direction: column !important;
        overflow: hidden !important;
        border-radius: 8px !important;
    }

    .featured-carousel-card .card-head {
        flex: 0 0 106px !important;
        height: 106px !important;
        min-height: 106px !important;
        margin: 0 !important;
        padding: 9px !important;
        border-radius: 8px 8px 0 0 !important;
        border-bottom: 0 !important;
    }

    .featured-carousel-card .card-head img {
        max-height: 68px !important;
        max-width: 80% !important;
    }

    .featured-carousel-card .card-body {
        flex: 1 1 auto !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 8px 7px 9px !important;
        display: flex !important;
        flex-direction: column !important;
        border-radius: 0 0 8px 8px !important;
        border-top: 0 !important;
    }

    .featured-carousel-card .product-meta {
        min-height: 19px !important;
        margin-bottom: 5px !important;
    }

    .featured-carousel-card .product-title,
    .featured-carousel-card .card-body h3 {
        min-height: 2.4em !important;
        margin: 0 0 5px !important;
        font-size: 0.55rem !important;
        line-height: 1.2 !important;
    }

    .featured-carousel-card .price-box {
        margin-top: auto !important;
        margin-bottom: 7px !important;
    }

    .featured-carousel-card .current-price {
        font-size: 0.66rem !important;
    }

    .featured-carousel-card .btn-view-details {
        width: 100% !important;
        min-height: 24px !important;
        padding: 5px 4px !important;
        font-size: 0.5rem !important;
        border-radius: 999px !important;
    }

    .features-action {
        margin-top: 24px !important;
    }

    .features-action .btn,
    .features-action .btn-primary {
        padding: 10px 18px !important;
        font-size: 0.62rem !important;
        border-radius: 999px !important;
    }

    .preferred-category-panel .badge-pill {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-bottom: 8px !important;
    }

    .preferred-category-panel::after {
        width: 154px !important;
        height: 3px !important;
        background:
            linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0 18px, transparent 18px 26px),
            repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.34) 0 18px, transparent 18px 26px) !important;
    }

    .preferred-category-panel .category-card {
        height: auto !important;
        min-height: 0 !important;
    }

    .preferred-category-panel .category-image-wrapper {
        height: 158px !important;
        min-height: 158px !important;
        border-radius: 18px 18px 0 0 !important;
    }

    .preferred-category-panel .category-content,
    .preferred-category-panel .category-content.liquid-glass-card {
        min-height: 142px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        border-radius: 0 0 18px 18px !important;
        padding: 14px 16px 15px !important;
    }

    .preferred-category-panel .category-kicker {
        min-height: 14px !important;
        margin-bottom: 5px !important;
        font-size: 0.54rem !important;
    }

    .preferred-category-panel .category-content h3 {
        min-height: 2.2em !important;
        margin: 0 0 6px !important;
        display: flex !important;
        align-items: flex-start !important;
    }

    .preferred-category-panel .category-content p {
        min-height: 2.65em !important;
        margin: 0 0 10px !important;
    }

    .preferred-category-panel .category-btn {
        margin-top: auto !important;
        min-height: 30px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        line-height: 1 !important;
        white-space: nowrap !important;
    }
}

@media (max-width: 420px) {
    .featured-product-carousel {
        --featured-gap: 7px !important;
        --featured-card-width: calc((100vw - 34px) / 3) !important;
        padding-inline: 10px !important;
    }

    .featured-product-carousel .product-card,
    .featured-carousel-card {
        height: 230px !important;
        min-height: 230px !important;
    }

    .featured-carousel-card .card-head {
        flex-basis: 100px !important;
        height: 100px !important;
        min-height: 100px !important;
    }

    .preferred-category-panel .category-image-wrapper {
        height: 148px !important;
        min-height: 148px !important;
    }

    .preferred-category-panel .category-content,
    .preferred-category-panel .category-content.liquid-glass-card {
        min-height: 138px !important;
    }
}

/* Phone category card reset: joined image and liquid-glass body. */
@media (max-width: 768px) {
    .preferred-category-panel .category-grid {
        align-items: stretch !important;
    }

    .preferred-category-panel .category-card {
        display: grid !important;
        grid-template-rows: auto 1fr !important;
        gap: 0 !important;
        height: auto !important;
        min-height: 0 !important;
        overflow: visible !important;
    }

    .preferred-category-panel .category-image-wrapper {
        position: relative !important;
        z-index: 1 !important;
        width: 100% !important;
        height: 160px !important;
        min-height: 160px !important;
        margin: 0 !important;
        border-radius: 18px !important;
        border: 1px solid rgba(255, 255, 255, 0.58) !important;
        overflow: hidden !important;
    }

    .preferred-category-panel .category-image-wrapper img {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        border-radius: inherit !important;
        object-fit: cover !important;
    }

    .preferred-category-panel .category-content,
    .preferred-category-panel .category-content.liquid-glass-card {
        position: relative !important;
        z-index: 2 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        width: 100% !important;
        min-height: 146px !important;
        margin: -18px 0 0 !important;
        padding: 29px 16px 15px !important;
        border-radius: 0 0 18px 18px !important;
        border: 1px solid rgba(255, 255, 255, 0.46) !important;
        border-top: 0 !important;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045)) !important;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 14px 30px rgba(0, 0, 0, 0.26) !important;
        backdrop-filter: blur(18px) saturate(130%) !important;
        -webkit-backdrop-filter: blur(18px) saturate(130%) !important;
    }

    .preferred-category-panel .category-content:not(:has(.category-kicker))::before {
        content: "" !important;
        display: block !important;
        flex: 0 0 14px !important;
        width: 100% !important;
        margin-bottom: 5px !important;
    }

    .preferred-category-panel .category-kicker {
        display: block !important;
        flex: 0 0 14px !important;
        min-height: 14px !important;
        margin: 0 0 5px !important;
        line-height: 1 !important;
    }

    .preferred-category-panel .category-content h3 {
        min-height: 2.2em !important;
        margin: 0 0 6px !important;
    }

    .preferred-category-panel .category-content p {
        min-height: 2.65em !important;
        margin: 0 0 10px !important;
    }

    .preferred-category-panel .category-btn {
        margin-top: auto !important;
    }

    .preferred-category-panel::after {
        width: 144px !important;
        height: 3px !important;
        background: repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.62) 0 16px,
            transparent 16px 24px
        ) !important;
    }
}

@media (max-width: 420px) {
    .preferred-category-panel .category-image-wrapper {
        height: 150px !important;
        min-height: 150px !important;
    }

    .preferred-category-panel .category-content,
    .preferred-category-panel .category-content.liquid-glass-card {
        min-height: 142px !important;
        padding: 28px 15px 14px !important;
    }
}

/* Phone category cards: keep image and glass joined without glass overlapping the image. */
@media (max-width: 768px) {
    .preferred-category-panel .category-card {
        gap: 0 !important;
        overflow: hidden !important;
        border-radius: 18px !important;
    }

    .preferred-category-panel .category-image-wrapper {
        margin: 0 !important;
        border-radius: 18px 18px 0 0 !important;
        border-bottom: 0 !important;
    }

    .preferred-category-panel .category-image-wrapper img {
        border-radius: 18px 18px 0 0 !important;
    }

    .preferred-category-panel .category-content,
    .preferred-category-panel .category-content.liquid-glass-card {
        margin: 0 !important;
        padding: 16px 16px 15px !important;
        border-radius: 0 0 18px 18px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.28) !important;
    }

    .preferred-category-panel .category-content:not(:has(.category-kicker))::before {
        flex-basis: 14px !important;
        min-height: 14px !important;
        margin-bottom: 5px !important;
    }

    .preferred-category-panel .category-kicker {
        flex-basis: 14px !important;
        min-height: 14px !important;
        margin-bottom: 5px !important;
    }
}

@media (max-width: 420px) {
    .preferred-category-panel .category-content,
    .preferred-category-panel .category-content.liquid-glass-card {
        padding: 15px 15px 14px !important;
    }
}

/* Procurement and license strip accents: keep pointed icons/labels white. */
.procurement-scroll-stage .procurement-path i,
.procurement-scroll-stage .license-promo-items i,
.procurement-scroll-stage .license-promo-copy span,
.procurement-scroll-stage .license-promo-items a i,
.procurement-command .procurement-path i,
.license-promo-strip .license-promo-copy span,
.license-promo-strip .license-promo-items i {
    color: #ffffff !important;
    text-shadow: none !important;
}

.procurement-scroll-stage .procurement-path:hover,
.procurement-scroll-stage .license-promo-items a:hover,
.procurement-command .procurement-path:hover,
.license-promo-strip .license-promo-items a:hover {
    border-color: rgba(255, 255, 255, 0.58) !important;
    background: rgba(255, 255, 255, 0.12) !important;
}

/* Store mobile cleanup: keep outcome closed last and keep Featured menu inside phone width. */
@media (max-width: 768px) {
    body.store-page .filter-groups .outcome-filter-label {
        margin-top: 18px !important;
    }

    body.store-page .onboarding-category-tree .onboarding-category-btn:not(.expanded) + .onboarding-submenu {
        display: none !important;
        max-height: 0 !important;
        opacity: 0 !important;
        overflow: hidden !important;
    }

    body.store-page .search-sort-bar {
        width: 100% !important;
        max-width: 100% !important;
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto !important;
        align-items: center !important;
        gap: 8px !important;
        padding: 0 8px !important;
        margin-inline: auto !important;
        overflow: visible !important;
    }

    body.store-page .search-box {
        min-width: 0 !important;
        width: 100% !important;
        max-width: none !important;
    }

    body.store-page .custom-dropdown {
        position: relative !important;
        width: auto !important;
        min-width: 0 !important;
        max-width: 132px !important;
        justify-self: end !important;
        overflow: visible !important;
        z-index: 80 !important;
    }

    body.store-page .sort-dropdown {
        width: auto !important;
        max-width: 132px !important;
        min-width: 0 !important;
        height: 38px !important;
        padding: 0 26px 0 13px !important;
        border-radius: 999px !important;
        font-size: 0.56rem !important;
        line-height: 1 !important;
        overflow: hidden !important;
    }

    body.store-page .sort-dropdown #selectedOption,
    body.store-page .sort-dropdown span {
        max-width: 72px !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
        font-size: 0.56rem !important;
    }

    body.store-page .sort-dropdown i {
        position: absolute !important;
        right: 10px !important;
        margin-left: 0 !important;
    }

    body.store-page .dropdown-menu {
        position: absolute !important;
        top: calc(100% + 7px) !important;
        left: auto !important;
        right: 0 !important;
        width: 176px !important;
        min-width: 176px !important;
        max-width: calc(100vw - 20px) !important;
        margin-top: 0 !important;
        transform: none !important;
        z-index: 1000 !important;
        overflow: hidden !important;
        border-radius: 18px !important;
    }

    body.store-page .dropdown-option {
        padding: 11px 14px !important;
        font-size: 0.58rem !important;
        line-height: 1.2 !important;
        white-space: normal !important;
    }
}

@media (max-width: 420px) {
    body.store-page .search-sort-bar {
        padding: 0 6px !important;
        gap: 7px !important;
    }

    body.store-page .custom-dropdown,
    body.store-page .sort-dropdown {
        max-width: 118px !important;
    }

    body.store-page .dropdown-menu {
        width: 164px !important;
        min-width: 164px !important;
    }
}

/* Cart responsive polish: phone/tablet scale, summary priority, and clean recommendation rail. */
body:has(.cart-container) {
    overflow-x: hidden;
}

.cart-container,
.cart-layout,
.cart-items-wrapper,
.cart-summary,
.recommendation-slot--cart {
    min-width: 0;
}

.cart-summary {
    min-width: 0;
}

.cart-layout > .recommendation-slot--cart {
    grid-column: 1 / 2;
    grid-row: 2;
    width: 100%;
    max-width: 100%;
    margin: 18px 0 0;
}

@media (max-width: 1180px) {
    .cart-container {
        width: 100%;
        padding: 112px clamp(14px, 3vw, 28px) 46px;
    }

    .cart-items-heading {
        position: static !important;
        top: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        padding-inline: 0 !important;
    }

    .cart-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
        width: 100%;
        max-width: 920px;
        margin-top: 24px;
    }

    .cart-items-wrapper {
        order: 1;
    }

    .cart-summary {
        order: 2;
        width: 100%;
    }

    .cart-layout > .recommendation-slot--cart {
        order: 3;
        grid-column: 1;
        grid-row: auto;
    }

    .summary-card {
        position: relative !important;
        top: auto !important;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .cart-container {
        padding: 104px 10px 34px;
    }

    .cart-items-heading h2,
    .cart-items-heading h2[style] {
        font-size: 1.55rem !important;
        line-height: 1.08 !important;
        margin: 0 0 18px !important;
    }

    #duoInfoBanner,
    #duoInfoBanner > div {
        width: 100% !important;
        max-width: 100% !important;
        margin-inline: 0 !important;
    }

    .cart-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 12px !important;
    }

    .cart-items-wrapper {
        order: 1 !important;
        width: 100% !important;
    }

    .cart-summary {
        order: 2 !important;
        width: 100% !important;
    }

    .cart-layout > .recommendation-slot--cart {
        order: 3 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 6px !important;
    }

    .cart-item-card {
        display: grid !important;
        grid-template-columns: 92px minmax(0, 1fr) !important;
        width: 100% !important;
        margin-bottom: 12px !important;
        border-radius: 16px !important;
        overflow: hidden !important;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24) !important;
    }

    .cart-item-card .item-img-container {
        width: 92px !important;
        min-width: 92px !important;
        padding: 12px !important;
        border-radius: 16px 0 0 16px !important;
    }

    .cart-item-card img,
    .cart-item-card .item-img-container img,
    .cart-item-card img[style] {
        width: 68px !important;
        height: 68px !important;
        max-width: 68px !important;
        object-fit: contain !important;
    }

    .cart-item-details {
        min-width: 0 !important;
        width: 100% !important;
        padding: 12px 10px 12px 13px !important;
        border-radius: 0 16px 16px 0 !important;
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto !important;
        grid-template-areas: "info remove" "qty qty" !important;
        align-items: start !important;
        gap: 8px !important;
    }

    .cart-item-details .item-info {
        grid-area: info;
        min-width: 0 !important;
    }

    .cart-item-details .item-info h4 {
        font-size: 0.84rem !important;
        line-height: 1.18 !important;
        margin-bottom: 4px !important;
        overflow-wrap: anywhere !important;
    }

    .cart-item-details .item-info p {
        font-size: 0.62rem !important;
        line-height: 1.32 !important;
        margin-bottom: 4px !important;
    }

    .cart-item-details .item-price {
        font-size: 0.74rem !important;
    }

    .cart-item-details .qty-controls,
    .cart-item-details .qty-controls[style] {
        grid-area: qty;
        justify-self: start;
        max-width: 100%;
        padding: 4px 8px !important;
        gap: 7px !important;
        font-size: 0.66rem !important;
    }

    .cart-item-details .qty-controls button,
    .cart-item-details .qty-controls button[style] {
        font-size: 0.9rem !important;
        padding: 1px 5px !important;
        color: #ffffff !important;
    }

    .cart-item-details .remove-btn,
    .cart-item-details .remove-btn[style] {
        grid-area: remove;
        width: 30px !important;
        height: 30px !important;
        padding: 5px !important;
        font-size: 1rem !important;
        justify-self: end !important;
    }

    .summary-card,
    .secure-checkout,
    .secure-checkout[style] {
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px !important;
        border-radius: 18px !important;
    }

    .summary-card h3,
    .summary-card h3[style] {
        font-size: 1rem !important;
        margin-bottom: 14px !important;
    }

    .summary-row,
    .summary-card .summary-row {
        font-size: 0.74rem !important;
        margin: 10px 0 !important;
    }

    .btn-checkout {
        min-height: 42px !important;
        padding: 10px 16px !important;
        font-size: 0.74rem !important;
        box-shadow: none !important;
        animation: none !important;
    }

    .secure-checkout .secure-item {
        font-size: 0.68rem !important;
        gap: 8px !important;
    }

    .secure-checkout .payment-icons {
        flex-wrap: wrap !important;
        gap: 7px !important;
    }

    .secure-checkout .payment-icons img {
        width: 26px !important;
    }

    .recommendation-slot--cart .recommendation-heading {
        padding-inline: 0 !important;
    }

    .recommendation-slot--cart .recommendation-grid {
        display: flex !important;
        gap: 10px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        padding: 0 0 8px !important;
        width: 100% !important;
        max-width: 100% !important;
        scrollbar-width: none !important;
    }

    .recommendation-slot--cart .recommendation-grid::-webkit-scrollbar {
        display: none !important;
    }

    .recommendation-slot--cart .recommendation-card {
        flex: 0 0 min(72vw, 230px) !important;
        width: min(72vw, 230px) !important;
        grid-template-rows: 96px 1fr !important;
        border-radius: 14px !important;
        scroll-snap-align: start !important;
    }

    .recommendation-slot--cart .recommendation-image {
        padding: 10px !important;
    }

    .recommendation-slot--cart .recommendation-image img {
        max-height: 74px !important;
    }

    .recommendation-slot--cart .recommendation-copy {
        padding: 10px !important;
        gap: 6px !important;
    }

    .recommendation-slot--cart .recommendation-copy a {
        font-size: 0.68rem !important;
    }

    .recommendation-slot--cart .recommendation-copy p,
    .recommendation-slot--cart .recommendation-copy span {
        font-size: 0.58rem !important;
    }

    .recommendation-slot--cart .recommendation-bottom {
        gap: 6px !important;
    }

    .recommendation-slot--cart .recommendation-add {
        min-height: 30px !important;
        padding: 5px 9px !important;
        font-size: 0.6rem !important;
    }
}

@media (max-width: 420px) {
    .cart-container {
        padding-inline: 8px;
    }

    .cart-item-card {
        grid-template-columns: 88px minmax(0, 1fr) !important;
    }

    .cart-item-card .item-img-container {
        width: 88px !important;
        min-width: 88px !important;
        padding: 10px !important;
    }

    .cart-item-card img,
    .cart-item-card .item-img-container img,
    .cart-item-card img[style] {
        width: 62px !important;
        height: 62px !important;
    }

    .cart-item-details {
        padding: 11px 9px 11px 11px !important;
    }

    .recommendation-slot--cart .recommendation-card {
        flex-basis: min(68vw, 220px) !important;
        width: min(68vw, 220px) !important;
    }
}

/* Wishlist phone cleanup: compact cards and circular actions. */
@media (max-width: 560px) {
    .wishlist-page {
        padding: 108px 14px 42px;
    }

    .wishlist-page-heading {
        margin-bottom: 14px;
    }

    .wishlist-page-heading span {
        font-size: 0.58rem;
        font-weight: 100;
        letter-spacing: 0.06em;
        padding: 6px 13px;
    }

    .wishlist-page-heading h1 {
        font-size: 1.25rem !important;
        line-height: 1.08 !important;
        font-weight: 100 !important;
        letter-spacing: 0 !important;
    }

    .wishlist-item-card {
        position: relative;
        grid-template-columns: 96px minmax(0, 1fr);
        min-height: 128px;
        height: 128px;
        margin-bottom: 12px;
        border-radius: 18px;
        overflow: hidden;
    }

    .wishlist-image-box {
        width: 96px;
        min-height: 128px;
        height: 128px;
        padding: 10px;
        border-radius: 18px 0 0 18px;
    }

    .wishlist-image-box img {
        max-width: 78px;
        height: 78px;
    }

    .wishlist-copy {
        min-height: 128px;
        padding: 18px 54px 40px 14px;
        gap: 5px;
        justify-content: flex-start;
    }

    .wishlist-kicker {
        font-size: 0.58rem;
        letter-spacing: 0.06em;
    }

    .wishlist-title {
        font-size: 0.68rem;
        line-height: 1.22;
        font-weight: 100;
        -webkit-line-clamp: 2;
    }

    .wishlist-copy strong {
        font-size: 0.92rem;
        font-weight: 100;
        line-height: 1.1;
    }

    .wishlist-specs,
    .wishlist-short-description {
        display: none;
    }

    .wishlist-actions {
        position: absolute;
        right: 14px;
        bottom: 14px;
        grid-column: auto;
        min-width: 0;
        padding: 0;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .wishlist-actions .btn-primary {
        flex: 0 0 34px;
        width: 34px;
        min-width: 34px;
        height: 34px;
        min-height: 34px;
        padding: 0 !important;
        border-radius: 999px !important;
        font-size: 0.98rem;
        gap: 0;
    }

    .wishlist-actions .btn-primary span {
        display: none;
    }

    .wishlist-actions .btn-primary i {
        margin: 0;
    }

    .wishlist-delete-btn {
        width: 34px;
        height: 34px;
        font-size: 0.84rem;
    }
}

/* Wishlist mobile hard override: keep cards photo-height and actions circular. */
@media (max-width: 768px) {
    .wishlist-page .wishlist-page-heading h1 {
        font-size: 1.22rem !important;
        line-height: 1.08 !important;
        font-weight: 100 !important;
        letter-spacing: 0 !important;
    }

    .wishlist-page .wishlist-item-card {
        position: relative !important;
        display: grid !important;
        grid-template-columns: 96px minmax(0, 1fr) !important;
        grid-template-rows: 128px !important;
        height: 128px !important;
        min-height: 128px !important;
        max-height: 128px !important;
        gap: 0 !important;
        margin-bottom: 12px !important;
        border-radius: 18px !important;
        overflow: hidden !important;
    }

    .wishlist-page .wishlist-image-box {
        grid-column: 1 !important;
        grid-row: 1 !important;
        width: 96px !important;
        min-width: 96px !important;
        max-width: 96px !important;
        height: 128px !important;
        min-height: 128px !important;
        max-height: 128px !important;
        padding: 10px !important;
        border-radius: 18px 0 0 18px !important;
    }

    .wishlist-page .wishlist-image-box img {
        width: 76px !important;
        max-width: 76px !important;
        height: 76px !important;
        max-height: 76px !important;
        object-fit: contain !important;
    }

    .wishlist-page .wishlist-copy {
        grid-column: 2 !important;
        grid-row: 1 !important;
        min-width: 0 !important;
        height: 128px !important;
        min-height: 128px !important;
        padding: 18px 94px 18px 14px !important;
        gap: 5px !important;
        justify-content: flex-start !important;
        overflow: hidden !important;
    }

    .wishlist-page .wishlist-kicker {
        font-size: 0.56rem !important;
        line-height: 1 !important;
        letter-spacing: 0.06em !important;
    }

    .wishlist-page .wishlist-title {
        max-width: 100% !important;
        font-size: 0.64rem !important;
        line-height: 1.2 !important;
        font-weight: 100 !important;
        -webkit-line-clamp: 2 !important;
    }

    .wishlist-page .wishlist-copy strong {
        font-size: 0.9rem !important;
        line-height: 1 !important;
        font-weight: 100 !important;
    }

    .wishlist-page .wishlist-specs,
    .wishlist-page .wishlist-short-description {
        display: none !important;
    }

    .wishlist-page .wishlist-actions {
        position: absolute !important;
        right: 13px !important;
        bottom: 13px !important;
        grid-column: auto !important;
        grid-row: auto !important;
        min-width: 0 !important;
        width: auto !important;
        height: 34px !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 8px !important;
        z-index: 5 !important;
    }

    .wishlist-page .wishlist-actions .btn.btn-primary.btn-add-to-cart {
        flex: 0 0 34px !important;
        width: 34px !important;
        min-width: 34px !important;
        max-width: 34px !important;
        height: 34px !important;
        min-height: 34px !important;
        max-height: 34px !important;
        padding: 0 !important;
        border-radius: 999px !important;
        display: inline-grid !important;
        place-items: center !important;
        gap: 0 !important;
        font-size: 0.96rem !important;
        line-height: 1 !important;
    }

    .wishlist-page .wishlist-actions .btn.btn-primary.btn-add-to-cart span {
        display: none !important;
    }

    .wishlist-page .wishlist-actions .btn.btn-primary.btn-add-to-cart i {
        margin: 0 !important;
        font-size: 0.96rem !important;
        line-height: 1 !important;
    }

    .wishlist-page .wishlist-delete-btn {
        flex: 0 0 34px !important;
        width: 34px !important;
        min-width: 34px !important;
        height: 34px !important;
        min-height: 34px !important;
        padding: 0 !important;
        font-size: 0.82rem !important;
    }
}
