/* ─── NANO SIGN LIQUID GLASS & LIGHT THEME STYLES ────────────────────────── */

:root {
    /* Lighter Palette */
    --bg-light: #f8fafc;
    --bg-mesh-1: rgba(0, 198, 251, 0.08); /* Light Blue mesh */
    --bg-mesh-2: rgba(255, 0, 127, 0.06);   /* Pink mesh */
    --bg-mesh-3: rgba(157, 78, 221, 0.05);  /* Purple mesh */
    
    /* Transparent White Glass */
    --glass-bg: rgba(255, 255, 255, 0.45);
    --glass-bg-hover: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.55);
    --glass-border-hover: rgba(255, 255, 255, 0.8);
    --glass-shadow: 0 10px 30px rgba(31, 38, 135, 0.04);
    --glass-shadow-hover: 0 15px 35px rgba(31, 38, 135, 0.08);
    
    /* Neon Accents (used for lighting states) */
    --neon-cyan: #00c6fb;
    --neon-pink: #ff007f;
    --neon-purple: #9d4edd;
    
    /* Light Theme Typography */
    --text-primary: #1e1b4b;   /* Deep Slate/Indigo */
    --text-secondary: #475569; /* Soft Charcoal */
    --text-muted: #64748b;
    
    --blur-amount: 25px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-primary);
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    line-height: 1.6;
    background: 
        radial-gradient(circle at 10% 20%, var(--bg-mesh-1) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, var(--bg-mesh-2) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, var(--bg-mesh-3) 0%, transparent 50%),
        var(--bg-light);
    background-attachment: fixed;
}

/* ─── Utilities ───────────────────────────────────────────────────────────── */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.text-gradient-pink-blue {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ─── PREMIUM LIQUID GLASS BUTTONS ────────────────────────────────────────── */
.glow-btn {
    position: relative;
    padding: 14px 32px;
    border-radius: 100px; /* Capsule pill shape */
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    outline: none;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

/* Liquid Glass Primary - Blend of Pink and Light Blue */
.glow-btn.pink-glow, .glow-btn.cyan-glow {
    background: linear-gradient(135deg, rgba(255, 0, 127, 0.8) 0%, rgba(0, 198, 251, 0.8) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 
        0 8px 24px rgba(255, 0, 127, 0.22),
        0 4px 12px rgba(0, 198, 251, 0.15),
        inset 0 3px 6px rgba(255, 255, 255, 0.65), /* Top shine */
        inset 0 -3px 6px rgba(0, 0, 0, 0.08);       /* Bottom shade */
}

/* Highlight crescent reflection for 3D glass look */
.glow-btn.pink-glow::before, .glow-btn.cyan-glow::before, .glow-btn.outline::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 2px;
    right: 2px;
    height: 42%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 100px 100px 0 0;
    pointer-events: none;
    z-index: 2;
}

/* Liquid element shine animation */
.glow-btn.pink-glow::after, .glow-btn.cyan-glow::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 1;
}

.glow-btn.pink-glow:hover, .glow-btn.cyan-glow:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 14px 28px rgba(255, 0, 127, 0.35),
        0 6px 18px rgba(0, 198, 251, 0.25),
        inset 0 4px 8px rgba(255, 255, 255, 0.8),
        inset 0 -4px 8px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, rgba(255, 0, 127, 0.9) 0%, rgba(0, 198, 251, 0.9) 100%);
}

.glow-btn.pink-glow:hover::after, .glow-btn.cyan-glow:hover::after {
    transform: translateX(100%);
}

/* Transparent Liquid Glass Button */
.glow-btn.outline {
    background: rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-shadow: none;
    box-shadow: 
        0 8px 24px rgba(31, 38, 135, 0.05),
        inset 0 2px 4px rgba(255, 255, 255, 0.7),
        inset 0 -2px 4px rgba(0, 0, 0, 0.04);
}

.glow-btn.outline:hover {
    transform: translateY(-2px) scale(1.02);
    background: rgba(255, 255, 255, 0.55);
    border-color: rgba(255, 255, 255, 0.85);
    box-shadow: 
        0 12px 28px rgba(31, 38, 135, 0.08),
        inset 0 3px 6px rgba(255, 255, 255, 0.8),
        inset 0 -3px 6px rgba(0, 0, 0, 0.06);
}

/* ─── Floating decorative glass shapes ───────────────────────────────────── */
.glass-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.18;
}

.blob-pink {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--neon-pink) 0%, transparent 70%);
}

.blob-blue {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--neon-cyan) 0%, transparent 70%);
}

