/**
 * Floraluxe Canada - Luxury Flower Delivery
 * Premium CSS Stylesheet
 * Color Palette: Premium Luxury Florist - Deep Evergreen & Champagne Gold
 */

/* ============================================================================
   CSS CUSTOM PROPERTIES (Variables)
   ============================================================================ */
:root {
    /* Base Colors */
    --color-black: #1a1a1a;
    --color-dark: #1F2A24;
    --color-gray-dark: #4a4a4a;
    --color-gray: #8C8C8C;
    --color-gray-light: #B8B8B8;
    --color-light: #F4EFEA;
    --color-cream: #FAF8F5;
    --color-white: #ffffff;
    
    /* Primary - Deep Evergreen (elegant dark, not bright green) */
    --color-rose: #1F2A24;
    --color-rose-light: #F4EFEA;
    --color-rose-dark: #151C18;
    
    /* Accent - Champagne Gold (luxury metallic) */
    --color-gold: #D3B67A;
    --color-gold-light: #E8DCC4;
    --color-gold-dark: #B89B5C;
    --color-champagne: #FAF8F5;
    
    /* Secondary Accents */
    --color-lavender: #7A5C9A;
    --color-lavender-light: #E8E0F0;
    --color-coral: #C47D5D;
    --color-peach: #E8C4B4;
    --color-mint: #7A9B8E;
    --color-mint-light: #E8F0EC;
    --color-sky: #7A8FA3;
    --color-sunflower: #D3B67A;
    --color-orchid: #9B7BB0;
    --color-tulip: #C47D5D;
    
    /* Accent Colors */
    --color-burgundy: #6B3A3A;
    --color-success: #5A8A6B;
    --color-error: #B85C5C;
    
    /* Text */
    --color-text: #2B2B2B;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 5rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows - Premium & Subtle */
    --shadow-sm: 0 2px 8px rgba(31, 42, 36, 0.06);
    --shadow-md: 0 4px 16px rgba(31, 42, 36, 0.08);
    --shadow-lg: 0 8px 32px rgba(31, 42, 36, 0.12);
    --shadow-gold: 0 4px 20px rgba(211, 182, 122, 0.25);
    
    /* 3D Deep Shadows */
    --shadow-3d: 0 10px 40px rgba(31, 42, 36, 0.1), 0 5px 15px rgba(31, 42, 36, 0.06);
    --shadow-3d-hover: 0 20px 60px rgba(31, 42, 36, 0.15), 0 10px 25px rgba(31, 42, 36, 0.1);
    --shadow-3d-gold: 0 15px 50px rgba(211, 182, 122, 0.2), 0 5px 20px rgba(211, 182, 122, 0.12);
    --shadow-inset: inset 0 -3px 0 rgba(0, 0, 0, 0.1);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    /* 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-weight: 400;
    line-height: 1.7;
    color: var(--color-text);
    background: linear-gradient(180deg, #FFFFFF 0%, #FAF8F5 50%, #F4EFEA 100%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

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

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ============================================================================
   TYPOGRAPHY
   ============================================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-dark);
}

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, 2vw, 1.5rem); }

p {
    margin-bottom: var(--spacing-sm);
}

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

/* ============================================================================
   LAYOUT CONTAINERS
   ============================================================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

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

.section {
    padding: var(--spacing-xxl) 0;
}

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

.section-dark {
    background-color: var(--color-rose);
    color: var(--color-white);
}

.section-dark h2,
.section-dark h3 {
    color: var(--color-white);
}

/* ============================================================================
   HEADER & NAVIGATION
   ============================================================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(31, 42, 36, 0.08);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--spacing-sm) var(--spacing-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-dark);
    letter-spacing: 0.05em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-menu a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-dark);
    position: relative;
    padding: var(--spacing-xs) 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    transition: width var(--transition-normal);
}

.nav-menu a:hover {
    color: var(--color-gold-dark);
}

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

.nav-cart {
    position: relative;
}

.cart-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.cart-icon {
    width: 24px;
    height: 24px;
    color: var(--color-dark);
}

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

/* Language Switcher */
.flag-icon {
    display: inline-block;
    vertical-align: middle;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-dark);
    transition: var(--transition-fast);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: var(--spacing-lg);
        gap: var(--spacing-md);
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-normal);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* ============================================================================
   MAIN CONTENT
   ============================================================================ */
