/* ==========================================================================
   WALLET BEDS™ MASTER STYLE SYSTEM (E-COMMERCE REBUILD)
   Inspired by wristbuddys.com - Designed for High Conversion
   ========================================================================== */

/* 🎨 Design Tokens & Custom Variables */
:root {
    /* Premium Slate & Anodized Blue Palette (High-Converting Masculine Design) */
    --brand-navy: #0A0D14;                 /* Deep space blue-black for solid header/footer/announcements */
    --brand-teal: #0066FF;                 /* Electric Anodized Cobalt Blue (High-Converting Action Color) */
    --brand-teal-glow: rgba(0, 102, 255, 0.25); /* Electric neon blue underglow shadow */
    --brand-gold: #FFB800;                 /* Rich Amber Gold for trust elements and star ratings */
    
    /* E-Commerce Masculine Neutrals (Slate Gray & Titanium) */
    --bg-light: #0F1219;                   /* Deep Space Slate (Page base background) */
    --bg-white: #171C26;                   /* Brushed Slate Titanium (Cards and sections background) */
    --bg-dark: #0A0C11;                    /* Deep shadow base */
    --bg-gray-subtle: #212836;             /* Swatch and secondary hover backgrounds */
    --border-light: #2A3345;               /* Precision titanium-seam lines */
    --text-primary: #ECEFF2;               /* Brushed Silver (Primary headers and text) */
    --text-muted: #8F9CAE;                 /* Steel grey for secondary labels and specs */
    --text-white: #FFFFFF;                 /* High contrast pure white */
    
    /* Typography */
    --font-heading: 'Jost', sans-serif;
    --font-body: 'Questrial', 'Inter', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* 📦 Core Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* 🚀 Announcement Bar */
.announcement-bar {
    background-color: var(--brand-navy);
    color: var(--text-white);
    padding: 10px 0;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    border-bottom: 2px solid var(--brand-teal);
    position: relative;
    z-index: 1010;
}

.announcement-slider {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.announcement-item i {
    color: var(--brand-teal);
    margin-right: 5px;
}

/* 🛏️ Premium Header Navigation */
.pageheader {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 22px;
    color: var(--text-white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo span {
    color: var(--brand-teal);
    font-weight: 400;
}

.navigation {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--brand-teal);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--brand-teal);
}

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

/* General CTA Button */
.btn-cta {
    background-color: var(--brand-navy);
    color: var(--text-white);
    border: 1px solid var(--brand-navy);
    padding: 12px 28px;
    border-radius: 3px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(10, 22, 40, 0.15);
}

.btn-cta:hover {
    background-color: var(--brand-teal);
    border-color: var(--brand-teal);
    color: var(--brand-navy);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px var(--brand-teal-glow);
}

.header-cta {
    padding: 8px 18px;
    font-size: 11px;
}

/* ⚡ Premium Split Hero Section */
.hero {
    padding: 80px 24px;
    background: radial-gradient(circle at 75% 75%, var(--brand-teal-glow) 0%, var(--bg-light) 60%);
    border-bottom: 1px solid var(--border-light);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    background-color: var(--brand-navy);
    color: var(--brand-teal);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 6px 12px;
    border-radius: 2px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px var(--brand-teal-glow);
}

.hero-text-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-white);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero p.subtitle {
    font-size: 16px;
    color: #75B0FF; /* Brighter titanium cobalt blue for high contrast visibility */
    margin-bottom: 35px;
    max-width: 580px;
}

/* 📥 High-Converting Waitlist Form Block */
.hero-waitlist-box {
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    max-width: 500px;
}

.waitlist-box-header {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: var(--text-white);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--brand-teal);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.7);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(0, 102, 255, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 102, 255, 0);
    }
}

.waitlist-form .input-group {
    display: flex;
    gap: 8px;
}

.waitlist-form input[type="email"] {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid var(--border-light);
    border-radius: 3px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-primary);
    background-color: var(--bg-gray-subtle);
    outline: none;
    transition: var(--transition-smooth);
}

.waitlist-form input[type="email"]:focus {
    border-color: var(--brand-teal);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px var(--brand-teal-glow);
}

.waitlist-form button {
    background-color: var(--brand-teal);
    color: var(--brand-navy);
    border: 1px solid var(--brand-teal);
    padding: 14px 24px;
    border-radius: 3px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px var(--brand-teal-glow);
}

.waitlist-form button:hover {
    background-color: var(--bg-light);
    color: var(--brand-teal);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px var(--brand-teal-glow);
}

.form-disclaimer {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.form-disclaimer i {
    color: var(--brand-teal);
}

/* Hero Media Visual */
.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    aspect-ratio: 1 / 1;
}

.hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 6s ease;
}

.hero-image-wrapper:hover .hero-main-img {
    transform: scale(1.05);
}

.hero-glow-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, var(--brand-teal-glow), transparent);
    pointer-events: none;
}