/* ─── Header & Nav ───────────────────────────────────────────────────────── */
header.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

header.site-header.scrolled {
    background: #ffffff;
    padding: 5px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo img {
    height: 34px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover img {
    transform: scale(1.04);
}

nav.main-nav ul {
    display: flex;
    gap: 32px;
    list-style: none;
}

nav.main-nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

nav.main-nav a:hover {
    color: var(--text-primary);
}

nav.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
    transition: var(--transition);
}

nav.main-nav a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition);
}

/* ─── Hero Section ────────────────────────────────────────────────────────── */
.hero-section {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
    background: url('bg/hero_bg.jpg') center/cover no-repeat;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 769px) {
    .hero-grid {
        margin-left: 15px; /* Shifted slightly right to balance visual layout */
    }
}

.hero-content {
    text-align: left;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: #ffffff;
}

.hero-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ─── Trust Banner ──────────────────────────────────────────────────────── */
.trust-banner {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 40px 0;
    position: relative;
    z-index: 2;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.benefit-icon {
    font-size: 2.2rem;
    color: var(--neon-pink);
    filter: drop-shadow(0 2px 4px rgba(255, 0, 127, 0.15));
}

.benefit-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.benefit-text p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ─── Section Title Layout ──────────────────────────────────────────────── */
.section-title-area {
    text-align: center;
    margin-bottom: 24px;
}

.section-tag {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--neon-pink);
    margin-bottom: 2px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.section-desc {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 6px auto 0;
    font-size: 1.05rem;
}

/* ─── Category Sections ─────────────────────────────────────────────────── */
.categories-section {
    padding: 35px 0;
    position: relative;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(var(--blur-amount));
    -webkit-backdrop-filter: blur(var(--blur-amount));
    border-radius: 24px;
    padding: 30px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 240px;
    box-shadow: 
        var(--glass-shadow),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 24px 24px 0 0;
    pointer-events: none;
}

.category-card-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--neon-cyan);
    filter: blur(40px);
    opacity: 0;
    top: -50px;
    right: -50px;
    transition: var(--transition);
    z-index: -1;
}

.category-card:hover {
    transform: translateY(-5px);
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    box-shadow: var(--glass-shadow-hover);
}

.category-card:hover .category-card-glow {
    opacity: 0.2;
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05));
    transition: var(--transition);
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.category-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ─── Color Panel Section ───────────────────────────────────────────────── */
.color-panel-section {
    background: rgba(255, 255, 255, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding: 35px 0;
}

.color-panel-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.color-demo-display {
    background: #060608;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.25),
        inset 0 10px 20px rgba(0,0,0,0.5);
    max-width: 460px;
    width: 100%;
    justify-self: end;
}

.color-demo-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    transition: var(--transition);
}

.color-demo-text {
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
    z-index: 2;
}

.color-selector-controls {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.swatch-group {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    column-gap: 12px;
    row-gap: 35px;
}

.swatch {
    aspect-ratio: 1;
    border-radius: 14px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 
        0 4px 10px rgba(0, 0, 0, 0.05),
        inset 0 2px 4px rgba(255, 255, 255, 0.3),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1);
}

.swatch::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 100%);
    border-radius: 14px 14px 0 0;
}

.swatch:hover {
    transform: scale(1.15) translateY(-2px);
}

.swatch.active {
    border-color: var(--text-primary);
    transform: scale(1.1);
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.1),
        inset 0 2px 4px rgba(255, 255, 255, 0.5);
}

.swatch-name {
    font-size: 0.65rem;
    position: absolute;
    bottom: -22px;
    color: var(--text-secondary);
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition);
    font-weight: 600;
}

.swatch:hover .swatch-name, .swatch.active .swatch-name {
    opacity: 1;
}

.jacket-info {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.jacket-card {
    flex: 1;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(var(--blur-amount));
    -webkit-backdrop-filter: blur(var(--blur-amount));
    border-radius: 18px;
    padding: 20px;
    box-shadow: var(--glass-shadow);
}

.jacket-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.jacket-card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

/* ─── Past Works Gallery ────────────────────────────────────────────────── */
.tech-section {
    padding: 35px 0;
}

.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 30px 0;
    background: rgba(15, 15, 18, 0.4);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.25),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 0;
    animation: scroll-right 70s linear infinite;
}

.marquee-group {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-around;
    width: max-content;
    padding-right: 20px;
}

.marquee-group img {
    width: 440px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
}