.main-content {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(31,42,36,0.75) 0%, rgba(31,42,36,0.6) 50%, rgba(21,28,24,0.8) 100%),
                url('https://images.unsplash.com/photo-1487530811176-3780de880c2d?w=1920&q=80') center/cover no-repeat fixed;
    color: var(--color-white);
    padding: var(--spacing-xxl);
    overflow: hidden;
    perspective: 1000px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(21,28,24,0.4) 100%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(21,28,24,0.9), transparent);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
    animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) rotateX(10deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.hero-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    animation: heroFadeIn 1s ease-out 0.2s both;
}

.hero-brand .logo-icon {
    width: 70px;
    height: 70px;
    filter: drop-shadow(0 4px 15px rgba(211, 182, 122, 0.5));
    animation: float 3s ease-in-out infinite;
}

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

.hero h1 {
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 2px 4px rgba(0,0,0,0.3);
    animation: heroFadeIn 1s ease-out 0.3s both;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-style: italic;
    color: var(--color-gold);
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 2px 10px rgba(211, 182, 122, 0.4);
    animation: heroFadeIn 1s ease-out 0.4s both;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
    opacity: 0.95;
    animation: heroFadeIn 1s ease-out 0.5s both;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: heroFadeIn 1s ease-out 0.6s both;
}

/* ============================================================================
   BUTTONS
   ============================================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-md);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    position: relative;
    transform-style: preserve-3d;
}

.btn-primary {
    background: linear-gradient(145deg, #D18B6A 0%, var(--color-coral) 50%, #A86A4A 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(196, 125, 93, 0.35), 
                0 3px 6px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.25),
                inset 0 -2px 0 rgba(0, 0, 0, 0.08);
}

.btn-primary:hover {
    background: linear-gradient(145deg, var(--color-gold) 0%, var(--color-gold-dark) 50%, #A68A4A 100%);
    box-shadow: 0 10px 30px rgba(211, 182, 122, 0.4), 
                0 5px 10px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-4px) scale(1.02);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 4px 12px rgba(196, 125, 93, 0.25), 
                0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-dark);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    transform: translateY(-4px) scale(1.02);
}

.btn-secondary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-dark {
    background: linear-gradient(145deg, #2D3D35 0%, var(--color-rose) 50%, var(--color-rose-dark) 100%);
    color: var(--color-white);
    box-shadow: 0 6px 20px rgba(31, 42, 36, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.08),
                inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

.btn-dark:hover {
    background: linear-gradient(145deg, #3A4D43 0%, #2D3D35 50%, var(--color-rose) 100%);
    box-shadow: 0 10px 30px rgba(31, 42, 36, 0.4),
                0 0 0 2px var(--color-gold);
    transform: translateY(-4px) scale(1.02);
}

.btn-dark:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-outline {
    background: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
    box-shadow: 0 4px 15px rgba(31, 42, 36, 0.08);
}

.btn-outline:hover {
    background: var(--color-dark);
    color: var(--color-white);
    box-shadow: 0 10px 30px rgba(31, 42, 36, 0.2);
    transform: translateY(-4px) scale(1.02);
}

.btn-outline:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-sm {
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 0.8rem;
}

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

/* ============================================================================
   FEATURE SECTIONS
   ============================================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.feature-card {
    text-align: center;
    padding: var(--spacing-xl);
    background: linear-gradient(145deg, #ffffff 0%, var(--color-cream) 100%);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(31, 42, 36, 0.06),
                0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(211, 182, 122, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-coral), var(--color-gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(31, 42, 36, 0.1),
                0 10px 25px rgba(211, 182, 122, 0.08);
    border-color: rgba(211, 182, 122, 0.25);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-md);
    color: var(--color-gold-dark);
    filter: drop-shadow(0 4px 8px rgba(211, 182, 122, 0.25));
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotateY(10deg);
    color: var(--color-coral);
}

.feature-card h3 {
    margin-bottom: var(--spacing-sm);
}

/* ============================================================================
   PRICING SECTION
   ============================================================================ */
