/* =====================================================
   PREMIUM CIGAR DEPOT - Ultra Premium Cigar Website
   Luxury Design System
   ===================================================== */

/* =====================================================
   CSS VARIABLES & DESIGN TOKENS
   ===================================================== */
:root {
    /* Premium Color Palette */
    --color-gold: #C9A962;
    --color-gold-light: #E5D4A1;
    --color-gold-dark: #8B7355;
    --color-burgundy: #722F37;
    --color-burgundy-dark: #4A1F24;
    --color-cream: #F5F0E6;
    --color-cream-dark: #E8E0D0;
    --color-charcoal: #1A1A1A;
    --color-charcoal-light: #2D2D2D;
    --color-espresso: #3C2415;
    --color-tobacco: #5C4033;
    --color-white: #FFFFFF;
    --color-black: #000000;

    /* Text Colors */
    --text-primary: #1A1A1A;
    --text-secondary: #5C5C5C;
    --text-light: #F5F0E6;
    --text-muted: #8B8B8B;
    --text-gold: #C9A962;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #C9A962 0%, #E5D4A1 50%, #C9A962 100%);
    --gradient-dark: linear-gradient(180deg, #1A1A1A 0%, #2D2D2D 100%);
    --gradient-hero: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(60, 36, 21, 0.9) 100%);
    --gradient-card: linear-gradient(180deg, rgba(26, 26, 26, 0.98) 0%, rgba(45, 45, 45, 0.95) 100%);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Cormorant Garamond', Georgia, serif;
    --font-accent: 'Cinzel', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 4px 20px rgba(201, 169, 98, 0.3);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-luxury: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Container */
    --container-max: 1400px;
    --container-narrow: 900px;
}

/* =====================================================
   RESET & BASE STYLES
   ===================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--color-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-base);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul, ol {
    list-style: none;
}

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

.heading-display {
    font-family: var(--font-accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.heading-elegant {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
}

.text-gold {
    color: var(--color-gold);
}

.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =====================================================
   LAYOUT UTILITIES
   ===================================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.container-narrow {
    max-width: var(--container-narrow);
}

.section {
    padding: var(--space-4xl) 0;
}

.section-dark {
    background: var(--gradient-dark);
    color: var(--text-light);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--text-light);
}

/* =====================================================
   AGE VERIFICATION MODAL
   ===================================================== */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: var(--transition-slow);
}

.age-gate.hidden {
    opacity: 0;
    pointer-events: none;
}

.age-gate-content {
    background: var(--gradient-card);
    border: 1px solid var(--color-gold);
    border-radius: var(--radius-lg);
    padding: var(--space-3xl);
    max-width: 500px;
    text-align: center;
    color: var(--text-light);
    box-shadow: var(--shadow-xl), 0 0 100px rgba(201, 169, 98, 0.2);
}

.age-gate-logo {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    margin-bottom: var(--space-lg);
}

.age-gate-content h2 {
    color: var(--text-light);
    margin-bottom: var(--space-md);
}

.age-gate-content p {
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
}

.age-gate-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}

.age-gate-buttons .btn {
    min-width: 140px;
}

/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-base);
}

.header-top {
    background: var(--color-charcoal);
    padding: var(--space-sm) 0;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top a {
    color: var(--color-gold);
}

.header-top a:hover {
    color: var(--color-gold-light);
}

.header-main {
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 169, 98, 0.2);
    padding: var(--space-md) 0;
    transition: var(--transition-base);
}

.header.scrolled .header-main {
    padding: var(--space-sm) 0;
    box-shadow: var(--shadow-lg);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-family: var(--font-accent);
    font-size: 1.75rem;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    line-height: 1;
}

.logo-tagline {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 4px;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-links {
    display: flex;
    gap: var(--space-lg);
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    padding: var(--space-sm) 0;
    position: relative;
}

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

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

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

.nav-dropdown {
    position: relative;
}

.nav-dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--color-charcoal);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    box-shadow: var(--shadow-lg);
}

.nav-dropdown:hover .nav-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
    display: block;
    padding: var(--space-sm) var(--space-md);
    color: var(--text-light);
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.nav-dropdown-item:hover {
    background: rgba(201, 169, 98, 0.1);
    color: var(--color-gold);
}

.nav-icons {
    display: flex;
    gap: var(--space-md);
}

.nav-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    border-radius: 50%;
    transition: var(--transition-base);
}

.nav-icon:hover {
    background: rgba(201, 169, 98, 0.1);
    color: var(--color-gold);
}

.nav-icon svg {
    width: 22px;
    height: 22px;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--color-burgundy);
    color: var(--text-light);
    font-size: 0.625rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition-base);
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--color-charcoal);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23C9A962" opacity="0.03"/></pattern></defs><rect fill="url(%23grain)" width="100" height="100"/></svg>'),
        var(--gradient-hero);
    background-size: 200px, cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding-top: 120px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.3);
    padding: var(--space-sm) var(--space-lg);
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-xl);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.hero-title span {
    display: block;
    color: var(--color-gold);
    font-style: italic;
    font-weight: 400;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: var(--space-2xl);
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid rgba(201, 169, 98, 0.2);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.hero-feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 50%;
    color: var(--color-gold);
}