.marquee-group img:hover {
    transform: scale(1.04) translateY(-4px);
    border-color: #ff2a85; /* Pink neon theme match */
    box-shadow: 
        0 15px 30px rgba(255, 42, 133, 0.25),
        0 0 15px rgba(255, 42, 133, 0.15);
}

/* Scroll horizontally to the right slowly and seamlessly */
@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* ─── Ready-Made Shop Section ────────────────────────────────────────────── */
.shop-section {
    padding: 35px 0;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding-top: 10px;
}

.product-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    backdrop-filter: blur(var(--blur-amount));
    -webkit-backdrop-filter: blur(var(--blur-amount));
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    background: var(--glass-bg-hover);
    border-color: rgba(255, 0, 127, 0.35); /* Pink neon border on hover */
    box-shadow: 
        0 20px 40px rgba(255, 0, 127, 0.12),
        0 0 15px rgba(255, 0, 127, 0.05);
}

.product-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #000; /* Black background to make neon sign pop */
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.06);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 100px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(255, 42, 133, 0.25);
}

.product-info {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--neon-pink);
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.35;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.product-rating .stars {
    font-size: 0.8rem;
    letter-spacing: -1.5px;
}

.product-rating .rating-val {
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.buy-now-btn {
    background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-purple) 100%);
    border: none;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(255, 42, 133, 0.25);
}

.buy-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 16px rgba(255, 42, 133, 0.35),
        0 0 10px rgba(255, 42, 133, 0.15);
}

/* ─── FAQ Accordions ────────────────────────────────────────────────────── */
.faq-section {
    background: rgba(255, 255, 255, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding: 35px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(var(--blur-amount));
    -webkit-backdrop-filter: blur(var(--blur-amount));
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--glass-shadow);
}

.faq-header {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
    transition: var(--transition);
}

.faq-header:hover {
    background: rgba(255, 255, 255, 0.25);
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    color: var(--neon-pink);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: rgba(255, 255, 255, 0.15);
}

.faq-content-inner {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active .faq-content {
    max-height: 300px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* ─── Pre-Footer Newsletter Banner ──────────────────────────────────────── */
.cta-banner-section {
    padding: 40px 0;
    text-align: center;
    position: relative;
}

.cta-banner-card {
    background: radial-gradient(circle at top right, rgba(0, 198, 251, 0.1), rgba(255, 0, 127, 0.05)), var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(var(--blur-amount));
    -webkit-backdrop-filter: blur(var(--blur-amount));
    border-radius: 35px;
    padding: 80px 40px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 
        var(--glass-shadow),
        inset 0 4px 10px rgba(255,255,255,0.5);
}

.cta-banner-card h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.cta-banner-card p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* ─── Footer ────────────────────────────────────────────────────────────── */
footer.site-footer {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding: 80px 0 40px;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 16px;
    max-width: 280px;
}

.footer-links h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    text-decoration: none;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--neon-pink);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 40px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--neon-pink);
    transform: translateY(-2px);
}

/* ─── Keyframe Animations ───────────────────────────────────────────────── */
@keyframes blinkGlow {
    0%, 100% {
        text-shadow: 
            0 0 4px #fff,
            0 0 8px #fff,
            0 0 15px var(--neon-pink),
            0 0 30px var(--neon-pink),
            0 0 50px var(--neon-pink),
            0 0 70px var(--neon-pink);
    }
    45% {
        text-shadow: 
            0 0 4px #fff,
            0 0 8px #fff,
            0 0 15px var(--neon-pink),
            0 0 30px var(--neon-pink),
            0 0 50px var(--neon-pink),
            0 0 70px var(--neon-pink);
    }
    50% {
        text-shadow: 
            0 0 2px #fff,
            0 0 5px rgba(255, 0, 127, 0.4),
            0 0 10px rgba(255, 0, 127, 0.2);
        color: rgba(255, 255, 255, 0.7);
    }
    55% {
        text-shadow: 
            0 0 4px #fff,
            0 0 8px #fff,
            0 0 15px var(--neon-pink),
            0 0 30px var(--neon-pink),
            0 0 50px var(--neon-pink),
            0 0 70px var(--neon-pink);
    }
}

@keyframes floatBlob {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-6px);
    }
}

/* ─── Responsive Styles ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    

    
    .color-panel-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .nav-actions {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content p {
        margin: 0 auto 30px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-brand p {
        margin: 16px auto 0;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    

    
    .glow-btn {
        width: 100%;
        border-radius: 100px;
    }
}

/* ─── 15% OFF MEMBER DISCOUNT POP-UP & FLOATING BLOB ─────────────────────── */
.discount-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 6, 8, 0.2);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.discount-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.discount-modal-card {
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    width: 90%;
    max-width: 420px;
    border-radius: 24px;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    overflow: hidden;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
}