.pricing-highlight {
    text-align: center;
    padding: var(--spacing-xxl);
    background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-rose-dark) 50%, #0D1410 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.pricing-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(211, 182, 122, 0.06) 0%, transparent 40%),
                radial-gradient(circle at 80% 20%, rgba(211, 182, 122, 0.04) 0%, transparent 40%);
    animation: shimmer 15s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10%, 10%); }
}

.pricing-badge {
    display: inline-block;
    background: linear-gradient(145deg, var(--color-gold) 0%, var(--color-gold-dark) 50%, #A68A4A 100%);
    color: var(--color-dark);
    font-weight: 700;
    padding: var(--spacing-xs) var(--spacing-lg);
    border-radius: 50px;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    box-shadow: 0 8px 25px rgba(211, 182, 122, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 8px 25px rgba(211, 182, 122, 0.4); }
    50% { box-shadow: 0 8px 40px rgba(211, 182, 122, 0.6); }
}

.pricing-highlight h2 {
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
}

.pricing-list {
    max-width: 600px;
    margin: var(--spacing-lg) auto;
    text-align: left;
}

.pricing-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.pricing-list li::before {
    content: '✓';
    color: var(--color-gold);
    font-weight: 700;
}

/* ============================================================================
   TESTIMONIALS
   ============================================================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.testimonial-card {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid rgba(211, 182, 122, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(211, 182, 122, 0.25);
}

.testimonial-card::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--color-gold-light);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.testimonial-author-name {
    font-weight: 600;
    color: var(--color-dark);
}

.testimonial-author-location {
    font-size: 0.9rem;
    color: var(--color-gray);
}

.testimonial-rating {
    color: var(--color-gold);
    margin-top: var(--spacing-xs);
}

/* ============================================================================
   ADDRESS CHECK FORM
   ============================================================================ */
.address-form-section {
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-light) 50%, #EDE7E0 100%);
    padding: var(--spacing-xxl);
    position: relative;
    overflow: hidden;
}

.address-form-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(211, 182, 122, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.address-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 60px rgba(31, 42, 36, 0.08),
                0 5px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(211, 182, 122, 0.15);
    position: relative;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: var(--spacing-xs);
    color: var(--color-dark);
}

.form-group label .required {
    color: var(--color-coral);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-sm);
    border: 1px solid #E0DDD8;
    border-radius: var(--radius-sm);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    background: var(--color-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(211, 182, 122, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================================
   CATALOG / PRODUCT GRID
   ============================================================================ */
.catalog-header {
    text-align: center;
    padding: var(--spacing-xl) 0;
    background: var(--color-light);
}

.catalog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(211, 182, 122, 0.1);
}

.filter-group {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.filter-group label {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-dark);
}

.filter-group select {
    padding: var(--spacing-xs) var(--spacing-sm);
    border: 1px solid #E0DDD8;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    background: var(--color-white);
}

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

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    padding: var(--spacing-xl) 0;
}

.product-card {
    background: linear-gradient(145deg, #ffffff 0%, #fefefe 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 35px rgba(31, 42, 36, 0.06),
                0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
    border: 1px solid rgba(211, 182, 122, 0.08);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-coral), var(--color-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(31, 42, 36, 0.12),
                0 10px 25px rgba(211, 182, 122, 0.08),
                0 5px 15px rgba(0, 0, 0, 0.06);
    border-color: rgba(211, 182, 122, 0.2);
}

.product-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1;
    background-color: #f5f5f5;
    transition: transform var(--transition-slow), opacity 0.3s ease;
}

/* Lazy load fade-in effect */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded,
img[loading="lazy"]:not([src=""]),
.product-image img[loading="lazy"].loaded,
.product-image img[loading="lazy"]:not([src=""]) {
    opacity: 1 !important;
}

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