.hero-feature-text {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.hero-feature-text strong {
    display: block;
    color: var(--text-light);
    font-weight: 600;
}

/* Hero Visual */
.hero-visual {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-cigar-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-cigar-image::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--color-charcoal);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.btn-outline-gold {
    background: transparent;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
}

.btn-outline-gold:hover {
    background: var(--color-gold);
    color: var(--color-charcoal);
}

.btn-dark {
    background: var(--color-charcoal);
    color: var(--text-light);
    border: 1px solid var(--color-charcoal);
}

.btn-dark:hover {
    background: var(--color-charcoal-light);
}

.btn-lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1rem;
}

.btn-sm {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.75rem;
}

/* =====================================================
   BRAND SHOWCASE SECTION
   ===================================================== */
.brands-section {
    background: var(--color-cream);
    padding: var(--space-4xl) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

/* Brand Grid */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.brand-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-luxury);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.brand-card-image {
    position: relative;
    height: 200px;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.brand-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.brand-logo-placeholder {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    text-align: center;
    padding: var(--space-md);
}

.brand-card-content {
    padding: var(--space-lg);
}

.brand-card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

.brand-card-origin {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.brand-card-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.brand-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-cream-dark);
}

.brand-product-count {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.brand-card-link {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.brand-card-link svg {
    transition: var(--transition-base);
}

.brand-card:hover .brand-card-link svg {
    transform: translateX(4px);
}

/* =====================================================
   COLLECTION CARDS (Sub-brand pages) - Matches Brand Cards
   ===================================================== */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.collection-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-luxury);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.collection-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.collection-card-image {
    position: relative;
    height: 200px;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.collection-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-luxury);
}

.collection-card:hover .collection-card-image img {
    transform: scale(1.05);
}

.collection-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    pointer-events: none;
}

/* Placeholder when no image */
.collection-card-image .collection-logo-placeholder {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    text-align: center;
    padding: var(--space-md);
    z-index: 1;
}

.collection-card-content {
    padding: var(--space-lg);
}

.collection-card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.collection-card-count {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: var(--space-sm);
}

.collection-card-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.collection-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-cream-dark);
}

.collection-card-link {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.collection-card-link svg {
    transition: var(--transition-base);
}

.collection-card:hover .collection-card-link svg {
    transform: translateX(4px);
}

/* =====================================================
   FEATURED PRODUCTS SECTION
   ===================================================== */
.featured-section {
    background: var(--gradient-dark);
    color: var(--text-light);
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.featured-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%23C9A962" opacity="0.02" width="1" height="100" x="20"/><rect fill="%23C9A962" opacity="0.02" width="1" height="100" x="40"/><rect fill="%23C9A962" opacity="0.02" width="1" height="100" x="60"/><rect fill="%23C9A962" opacity="0.02" width="1" height="100" x="80"/></svg>');
    background-size: 100px 100%;
}

.featured-section .section-label {
    color: var(--color-gold-light);
}

.featured-section .section-title {
    color: var(--text-light);
}

.featured-section .section-description {
    color: var(--text-muted);
}

/* Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.product-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 169, 98, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-luxury);
}

.product-card:hover {
    border-color: rgba(201, 169, 98, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-card-image {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, rgba(60, 36, 21, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-placeholder {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--color-gold);
    text-align: center;
    padding: var(--space-lg);
    opacity: 0.7;
}

.product-quick-view {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    transition: var(--transition-base);
}

.product-card:hover .product-quick-view {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.product-card-content {
    padding: var(--space-lg);
}

.product-brand {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-xs);
}

.product-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.product-specs {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
}

.product-spec {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.product-spec svg {
    width: 14px;
    height: 14px;
    color: var(--color-gold);
}

.product-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(201, 169, 98, 0.1);
}

.product-price {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.add-to-cart-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 50%;
    color: var(--color-gold);
    transition: var(--transition-base);
}

.add-to-cart-btn:hover {
    background: var(--color-gold);
    color: var(--color-charcoal);
}

/* =====================================================
   ABOUT/TRUST SECTION
   ===================================================== */
.about-section {
    background: var(--color-cream);
    padding: var(--space-4xl) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-content {
    max-width: 550px;
}

.about-content .section-label {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: var(--space-lg);
}

.about-text {
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

.trust-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.trust-feature {
    display: flex;
    gap: var(--space-md);
}

.trust-feature-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-charcoal);
    border-radius: var(--radius-md);
    color: var(--color-gold);
}

.trust-feature-text h4 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.trust-feature-text p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.about-visual {
    position: relative;
    height: 500px;
    background: var(--gradient-dark);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-visual::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.about-visual-text {
    font-family: var(--font-accent);
    font-size: 2rem;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    text-align: center;
    z-index: 1;
}

/* =====================================================
   NEWSLETTER SECTION
   ===================================================== */
.newsletter-section {
    background: var(--color-burgundy);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-2xl);
    position: relative;
    z-index: 1;
}

.newsletter-text {
    max-width: 500px;
}

.newsletter-text h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: var(--space-sm);
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form {
    display: flex;
    gap: var(--space-sm);
    flex: 1;
    max-width: 500px;
}

.newsletter-input {
    flex: 1;
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    color: var(--text-light);
    outline: none;
    transition: var(--transition-base);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.15);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--color-charcoal);
    color: var(--text-light);
    padding-top: var(--space-4xl);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
}