.discount-modal-overlay.active .discount-modal-card {
    transform: scale(1) translateY(0);
}

.discount-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-primary);
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
    z-index: 10;
    line-height: 1;
}

.discount-modal-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.discount-modal-banner {
    background: linear-gradient(135deg, #ff007f 0%, #00c6fb 100%);
    padding: 30px 20px;
    text-align: center;
    color: white;
    position: relative;
}

.discount-modal-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.banner-badge {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 10px;
}

.discount-modal-banner h2 {
    font-size: 2.4rem;
    font-weight: 900;
    margin: 0;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    line-height: 1.1;
}

.discount-modal-banner h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 4px 0 0 0;
    opacity: 0.95;
}

.discount-modal-body {
    padding: 30px 25px 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.discount-modal-body h4 {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 0.08em;
}

.discount-modal-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.discount-signup-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.discount-signup-form input {
    padding: 16px 20px;
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.7);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-primary);
    outline: none;
    transition: var(--transition);
}

.discount-signup-form input:focus {
    border-color: #00c6fb;
    background: white;
    box-shadow: 0 0 15px rgba(0, 198, 251, 0.15);
}

.discount-submit-btn {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 100px;
    background: linear-gradient(135deg, #ff007f 0%, #00c6fb 100%);
    color: white;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.98rem;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(255, 0, 127, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.discount-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 0, 127, 0.3);
}

.discount-disclaimer {
    font-size: 0.8rem;
    line-height: 1.45;
    color: var(--text-muted);
    background: rgba(0, 198, 251, 0.05);
    border: 1px dashed rgba(0, 198, 251, 0.25);
    border-radius: 12px;
    padding: 12px;
    text-align: left;
}

.discount-modal-decline {
    background: none;
    border: none;
    outline: none;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
    transition: var(--transition);
    align-self: center;
}

.discount-modal-decline:hover {
    color: var(--text-primary);
}

/* Floating Glass Blob (Bottom-Left) */
.discount-floating-blob {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 22px;
    border-radius: 100px;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    z-index: 9999;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    animation: floatBlob 3s ease-in-out infinite;
}

.discount-floating-blob.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}

.discount-floating-blob:hover {
    background: rgba(255, 255, 255, 0.65);
    border-color: #ff007f;
    box-shadow: 
        0 15px 30px rgba(255, 0, 127, 0.15),
        0 0 15px rgba(255, 0, 127, 0.1);
    transform: scale(1.05);
}

.blob-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.blob-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 100px;
    background: linear-gradient(135deg, #ff007f 0%, #00c6fb 100%);
    z-index: -1;
    filter: blur(10px);
    opacity: 0.15;
    transition: var(--transition);
}

.discount-floating-blob:hover .blob-glow {
    opacity: 0.3;
    filter: blur(12px);
}

/* ─── Spacing Adjustments for Gallery & Color Spectrum ───────────────────── */
#gallery .section-title-area,
#colors .section-title-area {
    margin-bottom: 16px;
}

#gallery .section-title-area .section-title,
#colors .section-title-area .section-title {
    margin-bottom: 4px;
}

#colors .section-title-area .section-desc {
    margin-top: 4px;
}

/* ─── RELATED PRODUCTS HORIZONTAL CAROUSEL ──────────────────────────────── */
.related-products-section {
    padding: 80px 0;
    background: #ffffff;
    border-top: 1px solid rgba(200, 200, 220, 0.2);
}

.related-products-section h3 {
    font-family: 'Outfit', 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1e1b4b;
    text-align: center;
    letter-spacing: -0.5px;
}

.carousel-wrapper-relative {
    position: relative;
    width: 100%;
}

.horizontal-scroll-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 10px 4px 20px;
    scroll-behavior: smooth;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.horizontal-scroll-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari, Opera */
}

.carousel-arrow {
    position: absolute;
    top: 140px; /* Centered exactly on the 280px tall image */
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #1e1b4b;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    z-index: 10;
    user-select: none;
}

.carousel-arrow:hover {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
    transform: translateY(-50%) scale(1.05);
}

.carousel-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-arrow.prev {
    left: 15px;
}

.carousel-arrow.next {
    right: 15px;
}

@media (max-width: 768px) {
    .carousel-arrow {
        display: none; /* Mobile/tablet users scroll/swipe natively */
    }
    .horizontal-scroll-container {
        gap: 16px;
    }
}