.product-badge {
    position: absolute;
    top: var(--spacing-sm);
    left: var(--spacing-sm);
    background: linear-gradient(145deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(211, 182, 122, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    z-index: 2;
    letter-spacing: 0.05em;
}

.product-info {
    padding: var(--spacing-md);
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
    color: var(--color-dark);
}

.product-description {
    font-size: 0.9rem;
    color: var(--color-gray);
    margin-bottom: var(--spacing-sm);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-pricing {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.market-price {
    text-decoration: line-through;
    color: var(--color-gray-light);
    font-size: 0.9rem;
}

.our-price {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-coral);
    text-shadow: 0 2px 4px rgba(196, 125, 93, 0.15);
    background: linear-gradient(135deg, var(--color-coral), #D18B6A, var(--color-coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-actions {
    display: flex;
    gap: var(--spacing-sm);
}

.product-actions .btn {
    flex: 1;
}

/* ============================================================================
   PRODUCT DETAIL PAGE
   ============================================================================ */
.product-detail {
    padding: var(--spacing-xl) 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: start;
}

@media (max-width: 900px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
}

.product-gallery {
    position: sticky;
    top: 100px;
}

/* Disable sticky on mobile - prevents image from covering content */
@media (max-width: 900px) {
    .product-gallery {
        position: static;
        margin-bottom: var(--spacing-lg);
    }
}

.product-gallery img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto;
}

.product-detail-info h1 {
    margin-bottom: var(--spacing-sm);
}

.product-detail-pricing {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid #E8E4DF;
}

.product-detail-pricing .our-price {
    font-size: 2rem;
}

.product-detail-pricing .market-price {
    font-size: 1.25rem;
}

.product-detail-pricing .savings-badge {
    background: var(--color-gold-light);
    color: var(--color-dark);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-description-full {
    margin-bottom: var(--spacing-lg);
    font-size: 1.05rem;
    line-height: 1.8;
}

.product-meta {
    margin-bottom: var(--spacing-lg);
}

.product-meta h4 {
    margin-bottom: var(--spacing-sm);
    color: var(--color-gold-dark);
}

.product-meta ul {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
}

.product-meta li {
    background: var(--color-light);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--color-dark);
}

.add-to-cart-form {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
    margin-top: var(--spacing-lg);
}

.quantity-input {
    display: flex;
    align-items: center;
    border: 1px solid #E0DDD8;
    border-radius: var(--radius-sm);
}

.quantity-input button {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-light);
    color: var(--color-dark);
}

.quantity-input input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: none;
    border-left: 1px solid #E0DDD8;
    border-right: 1px solid #E0DDD8;
}

/* ============================================================================
   CART PAGE
   ============================================================================ */
.cart-page {
    padding: var(--spacing-xl) 0;
}

.cart-empty {
    text-align: center;
    padding: var(--spacing-xxl);
}

.cart-empty h2 {
    margin-bottom: var(--spacing-md);
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--spacing-xl);
}

.cart-table th,
.cart-table td {
    padding: var(--spacing-md);
    text-align: left;
    border-bottom: 1px solid #E8E4DF;
}

.cart-table th {
    background: var(--color-light);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: var(--color-dark);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.cart-item-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.cart-quantity-input {
    width: 60px;
    padding: var(--spacing-xs);
    text-align: center;
    border: 1px solid #E0DDD8;
    border-radius: var(--radius-sm);
}

.cart-remove-btn {
    color: var(--color-error);
    font-size: 0.9rem;
}

.cart-summary {
    max-width: 400px;
    margin-left: auto;
    background: var(--color-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(211, 182, 122, 0.15);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(211, 182, 122, 0.2);
}

.cart-summary-row.total {
    border-bottom: none;
    font-size: 1.25rem;
    font-weight: 700;
    padding-top: var(--spacing-md);
    color: var(--color-dark);
}

.cart-summary .btn {
    width: 100%;
    margin-top: var(--spacing-md);
}

@media (max-width: 768px) {
    .cart-table thead {
        display: none;
    }
    
    .cart-table tr {
        display: block;
        margin-bottom: var(--spacing-md);
        background: var(--color-light);
        border-radius: var(--radius-md);
        padding: var(--spacing-md);
    }
    
    .cart-table td {
        display: flex;
        justify-content: space-between;
        border: none;
        padding: var(--spacing-xs) 0;
    }
    
    .cart-table td::before {
        content: attr(data-label);
        font-weight: 600;
    }
}

/* ============================================================================
   CHECKOUT PAGE
   ============================================================================ */
.checkout-page {
    padding: var(--spacing-xl) 0;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-xl);
}

@media (max-width: 900px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }
}