.footer-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-muted);
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-charcoal);
}

.footer-column h4 {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: var(--space-lg);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-link {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition-base);
}

.footer-link:hover {
    color: var(--color-gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg) 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal a:hover {
    color: var(--color-gold);
}

/* =====================================================
   SEARCH OVERLAY
   ===================================================== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 20vh;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    width: 100%;
    max-width: 700px;
    padding: 0 var(--space-xl);
}

.search-input-wrapper {
    position: relative;
    margin-bottom: var(--space-xl);
}

.search-input {
    width: 100%;
    padding: var(--space-lg) var(--space-xl);
    padding-left: 60px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--color-gold);
    color: var(--text-light);
    outline: none;
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-icon {
    position: absolute;
    left: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-gold);
}

.search-close {
    position: absolute;
    top: var(--space-xl);
    right: var(--space-xl);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.5rem;
    transition: var(--transition-base);
}

.search-close:hover {
    color: var(--color-gold);
    transform: rotate(90deg);
}

.search-results {
    max-height: 400px;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    cursor: pointer;
}

.search-result-item:hover {
    background: rgba(201, 169, 98, 0.1);
}

.search-result-image {
    width: 60px;
    height: 60px;
    background: var(--color-charcoal-light);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.search-result-info h4 {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.search-result-info p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* =====================================================
   BRAND PAGE
   ===================================================== */
.brand-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: var(--gradient-dark);
    position: relative;
    padding-top: 140px;
}

.brand-hero-content {
    position: relative;
    z-index: 1;
}

.brand-breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

.brand-breadcrumb a:hover {
    color: var(--color-gold);
}

.brand-breadcrumb span {
    color: var(--color-gold);
}

.brand-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text-light);
    margin-bottom: var(--space-md);
}

.brand-hero-meta {
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.brand-meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.brand-meta-item svg {
    color: var(--color-gold);
}

.brand-hero-description {
    max-width: 600px;
    color: var(--text-muted);
    font-size: 1.125rem;
}

/* =====================================================
   PRODUCT FILTERS
   ===================================================== */
.products-section {
    padding: var(--space-3xl) 0;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.products-count {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.products-filters {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.filter-select {
    padding: var(--space-sm) var(--space-md);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    background: var(--color-white);
    border: 1px solid var(--color-cream-dark);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    cursor: pointer;
    outline: none;
    transition: var(--transition-base);
}

.filter-select:focus {
    border-color: var(--color-gold);
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 1200px) {
    .hero-visual {
        width: 40%;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 3;
        max-width: 100%;
        margin-bottom: var(--space-xl);
    }
}

@media (max-width: 1024px) {
    .hero-visual {
        display: none;
    }

    .hero-content {
        max-width: 100%;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        height: 300px;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    :root {
        --space-4xl: 4rem;
        --space-3xl: 3rem;
    }

    .hero {
        min-height: auto;
        padding: 160px 0 80px;
    }

    .hero-features {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .brands-grid {
        grid-template-columns: 1fr;
    }

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

    .trust-features {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .age-gate-buttons {
        flex-direction: column;
    }

    .age-gate-content {
        margin: var(--space-md);
        padding: var(--space-xl);
    }
}

@media (max-width: 480px) {
    .header-top {
        display: none;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Stagger children animations */
.stagger-children > * {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.stagger-children > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-children > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-children > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-children > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-children > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-children > *:nth-child(6) { animation-delay: 0.6s; }

/* =====================================================
   LOADING STATES
   ===================================================== */
.skeleton {
    background: linear-gradient(90deg,
        var(--color-cream-dark) 25%,
        var(--color-cream) 50%,
        var(--color-cream-dark) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* =====================================================
   SCROLLBAR STYLING
   ===================================================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-charcoal);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gold-dark);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

/* =====================================================
   SHOPIFY INTEGRATION PLACEHOLDERS
   ===================================================== */
/* These classes will be used when integrating with Shopify */
.shopify-buy-button {
    /* Placeholder for Shopify Buy Button */
}

.shopify-cart-widget {
    /* Placeholder for Shopify Cart Widget */
}

.shopify-product-variant {
    /* Placeholder for variant selection */
}

/* Product price display for Shopify */
.price {
    font-family: var(--font-sans);
    font-weight: 600;
}

.price-original {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.9em;
}

.price-sale {
    color: var(--color-burgundy);
}

.price-from {
    font-size: 0.8em;
    color: var(--text-muted);
}