/* 🏷️ Collection Heading Section */
.collection-section {
    padding: 100px 24px;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.pre-heading {
    display: inline-block;
    color: var(--brand-teal);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
}

.section-heading h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.01em;
}

.section-subtext {
    font-size: 15px;
    color: var(--text-muted);
    margin-top: 10px;
}

/* Category Filter Bar */
.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 20px;
    margin-bottom: 50px;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-label, .sort-label {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.filter-btn {
    background: none;
    border: 1px solid transparent;
    padding: 8px 16px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 20px;
    transition: var(--transition-smooth);
    color: var(--text-primary);
}

.filter-btn:hover {
    background-color: var(--bg-gray-subtle);
}

.filter-btn.active {
    background-color: var(--brand-navy);
    color: var(--text-white);
    border-color: var(--brand-navy);
}

.sort-select {
    padding: 8px 16px;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 13px;
    outline: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    background-color: var(--bg-white);
}

.sort-select:focus {
    border-color: var(--brand-teal);
}

/* 🛒 Shopify Product Cards Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.product-card {
    background-color: var(--bg-white);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.card-media {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 3px;
    background-color: var(--bg-gray-subtle);
    border: 1px solid var(--border-light);
    margin-bottom: 20px;
}

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

.product-img-primary {
    transition: opacity 0.4s ease-in-out, transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-img-secondary {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease-in-out, transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-card:hover .product-img-primary {
    transform: scale(1.04);
}

.product-card:hover .product-img-secondary {
    opacity: 1;
    transform: scale(1.04);
    pointer-events: auto;
}

/* Elegant, Floating Circular Coming Soon Badge */
.coming-soon-badge-circle {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
    background-color: rgba(10, 22, 40, 0.85);
    color: var(--text-white);
    border: 1.5px solid var(--brand-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 15px var(--brand-teal-glow);
    animation: badgeFloat 4s ease-in-out infinite;
}

.coming-soon-badge-circle span {
    font-family: var(--font-heading);
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    line-height: 1.3;
}

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

/* Quick Notify Hover Button */
.quick-notify-btn {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background-color: var(--brand-navy);
    color: var(--text-white);
    border: none;
    padding: 14px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0;
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.card-media:hover .quick-notify-btn {
    bottom: 0;
    opacity: 1;
}

.quick-notify-btn:hover {
    background-color: var(--brand-teal);
    color: var(--brand-navy);
}

/* Product Info */
.card-info {
    text-align: left;
}

.review-stars {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.stars-gold i {
    color: var(--brand-gold);
}
.stars-gold {
    font-size: 11px;
    letter-spacing: -1px;
}

.review-count {
    font-size: 12px;
    color: var(--text-muted);
}

.card-info h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.card-pricing {
    margin-bottom: 12px;
}

.current-price {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
}

.sold-out-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 8px;
    background-color: rgba(239, 68, 68, 0.12);
    color: #ff5c5c;
    border: 1px solid rgba(239, 68, 68, 0.25);
    vertical-align: middle;
}

/* Color Swatches Styles */
.card-swatches {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.swatch {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
}

.swatch:hover, .swatch.active {
    box-shadow: 0 0 0 2px var(--bg-white), 0 0 0 3px var(--brand-navy);
}

.sw-black { background-color: #171717; }
.sw-blue { background-color: #2b3a5c; }
.sw-steel { background-color: #494c4e; }
.sw-walnut { background-color: #8B5A2B; }
.sw-espresso { background-color: #3D2314; }

.card-description {
    font-size: 13px;
    color: var(--text-muted);
}

/* 🛡️ E-Commerce Trust Badges Section */
.trust-section {
    padding: 60px 24px;
    background-color: var(--bg-gray-subtle);
    border-bottom: 1px solid var(--border-light);
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.trust-card {
    text-align: center;
    background-color: var(--bg-white);
    padding: 30px 20px;
    border-radius: 4px;
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
}

.trust-icon {
    font-size: 32px;
    color: var(--brand-teal);
    margin-bottom: 15px;
    text-shadow: 0 4px 10px var(--brand-teal-glow);
}

.trust-card h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-white);
    margin-bottom: 8px;
}

.trust-card p {
    font-size: 12.5px;
    color: var(--text-muted);
}


/* 🎭 Humorous "Wallet Union" Customer Reviews Section */
.reviews-section {
    padding: 100px 24px;
    background-color: var(--bg-gray-subtle);
    border-bottom: 1px solid var(--border-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 30px;
    transition: var(--transition-smooth);
}

.review-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
}

.rev-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.rev-info h5 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-white);
}

.rev-ver {
    font-size: 10.5px;
    color: var(--brand-teal);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}

.rev-stars-gold i {
    color: var(--brand-gold);
}
.rev-stars-gold {
    font-size: 10px;
    letter-spacing: -0.5px;
}

.rev-text {
    font-size: 13.5px;
    color: var(--text-muted);
    font-style: italic;
}

/* ❓ Objection-Crushing FAQ Accordions Section */
.faq-section {
    padding: 100px 24px;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-accordion {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    border: 1px solid var(--border-light);
    border-radius: 4px;
    background-color: var(--bg-gray-subtle);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.accordion-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: var(--transition-smooth);
}

.accordion-header h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
}

.icon-toggle {
    font-size: 14px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background-color: var(--bg-white);
}

.accordion-content p {
    padding: 20px 24px;
    font-size: 14px;
    color: var(--text-muted);
    border-top: 1px solid var(--border-light);
}

.accordion-item.active {
    border-color: var(--brand-teal);
    box-shadow: 0 4px 15px var(--brand-teal-glow);
}

.accordion-item.active .accordion-content {
    max-height: 180px;
}

.accordion-item.active .icon-toggle {
    transform: rotate(180deg);
    color: var(--brand-teal);
}

/* 📥 High-Converting Waitlist Modal Popup */
.waitlist-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition-smooth);
}

.waitlist-modal.open {
    visibility: visible;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 22, 40, 0.7);
    backdrop-filter: blur(4px);
    transition: var(--transition-smooth);
}

.modal-body {
    position: relative;
    background-color: var(--bg-white);
    border-radius: 4px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    z-index: 10;
    border: 1px solid var(--border-light);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.waitlist-modal.open .modal-body {
    transform: translateY(0);
}

.close-modal-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 5px;
}

.close-modal-btn:hover {
    color: var(--brand-teal);
}

.modal-header {
    margin-bottom: 25px;
}

.modal-tag {
    display: inline-block;
    color: var(--brand-teal);
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.modal-header p {
    font-size: 13.5px;
    color: var(--text-muted);
}

.modal-selected-tag {
    background-color: var(--bg-gray-subtle);
    padding: 10px 16px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 12px;
    color: var(--text-white);
    margin-bottom: 20px;
    border: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
}

.modal-form .input-container {
    margin-bottom: 16px;
}

.modal-form input[type="email"] {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-light);
    border-radius: 3px;
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    background-color: var(--bg-gray-subtle);
    transition: var(--transition-smooth);
}

.modal-form input[type="email"]:focus {
    border-color: var(--brand-teal);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px var(--brand-teal-glow);
}

.modal-form button {
    width: 100%;
    padding: 14px;
    font-size: 13px;
}

.modal-disclaimer {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.modal-disclaimer i {
    color: var(--brand-teal);
}

/* 💬 Waitlist Success Toast Notification */
.toast-success {
    position: fixed;
    bottom: -100px;
    right: 24px;
    background-color: var(--brand-navy);
    color: var(--text-white);
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--brand-teal);
    padding: 16px 24px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 350px;
    z-index: 3000;
    transition: bottom 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.toast-success.active {
    bottom: 24px;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-icon {
    font-size: 24px;
    color: var(--brand-teal);
    text-shadow: 0 0 10px var(--brand-teal-glow);
}

.toast-text h5 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.toast-text p {
    font-size: 11.5px;
    color: #A0AAB2;
    margin-top: 2px;
}

.toast-close {
    background: none;
    border: none;
    color: #A0AAB2;
    cursor: pointer;
    font-size: 14px;
    padding: 5px;
    transition: var(--transition-smooth);
}

.toast-close:hover {
    color: var(--text-white);
}

/* 🗺️ Premium Footer */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 80px 24px 40px 24px;
    border-top: 2px solid var(--brand-navy);
}

.footer-logo {
    color: var(--text-white);
    margin-bottom: 20px;
    display: inline-block;
}

.footer-bio {
    font-size: 13.5px;
    color: #A0AAB2;
    max-width: 320px;
    margin-bottom: 25px;
}

.socials {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background-color: var(--brand-teal);
    color: var(--brand-navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px var(--brand-teal-glow);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 60px;
}

.footer-links-col h4 {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    color: var(--brand-teal);
}

.footer-links-col a {
    display: block;
    color: #A0AAB2;
    text-decoration: none;
    font-size: 13.5px;
    margin-bottom: 12px;
    transition: var(--transition-smooth);
}

.footer-links-col a:hover {
    color: var(--text-white);
    padding-left: 4px;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 11.5px;
    color: var(--text-muted);
}

.payment-icons {
    display: flex;
    gap: 12px;
}

.pay-icon {
    font-size: 24px;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.pay-icon:hover {
    color: var(--brand-teal);
}

/* ==========================================================================
   📱 Mobile Responsiveness
   ========================================================================== */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero {
        padding: 50px 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand-col {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .navigation {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .filter-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .sort-group {
        align-self: flex-end;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand-col {
        grid-column: span 1;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
    
    /* Permanently show the quick notify button on mobile/tablet (since touch screens have no hover state) */
    .quick-notify-btn {
        bottom: 0;
        opacity: 1;
    }
}

@media (max-width: 576px) {
    /* Stack waitlist form fields vertically for easy finger-tapping ergonomics */
    .waitlist-form .input-group {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .waitlist-form button {
        width: 100%;
        text-align: center;
    }
    
    /* Single-column product cards grid for immersive mobile visuals */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