.checkout-form-section {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(211, 182, 122, 0.1);
}

.checkout-form-section h3 {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--color-gold);
}

.order-summary {
    background: var(--color-light);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    position: sticky;
    top: 100px;
    border: 1px solid rgba(211, 182, 122, 0.15);
}

.order-summary h3 {
    margin-bottom: var(--spacing-md);
}

.order-summary-items {
    margin-bottom: var(--spacing-lg);
}

.order-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(211, 182, 122, 0.2);
}

.order-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.order-item-details {
    flex: 1;
}

.order-item-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.order-item-qty {
    font-size: 0.85rem;
    color: var(--color-gray);
}

.order-item-price {
    font-weight: 600;
    color: var(--color-coral);
}

/* ============================================================================
   CONTENT PAGES (About, Guarantees, Contact)
   ============================================================================ */
.page-hero {
    background: linear-gradient(135deg, rgba(31,42,36,0.85) 0%, rgba(21,28,24,0.75) 100%),
                url('https://images.unsplash.com/photo-1518882605630-8ebode6a4c19?w=1920&q=80') center/cover no-repeat;
    padding: var(--spacing-xxl);
    text-align: center;
    color: var(--color-white);
}

.page-hero h1 {
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.content-section {
    padding: var(--spacing-xxl) 0;
}

.content-section h2 {
    margin-bottom: var(--spacing-lg);
}

.guarantee-card {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--spacing-lg);
    border-left: 4px solid var(--color-gold);
}

.guarantee-card h3 {
    color: var(--color-gold-dark);
    margin-bottom: var(--spacing-sm);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info-card {
    background: var(--color-light);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    border: 1px solid rgba(211, 182, 122, 0.15);
}

.contact-info-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-dark);
}

/* ============================================================================
   FOOTER
   ============================================================================ */
.main-footer {
    background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-rose-dark) 50%, #0D1410 100%);
    color: var(--color-white);
    padding: var(--spacing-xxl) 0 0;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-coral), var(--color-lavender), var(--color-gold));
}

.footer-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--spacing-xxl);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.footer-brand .logo-icon {
    width: 50px;
    height: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.footer-logo .logo-text {
    color: var(--color-white);
    font-size: 1.5rem;
}

.footer-slogan {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-xs);
}

.footer-tagline {
    color: var(--color-gray-light);
    font-size: 0.95rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

@media (max-width: 900px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
}

.footer-column h4 {
    color: var(--color-gold);
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-column ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-column a {
    color: var(--color-gray-light);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

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

.footer-address {
    font-size: 0.85rem;
    color: var(--color-gray-light);
    line-height: 1.5;
}

.footer-bottom {
    margin-top: var(--spacing-xxl);
    padding: var(--spacing-lg);
    border-top: 1px solid rgba(211, 182, 122, 0.15);
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-gray-light);
}

.footer-note {
    color: var(--color-gold);
    margin-top: var(--spacing-xs);
}

/* Footer Newsletter */
.footer-newsletter-text {
    font-size: 0.9rem;
    color: var(--color-gray-light);
    margin-bottom: var(--spacing-sm);
}

.footer-newsletter-form {
    display: flex;
    gap: var(--spacing-xs);
}

.footer-newsletter-form input {
    flex: 1;
    padding: var(--spacing-xs) var(--spacing-sm);
    border: 1px solid rgba(211, 182, 122, 0.3);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    font-size: 0.9rem;
}

.footer-newsletter-form input::placeholder {
    color: var(--color-gray-light);
}

.footer-newsletter-form input:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.12);
}