.related-product-card {
    flex: 0 0 280px;
    background: transparent;
    border-radius: 0;
    border: none;
    padding: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.related-product-card:hover {
    transform: translateY(-4px);
}

.related-product-img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 12px;
    object-fit: cover;
    background: #09090b;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: box-shadow 0.3s ease;
}

.related-product-card:hover .related-product-img {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.related-product-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e1b4b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.related-product-price {
    font-weight: 500;
    color: #4b5563;
    font-size: 0.95rem;
}

/* ─── About SEO & Video Showcase Section ────────────────────────────────── */
.about-seo-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(10, 10, 12, 0.4) 0%, rgba(18, 14, 36, 0.7) 50%, rgba(10, 10, 12, 0.4) 100%);
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.seo-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.seo-video-col {
    position: relative;
}

.video-container-wrapper {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    background: #09090b;
}

.video-container-wrapper video {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16/10;
}

.video-overlay-glow {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, rgba(59, 130, 246, 0.1) 40%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.seo-content-col {
    text-align: left;
}

.section-title-left {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: #ffffff;
}

.seo-text-content p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.seo-text-content p:last-child {
    margin-bottom: 0;
}

.seo-text-content strong {
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

@media (max-width: 991px) {
    .seo-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .section-title-left {
        font-size: 2.2rem;
    }
}

/* ─── World Cup Limited Edition Section ──────────────────────────────────── */
.world-cup-section {
    position: relative;
    padding: 120px 0;
    background: #000000; /* Deep black base */
    overflow: hidden;
}

/* Video Background Layering */
.wc-video-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

#wc-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wc-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.9) 100%);
    pointer-events: none;
}

.world-cup-badge-container {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
    z-index: 10;
}

.world-cup-badge {
    background: linear-gradient(90deg, #ffd700, #f59e0b);
    color: #000000;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    letter-spacing: 0.5px;
    animation: pulseGlow 2s infinite alternate;
}

.limit-badge {
    background: #ef4444;
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
    letter-spacing: 0.5px;
}

/* World Cup Specific Cards & Readability overrides */
.world-cup-card {
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: rgba(0, 0, 0, 0.85) !important;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5) !important;
}

.world-cup-card:hover {
    border-color: #3b82f6 !important; /* Blue glow on hover */
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.25) !important;
    transform: translateY(-5px);
}

.wc-badge {
    background: #ffd700 !important;
    color: #000000 !important;
    font-weight: 800 !important;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4) !important;
}

.wc-cat-badge {
    color: #3b82f6 !important; /* Vibrant neon blue */
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wc-product-title {
    color: #ffffff !important;
    font-weight: 700 !important;
}

.wc-stars {
    color: #ffd700 !important;
}

.wc-rating-val {
    color: rgba(255, 255, 255, 0.7) !important;
}

.wc-original-price {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.4) !important;
    font-size: 0.85rem;
}

.wc-discount-price {
    color: #10b981 !important; /* Glowing green price */
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

.wc-btn {
    background: linear-gradient(90deg, #3b82f6, #10b981) !important; /* Blue to green gradient */
    color: #ffffff !important;
    border: none !important;
    font-weight: 700 !important;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3) !important;
    transition: all 0.3s ease;
}

.wc-btn:hover {
    background: linear-gradient(90deg, #ef4444, #3b82f6) !important; /* Red to blue on hover */
    color: #ffffff !important;
    box-shadow: 0 0 25px rgba(239, 68, 68, 0.5) !important;
}

/* ─── World Cup SEO Section ─────────────────────────────────────────────── */
.world-cup-seo-section {
    position: relative;
    padding: 80px 0;
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.wc-seo-card {
    position: relative;
    background: #050505;
    border-radius: 16px;
    padding: 40px;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

/* Red, green, and blue gradient glowing border */
.wc-seo-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, #ef4444, #10b981, #3b82f6);
    z-index: -1;
    border-radius: 18px;
    opacity: 0.8;
    box-shadow: 0 0 25px rgba(239, 68, 68, 0.2), 
                0 0 25px rgba(16, 185, 129, 0.2), 
                0 0 25px rgba(59, 130, 246, 0.2);
}

.wc-seo-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff !important;
    margin-bottom: 24px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.wc-seo-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 20px;
}

.wc-seo-content p:last-child {
    margin-bottom: 0;
}

.wc-seo-content strong {
    color: #ffffff !important;
    font-weight: 700;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
    }
    100% {
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
    }
}

@media (max-width: 768px) {
    .world-cup-badge-container {
        position: static;
        margin-bottom: 20px;
        align-items: center;
        width: 100%;
    }
}