.footer-newsletter-form button {
    padding: var(--spacing-xs) var(--spacing-md);
    background: linear-gradient(145deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-dark);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-newsletter-form button:hover {
    background: linear-gradient(145deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
    transform: translateY(-2px);
}

/* ============================================================================
   ALERTS & MESSAGES
   ============================================================================ */
.alert {
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
}

.alert-success {
    background: #E8F0EC;
    color: var(--color-success);
    border: 1px solid #B8D4C4;
}

.alert-error {
    background: #F5E8E8;
    color: var(--color-error);
    border: 1px solid #E0B8B8;
}

.alert-info {
    background: var(--color-light);
    color: var(--color-dark);
    border: 1px solid rgba(211, 182, 122, 0.3);
}

/* ============================================================================
   LOADING & REDIRECT
   ============================================================================ */
.redirect-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-xl);
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--color-light);
    border-top-color: var(--color-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: var(--spacing-lg);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================================================
   UTILITY CLASSES
   ============================================================================ */
.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.hidden { display: none !important; }
.visible { display: block !important; }

/* ============================================================================
   POLICY PAGES
   ============================================================================ */
.policy-content {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(211, 182, 122, 0.1);
}

.policy-content h2 {
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--color-gold-light);
    color: var(--color-dark);
}

.policy-content h2:first-of-type {
    margin-top: 0;
}

.policy-content h3 {
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
    font-size: 1.25rem;
}

.policy-content p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.policy-content ul,
.policy-content ol {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
}

.policy-content ul li,
.policy-content ol li {
    margin-bottom: var(--spacing-xs);
    line-height: 1.7;
    list-style: disc;
}

.policy-content ol li {
    list-style: decimal;
}

.policy-content a {
    color: var(--color-coral);
    text-decoration: underline;
}

.policy-content a:hover {
    color: var(--color-gold-dark);
}

.policy-date {
    color: var(--color-gray);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--color-light);
}

.policy-highlight {
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-light) 100%);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-xl);
    border-left: 4px solid var(--color-gold);
}

.policy-highlight h3 {
    margin-top: 0;
    color: var(--color-gold-dark);
}

.policy-highlight p {
    margin-bottom: 0;
}

.contact-box {
    background: var(--color-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    margin: var(--spacing-lg) 0;
    border: 1px solid rgba(211, 182, 122, 0.15);
}

.contact-box p {
    margin-bottom: var(--spacing-xs);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--spacing-lg) 0;
}

.cookie-table th,
.cookie-table td {
    padding: var(--spacing-sm);
    text-align: left;
    border-bottom: 1px solid var(--color-light);
}

.cookie-table th {
    background: var(--color-light);
    font-weight: 600;
    color: var(--color-dark);
}

.cookie-table tr:hover {
    background: var(--color-cream);
}

/* ============================================================================
   COOKIE CONSENT BANNER
   ============================================================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-rose-dark) 100%);
    color: var(--color-white);
    padding: var(--spacing-lg);
    z-index: 9999;
    box-shadow: 0 -5px 40px rgba(31, 42, 36, 0.3);
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-consent-text a {
    color: var(--color-gold);
    text-decoration: underline;
}

.cookie-consent-text a:hover {
    color: var(--color-gold-light);
}

.cookie-consent-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.cookie-consent-buttons .btn {
    white-space: nowrap;
}

.cookie-consent-buttons .btn-primary {
    background: linear-gradient(145deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-dark);
}

.cookie-consent-buttons .btn-primary:hover {
    background: linear-gradient(145deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
}

.cookie-consent-buttons .btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--color-white);
}

.cookie-consent-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================================
   PROMO STYLES (10000th Customer Offer)
   ============================================================================ */
.our-price.promo-active {
    color: var(--color-coral) !important;
    animation: promoPricePulse 1.5s ease-in-out infinite;
    position: relative;
}

.our-price.promo-active::before {
    content: "SPECIAL OFFER";
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 0.6rem;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-dark);
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

@keyframes promoPricePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.savings-badge.promo-savings {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark)) !important;
    color: var(--color-dark) !important;
    animation: promoSavingsPulse 2s ease-in-out infinite;
}

@keyframes promoSavingsPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(211, 182, 122, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(211, 182, 122, 0.5); }
}

/* Promo Badge Inline */
.promo-badge-inline {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 15px;
    margin-left: 8px;
    animation: promoPulse 2s ease-in-out infinite;
}

@keyframes promoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ============================================================================
   SIZE BADGES - Subscription Tier Indicators
   ============================================================================ */
.size-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: var(--spacing-xs);
}

.size-badge.size-small {
    background: linear-gradient(135deg, var(--color-lavender-light) 0%, #D8D0E8 100%);
    color: var(--color-lavender);
}

.size-badge.size-medium {
    background: linear-gradient(135deg, var(--color-gold-light) 0%, #E0D4B8 100%);
    color: var(--color-gold-dark);
}

.size-badge.size-large {
    background: linear-gradient(135deg, var(--color-lavender) 0%, var(--color-orchid) 100%);
    color: var(--color-white);
}

.size-label-detail .size-badge {
    margin-top: 0;
    font-size: 0.85rem;
    padding: 6px 14px;
}

/* ============================================================================
   LANGUAGE SWITCHER
   ============================================================================ */
.nav-lang {
    margin-left: var(--spacing-sm);
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--color-light);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.lang-switch:hover {
    background: var(--color-cream);
    border-color: var(--color-gold);
}

.lang-flag {
    font-size: 1.1rem;
}

.lang-code {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================================================
   SUBSCRIPTION PAGE STYLES
   ============================================================================ */
.subscription-hero {
    background: linear-gradient(135deg, rgba(31,42,36,0.85) 0%, rgba(21,28,24,0.75) 100%),
                url('https://images.unsplash.com/photo-1518882605630-8ebode6a4c19?w=1920&q=80') center/cover no-repeat;
    padding: var(--spacing-xxl);
    text-align: center;
    color: var(--color-white);
}

.subscription-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.tier-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(211, 182, 122, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.tier-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(211, 182, 122, 0.25);
}

.tier-card.featured {
    border: 2px solid var(--color-gold);
    transform: scale(1.02);
}

.tier-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tier-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
}

.tier-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-coral);
    margin-bottom: var(--spacing-md);
}

.tier-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-gray);
}

.tier-features {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.tier-features li {
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid var(--color-light);
    color: var(--color-gray-dark);
}

.tier-features li:last-child {
    border-bottom: none;
}

/* ============================================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================================ */
@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding: var(--spacing-xl);
    }
    
    .hero-brand .logo-icon {
        width: 50px;
        height: 50px;
    }
    
    .section {
        padding: var(--spacing-xl) 0;
    }
    
    .features-grid {
        gap: var(--spacing-md);
    }
    
    .feature-card {
        padding: var(--spacing-lg);
    }
    
    /* Tablet: 2 columns */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    /* Touch-friendly button sizing - min 44px touch target */
    .btn {
        min-height: 44px;
        min-width: 44px;
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .btn-sm {
        min-height: 44px;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    /* Mobile typography optimization */
    body {
        font-size: 15px;
        line-height: 1.6;
    }
    
    h1 { font-size: clamp(1.75rem, 6vw, 2.5rem); }
    h2 { font-size: clamp(1.5rem, 5vw, 2rem); }
    h3 { font-size: clamp(1.25rem, 4vw, 1.5rem); }
    
    .product-name {
        font-size: 1.1rem;
    }
    
    .product-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .btn-lg {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: 0.9rem;
        min-height: 48px;
    }
    
    /* Mobile: 1 column */
    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    /* Enhanced touch targets for mobile */
    .btn {
        min-height: 48px;
        font-size: 0.95rem;
    }
    
    .product-actions .btn {
        padding: var(--spacing-sm) var(--spacing-md);
        min-height: 48px;
    }
    
    /* Better mobile readability */
    .product-info {
        padding: var(--spacing-sm);
    }
    
    .our-price {
        font-size: 1.2rem;
    }
    
    .market-price {
        font-size: 0.85rem;
    }
}
