/* ========================================
   RESET & BASE STYLES
======================================== */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    /* Color Palette — Luxury Refined */
    --primary-beige: #F5F0E8;
    --warm-cream: #FAF7F2;
    --luxury-gold: #C9A84C;
    --gold-light: #E2CC8B;
    --gold-shimmer: #F0E4C4;
    --deep-burgundy: #7A1E2E;
    --burgundy-light: #9E2B3F;
    --forest-green: #2F4F2F;
    --charcoal-black: #1A1A1A;
    --soft-gold: #E8D5B7;
    --light-beige: #F8F4EF;
    --pearl-white: #FEFCF9;
    --dark-espresso: #3B2314;
    --muted-rose: #D4A5A5;
    
    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 24px;
    --border-radius: 16px;
    
    /* Shadows — Richer depth */
    --shadow-soft: 0 4px 20px rgba(26, 26, 26, 0.06), 0 1px 3px rgba(26, 26, 26, 0.04);
    --shadow-medium: 0 12px 40px rgba(26, 26, 26, 0.1), 0 4px 12px rgba(26, 26, 26, 0.06);
    --shadow-strong: 0 24px 60px rgba(26, 26, 26, 0.14), 0 8px 20px rgba(26, 26, 26, 0.08);
    --shadow-luxury: 0 30px 80px rgba(122, 30, 46, 0.12), 0 10px 30px rgba(201, 168, 76, 0.08);
    
    /* Gradients — More refined */
    --gradient-gold: linear-gradient(135deg, #C9A84C 0%, #E2CC8B 50%, #C9A84C 100%);
    --gradient-gold-subtle: linear-gradient(135deg, rgba(201, 168, 76, 0.12) 0%, rgba(226, 204, 139, 0.08) 100%);
    --gradient-beige: linear-gradient(160deg, #FAF7F2 0%, #F5F0E8 40%, #FAF7F2 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(122, 30, 46, 0.92) 0%, rgba(59, 35, 20, 0.88) 100%);
    --gradient-dark: linear-gradient(160deg, #1A1A1A 0%, #2C2218 50%, #1A1A1A 100%);
    --gradient-hero: linear-gradient(160deg, #FEFCF9 0%, #F5F0E8 30%, #F0E4C4 60%, #F5F0E8 100%);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    color: var(--charcoal-black);
    background: var(--warm-cream);
    line-height: 1.7;
    overflow-x: hidden;
    overscroll-behavior-y: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    padding-bottom: env(safe-area-inset-bottom, 0);
}

/* ========================================
   TYPOGRAPHY
======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    color: var(--charcoal-black);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    color: var(--deep-burgundy);
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.section-title::before {
    content: '✦';
    display: block;
    font-size: 1rem;
    color: var(--luxury-gold);
    margin-bottom: 0.75rem;
    letter-spacing: 0.5em;
    font-family: var(--font-serif);
}

.section-subtitle {
    text-align: center;
    color: var(--charcoal-black);
    opacity: 0.65;
    font-size: 1.05rem;
    max-width: 550px;
    margin: 2rem auto 3.5rem;
    line-height: 1.7;
}

/* ========================================
   CONTAINER & LAYOUT
======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

section {
    padding: var(--section-padding);
}

/* Section gold divider ornament */
.benefits, .product-gallery, .pricing, .testimonials, .how-to-order, .faq {
    position: relative;
}

.benefits::after, .testimonials::after, .how-to-order::after {
    content: '✦  ✦  ✦';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.55rem;
    color: var(--luxury-gold);
    opacity: 0.35;
    letter-spacing: 0.3em;
    z-index: 1;
}

/* ========================================
   BUTTONS
======================================== */

.btn-primary, .btn-secondary, .btn-outline, .btn-whatsapp, .btn-primary-large {
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-sans);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    text-align: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--charcoal-black);
    padding: 16px 36px;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.35);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 50px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.45);
    filter: brightness(1.05);
}

.btn-primary-large {
    background: var(--gradient-gold);
    color: var(--charcoal-black);
    padding: 22px 48px;
    font-size: 1.05rem;
    box-shadow: 0 6px 24px rgba(201, 168, 76, 0.4);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 50px;
}

.btn-secondary {
    background: transparent;
    color: var(--deep-burgundy);
    border: 1.5px solid var(--deep-burgundy);
    padding: 15px 32px;
    font-size: 0.95rem;
    border-radius: 50px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 600;
}

.btn-secondary:hover {
    background: var(--deep-burgundy);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(122, 30, 46, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--luxury-gold);
    border: 1.5px solid var(--luxury-gold);
    padding: 12px 26px;
    font-size: 0.9rem;
    border-radius: 50px;
    letter-spacing: 0.03em;
}

.btn-outline:hover {
    background: var(--luxury-gold);
    color: var(--charcoal-black);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(201, 168, 76, 0.3);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 15px 30px;
    font-size: 0.9rem;
    margin-top: 10px;
    border-radius: 50px;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #1FAF52 0%, #0f7a6b 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

/* WhatsApp Express Hero Button */
.btn-whatsapp-express {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 18px 36px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.03em;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: whatsappGlow 2.5s ease-in-out infinite;
}

.btn-whatsapp-express:hover {
    background: linear-gradient(135deg, #1FAF52 0%, #0f7a6b 100%);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 36px rgba(37, 211, 102, 0.45), 0 0 0 4px rgba(37, 211, 102, 0.15);
}

.btn-whatsapp-express:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-whatsapp-express i {
    font-size: 1.4rem;
}

.btn-whatsapp-express .express-badge {
    background: rgba(255, 255, 255, 0.25);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    backdrop-filter: blur(4px);
}

@keyframes whatsappGlow {
    0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45), 0 0 0 6px rgba(37, 211, 102, 0.1); }
}

/* ========================================
   FLOATING ELEMENTS
======================================== */

.whatsapp-float {
    position: fixed;
    bottom: calc(30px + env(safe-area-inset-bottom, 0px));
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: goldGlow 2.5s ease-in-out infinite;
}

.whatsapp-float a:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.sticky-buy-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--warm-cream);
    padding: 15px 20px;
    padding-bottom: calc(15px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 999;
    transition: transform 0.3s;
}

.sticky-buy-btn.hidden {
    transform: translateY(100%);
}

.sticky-buy-btn button {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
}

/* ========================================
   HEADER
======================================== */

.header {
    background: rgba(250, 247, 242, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 16px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(250, 247, 242, 0.95);
    box-shadow: 0 4px 30px rgba(26, 26, 26, 0.08);
}

.header.scrolled .logo-img {
    width: 70px;
    height: 70px;
}

.header.scrolled .logo-text {
    font-size: 0.75rem;
}

.logo .logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    text-decoration: none;
    color: inherit;
}

.logo .logo-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: contain;
    background: #fff;
    padding: 4px;
    border: 3px solid var(--luxury-gold);
    box-shadow: 0 4px 18px rgba(139, 115, 85, 0.28);
    transition: transform 0.3s ease, box-shadow 0.3s ease, width 0.3s ease, height 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(139, 115, 85, 0.35);
}

.logo .logo-text {
    font-size: 0.75rem;
    color: var(--deep-burgundy);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    font-family: var(--font-heading);
    text-align: center;
}

.logo .logo-text::after {
    display: none;
}

.logo:hover .logo-text::after {
    display: none;
}

/* ========================================
   HERO SECTION
======================================== */

.hero {
    background: var(--gradient-hero);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(122, 30, 46, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-decoration {
    position: absolute;
    top: 0;
    right: -10%;
    width: 40%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20 20Q30 10 40 20T60 20Q70 30 80 20v60Q70 70 60 80T40 80Q30 90 20 80z" fill="rgba(212,175,55,0.1)"/></svg>');
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--deep-burgundy);
    margin-bottom: 1.25rem;
    line-height: 1.08;
    letter-spacing: -0.025em;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--dark-espresso);
    margin-bottom: 2.5rem;
    font-weight: 400;
    opacity: 0.7;
    letter-spacing: 0.02em;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-image img {
    width: auto;
    height: 480px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(59, 35, 20, 0.2));
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: floatProduct 6s ease-in-out infinite;
}

@keyframes floatProduct {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.hero-image img:hover {
    filter: drop-shadow(0 25px 60px rgba(59, 35, 20, 0.3));
    transform: scale(1.04);
    animation-play-state: paused;
}

/* ========================================
   STORYTELLING SECTION
======================================== */

.storytelling {
    background: var(--primary-beige);
    position: relative;
    overflow: hidden;
}

.storytelling::before {
    content: '\201C';
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8rem;
    font-family: var(--font-serif);
    color: var(--luxury-gold);
    opacity: 0.12;
    line-height: 1;
    pointer-events: none;
}

.story-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.story-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    color: var(--deep-burgundy);
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.story-content p {
    font-size: 1.05rem;
    color: var(--charcoal-black);
    margin-bottom: 1.5rem;
    opacity: 0.75;
    line-height: 1.9;
    font-weight: 300;
}

/* ========================================
   BENEFITS SECTION
======================================== */

.benefits {
    background: var(--warm-cream);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    background: var(--pearl-white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(201, 168, 76, 0.08);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-luxury);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-gold-subtle);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.4rem;
    color: var(--luxury-gold);
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    background: var(--gradient-gold);
    color: var(--charcoal-black);
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h3 {
    color: var(--deep-burgundy);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.benefit-card p {
    color: var(--charcoal-black);
    opacity: 0.8;
    line-height: 1.6;
}

/* ========================================
   ADVANCED PRODUCT GALLERY
======================================== */

.main-product-showcase {
    background: var(--pearl-white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-luxury);
    margin-bottom: 4rem;
    border: 1px solid rgba(201, 168, 76, 0.1);
    position: relative;
    overflow: hidden;
}

.main-product-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}

.product-viewer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.product-main-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-beige), rgba(201, 168, 76, 0.06));
    aspect-ratio: 1;
    border: 1px solid rgba(201, 168, 76, 0.1);
}

#mainProductImage {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: crosshair;
    filter: drop-shadow(0 12px 30px rgba(59, 35, 20, 0.15));
}

#mainProductImage:hover {
    filter: drop-shadow(0 16px 40px rgba(59, 35, 20, 0.22));
}

.image-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.zoom-btn, .rotate-btn {
    background: rgba(255,255,255,0.95);
    border: none;
    padding: 12px;
    border-radius: 50px;
    color: var(--deep-burgundy);
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.zoom-btn:hover, .rotate-btn:hover {
    background: var(--luxury-gold);
    color: var(--charcoal-black);
    transform: scale(1.1);
}

.image-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 1rem;
    justify-content: center;
}

.thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.thumbnail.active {
    border-color: var(--luxury-gold);
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(201, 168, 76, 0.25);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.magnifier {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid var(--luxury-gold);
    background: white;
    display: none;
    z-index: 100;
    pointer-events: none;
    box-shadow: var(--shadow-strong);
}

/* Color Selector */
.color-selector {
    margin-bottom: 2rem;
}

.color-selector h3 {
    margin-bottom: 1rem;
    color: var(--deep-burgundy);
    font-size: 1.2rem;
}

.color-options {
    display: grid;
    gap: 1rem;
}

.color-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid transparent;
}

.color-option:hover {
    background: rgba(201, 168, 76, 0.04);
    transform: translateX(4px);
}

.color-option.active {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.06) 0%, rgba(254, 252, 249, 0.8) 100%);
    border-color: var(--luxury-gold);
    box-shadow: 0 2px 12px rgba(201, 168, 76, 0.15);
}

.color-swatch {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.color-option:hover .color-swatch {
    transform: scale(1.1);
}

.color-option span {
    font-weight: 500;
    color: var(--charcoal-black);
}

/* Size Guide */
.size-guide h3 {
    margin-bottom: 1rem;
    color: var(--deep-burgundy);
    font-size: 1.2rem;
}

.size-chart {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: 8px;
    margin-bottom: 1rem;
}

.size-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    background: rgba(201, 168, 76, 0.04);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid transparent;
    font-weight: 600;
    color: var(--deep-burgundy);
}

.size-item:hover {
    background: var(--luxury-gold);
    color: var(--charcoal-black);
    transform: scale(1.08);
    border-color: var(--luxury-gold);
}

.size-item.selected {
    border-color: var(--luxury-gold);
    background: var(--luxury-gold);
    color: var(--charcoal-black);
    box-shadow: 0 4px 12px rgba(201, 168, 76, 0.25);
}

.size-item span {
    font-size: 0.75rem;
    opacity: 0.8;
}

.size-helper-btn {
    background: var(--deep-burgundy);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-helper-btn:hover {
    background: var(--luxury-gold);
    color: var(--charcoal-black);
    transform: scale(1.05);
}

/* Quick Actions */
.quick-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.quick-order {
    flex: 1;
    padding: 16px 24px;
    font-size: 0.95rem;
    background: var(--gradient-gold);
    border: none;
    border-radius: 50px;
    color: var(--charcoal-black);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.quick-order:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(201, 168, 76, 0.4);
    filter: brightness(1.05);
}

/* Product Features */
.product-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem 1.25rem;
    background: var(--pearl-white);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(201, 168, 76, 0.08);
}

.feature:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-luxury);
}

.feature i {
    font-size: 2.2rem;
    color: var(--luxury-gold);
    margin-bottom: 1rem;
    transition: transform 0.4s ease;
}

.feature:hover i {
    transform: scale(1.15);
}

.feature h4 {
    color: var(--deep-burgundy);
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
}

.feature p {
    color: var(--charcoal-black);
    opacity: 0.7;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* ========================================
   PRICING SECTION
======================================== */

.pricing {
    background: var(--warm-cream);
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 940px;
    margin: 0 auto;
}

.price-card {
    background: var(--pearl-white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(201, 168, 76, 0.1);
    overflow: hidden;
}

.price-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.price-card:hover::after {
    transform: scaleX(1);
}

.price-card.featured {
    border-color: var(--luxury-gold);
    transform: scale(1.05);
    box-shadow: var(--shadow-luxury);
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.04) 0%, var(--pearl-white) 100%);
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-luxury);
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--charcoal-black);
    padding: 6px 24px;
    border-radius: 0 0 15px 15px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.price-header h3 {
    color: var(--deep-burgundy);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    letter-spacing: 0.02em;
}

.price {
    margin-bottom: 1.25rem;
}

.old-price {
    text-decoration: line-through;
    color: #aaa;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.25rem;
}

.amount {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--deep-burgundy);
    letter-spacing: -0.02em;
}

.currency {
    font-size: 1rem;
    color: var(--deep-burgundy);
    font-weight: 500;
}

.price-badge {
    background: var(--deep-burgundy);
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-left: 10px;
    display: inline-block;
    font-weight: 600;
}

.price-features {
    list-style: none;
    margin: 1.5rem 0;
}

.price-features li {
    padding: 0.6rem 0;
    color: var(--charcoal-black);
    opacity: 0.8;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
    font-size: 0.95rem;
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features .fas {
    color: var(--luxury-gold);
    margin-right: 10px;
}

/* ========================================
   TESTIMONIALS
======================================== */

.testimonials {
    background: var(--primary-beige);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--pearl-white);
    padding: 2rem 2rem 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: none;
    border-top: 3px solid var(--luxury-gold);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 3.5rem;
    font-family: var(--font-serif);
    color: var(--luxury-gold);
    opacity: 0.15;
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-luxury);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.testimonial-header img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h4 {
    color: var(--deep-burgundy);
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.rating {
    display: flex;
    gap: 2px;
}

.rating .fas {
    color: var(--luxury-gold);
    font-size: 0.75rem;
}

.testimonial-card p {
    color: var(--charcoal-black);
    line-height: 1.7;
    font-style: italic;
    opacity: 0.75;
    font-size: 0.95rem;
}

/* ========================================
   HOW TO ORDER
======================================== */

.how-to-order {
    background: var(--warm-cream);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.steps-grid > .step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.75rem;
    background: var(--pearl-white);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(201, 168, 76, 0.08);
}

.steps-grid > .step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-luxury);
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--gradient-gold-subtle);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--luxury-gold);
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.steps-grid > .step:hover .step-number {
    background: var(--gradient-gold);
    color: var(--charcoal-black);
    transform: rotate(5deg);
}

.steps-grid > .step h3 {
    color: var(--deep-burgundy);
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.steps-grid > .step p {
    color: var(--charcoal-black);
    opacity: 0.7;
    line-height: 1.6;
    font-size: 0.92rem;
}

/* ========================================
   ENHANCED FORM STYLES
======================================== */

.order-form-container {
    background: var(--pearl-white);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-luxury);
    border: 1px solid rgba(201, 168, 76, 0.1);
    position: relative;
    overflow: hidden;
    max-width: 860px;
    margin: 0 auto;
}

.order-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}

.form-header .security-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.security-badges .badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--forest-green);
    font-size: 0.9rem;
    font-weight: 500;
}

.security-badges .badge i {
    color: var(--luxury-gold);
    font-size: 1.1rem;
}

/* Form Progress */
.form-progress {
    margin: 3rem 0;
}

.progress-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: rgba(201, 168, 76, 0.15);
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.1);
    color: #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
}

.step.active .step-circle {
    background: var(--gradient-gold);
    color: var(--charcoal-black);
    box-shadow: 0 4px 16px rgba(201, 168, 76, 0.35);
}

.step.completed .step-circle {
    background: var(--deep-burgundy);
    color: white;
    box-shadow: 0 4px 12px rgba(122, 30, 46, 0.3);
}

.step span {
    font-size: 0.9rem;
    color: var(--charcoal-black);
    font-weight: 500;
}

/* Enhanced Form Steps */
.form-step {
    display: none;
    animation: slideInRight 0.5s ease-out;
}

.form-step.active {
    display: block;
}

.form-step h3 {
    color: var(--deep-burgundy);
    margin-bottom: 2rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-step h3 i {
    color: var(--luxury-gold);
}

/* Enhanced Input Styling */
.form-group.enhanced {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--luxury-gold);
    z-index: 2;
}

.input-wrapper input,
.input-wrapper textarea {
    padding-left: 45px;
    border: 1.5px solid rgba(201, 168, 76, 0.15);
    border-radius: 14px;
    padding: 14px 15px 14px 45px;
    width: 100%;
    font-family: var(--font-sans);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--pearl-white);
    font-size: 0.95rem;
    color: var(--charcoal-black);
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: var(--luxury-gold);
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.08);
    background: white;
}

.select-wrapper {
    position: relative;
}

.select-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--luxury-gold);
    z-index: 2;
}

.select-wrapper select {
    padding-left: 45px;
    border: 1.5px solid rgba(201, 168, 76, 0.15);
    border-radius: 14px;
    padding: 14px 15px 14px 45px;
    width: 100%;
    background: var(--pearl-white);
    font-family: var(--font-sans);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    color: var(--charcoal-black);
}

.select-wrapper select:focus {
    outline: none;
    border-color: var(--luxury-gold);
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.08);
    background: white;
}

.input-validation {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.input-validation.valid {
    background: #28a745;
    opacity: 1;
}

.input-validation.valid::before {
    content: '✓';
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
}

.input-validation.invalid {
    background: #dc3545;
    opacity: 1;
}

.input-validation.invalid::before {
    content: '✗';
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Product Selection */
.product-selection {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.04) 0%, rgba(254, 252, 249, 0.8) 100%);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    border: 1px solid rgba(201, 168, 76, 0.1);
}

.selection-group {
    margin-bottom: 2rem;
}

.selection-group label {
    display: block;
    color: var(--deep-burgundy);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.color-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.color-choice {
    background: var(--pearl-white);
    border-radius: 16px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    text-align: center;
}

.color-choice:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(201, 168, 76, 0.2);
}

.color-choice.selected {
    border-color: var(--luxury-gold);
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.06) 0%, var(--pearl-white) 100%);
    box-shadow: 0 4px 16px rgba(201, 168, 76, 0.2);
}

.color-preview {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.color-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(212, 175, 55, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.color-choice.selected .color-overlay {
    opacity: 1;
}

.color-overlay i {
    color: var(--charcoal-black);
    font-size: 2rem;
}

.color-choice h4 {
    color: var(--deep-burgundy);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.color-choice p {
    color: var(--charcoal-black);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Size Selection */
.size-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.size-choice {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 1rem 0.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--deep-burgundy);
}

.size-choice:hover {
    border-color: var(--luxury-gold);
    transform: scale(1.05);
}

.size-choice.selected {
    background: var(--luxury-gold);
    color: var(--charcoal-black);
    border-color: var(--luxury-gold);
}

.size-choice span {
    display: block;
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 0.25rem;
}

.size-guide-btn {
    background: var(--deep-burgundy);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-guide-btn:hover {
    background: var(--luxury-gold);
    color: var(--charcoal-black);
    transform: scale(1.05);
}

/* Quantity Selection */
.quantity-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.quantity-option {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
}

.quantity-option:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.quantity-option.selected {
    border-color: var(--luxury-gold);
    background: var(--warm-cream);
}

.quantity-option.popular {
    border-color: var(--deep-burgundy);
}

.quantity-option.bestseller {
    border-color: var(--luxury-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.bestseller-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background: var(--luxury-gold);
    color: var(--charcoal-black);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
}

.quantity-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.quantity-header h4 {
    color: var(--deep-burgundy);
    font-size: 1.1rem;
}

.quantity-header .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--deep-burgundy);
}

.quantity-header .discount {
    background: var(--deep-burgundy);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.quantity-option p {
    color: var(--charcoal-black);
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Step Navigation */
.step-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

.step-prev, .step-next, .step-submit {
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.92rem;
    letter-spacing: 0.03em;
}

.step-next, .step-submit {
    background: var(--gradient-gold);
    color: var(--charcoal-black);
    margin-left: auto;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.step-prev {
    background: transparent;
    color: var(--deep-burgundy);
    border: 1.5px solid var(--deep-burgundy);
}

.step-prev:hover {
    background: var(--deep-burgundy);
    color: white;
}

.step-next:hover, .step-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
}

/* Order Summary */
.order-summary-detailed {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.04) 0%, rgba(254, 252, 249, 0.8) 100%);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    border: 1px solid rgba(201, 168, 76, 0.12);
}

.summary-product {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

#summaryProductImg {
    width: 100px;
    height: 100px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

.summary-details h4 {
    color: var(--deep-burgundy);
    margin-bottom: 0.5rem;
}

.summary-details p {
    color: var(--charcoal-black);
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.summary-price .old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 0.5rem;
}

.summary-price .current-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--deep-burgundy);
}

.summary-info h4 {
    color: var(--deep-burgundy);
    margin-bottom: 1rem;
}

.summary-info p {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
}

/* Quick Actions Bottom */
.quick-actions-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
    margin-top: 2rem;
}

.btn-whatsapp-enhanced {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 16px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-enhanced:hover {
    background: linear-gradient(135deg, #1FAF52 0%, #0f7a6b 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-enhanced i {
    font-size: 1.5rem;
}

.btn-content strong {
    display: block;
    font-size: 1rem;
}

.btn-content small {
    display: block;
    opacity: 0.9;
    font-size: 0.8rem;
}

.payment-security {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--forest-green);
    font-weight: 500;
}

.payment-security i {
    color: var(--luxury-gold);
    font-size: 1.2rem;
}

/* ========================================
   URGENCY SECTION
======================================== */

.urgency {
    background: var(--gradient-dark);
    color: white;
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}

.urgency::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold);
}

.urgency-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
    text-align: center;
}

.urgency-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.urgency-item i {
    font-size: 1.8rem;
    color: var(--luxury-gold);
    filter: drop-shadow(0 0 6px rgba(201, 168, 76, 0.4));
}

.urgency-item h3 {
    color: white;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.urgency-item p {
    opacity: 0.9;
}

.stock-counter {
    background: var(--gradient-gold);
    color: var(--charcoal-black);
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.stock-number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

/* ========================================
   FAQ SECTION
======================================== */

.faq {
    background: var(--warm-cream);
}

.faq-grid {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    gap: 0.75rem;
}

.faq-item {
    background: var(--pearl-white);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
}

.faq-item.active {
    border-color: rgba(201, 168, 76, 0.2);
    box-shadow: var(--shadow-medium);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background: var(--light-beige);
}

.faq-question h3 {
    color: var(--deep-burgundy);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.faq-question i {
    color: var(--luxury-gold);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 250px;
}

.faq-answer p {
    color: var(--charcoal-black);
    line-height: 1.7;
    opacity: 0.75;
    font-size: 0.92rem;
}

/* ========================================
   FINAL CTA
======================================== */

.final-cta {
    background: var(--gradient-dark);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold);
}

.final-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: white;
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.8;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   FOOTER
======================================== */

.footer {
    background: var(--charcoal-black);
    color: white;
    padding: 4rem 0 1.5rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-logo {
    text-align: center;
}

.footer-logo-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: contain;
    background: #fff;
    padding: 5px;
    border: 3px solid var(--luxury-gold);
    box-shadow: 0 4px 20px rgba(139, 115, 85, 0.3);
    margin-bottom: 0.75rem;
}

.footer-logo h3 {
    color: var(--luxury-gold);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    letter-spacing: 0.04em;
}

.footer-logo p {
    opacity: 0.6;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer h4 {
    color: var(--luxury-gold);
    margin-bottom: 1.25rem;
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
}

.footer p {
    opacity: 0.65;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.footer i {
    color: var(--luxury-gold);
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--luxury-gold);
    font-size: 1rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-social a:hover {
    background: var(--luxury-gold);
    color: var(--charcoal-black);
    border-color: var(--luxury-gold);
    opacity: 1;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    padding-top: 1.25rem;
    text-align: center;
    opacity: 0.5;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

/* ========================================
   ANIMATIONS
======================================== */

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes goldGlow {
    0%, 100% { box-shadow: 0 0 15px rgba(201, 168, 76, 0.2); }
    50% { box-shadow: 0 0 30px rgba(201, 168, 76, 0.35); }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Gold shimmer effect for premium buttons */
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-primary {
    position: relative;
    overflow: hidden;
}

/* ========================================
   RESPONSIVE DESIGN — MOBILE-FIRST LUXURY
======================================== */

/* ---- Tablet (max-width: 1024px) ---- */
@media (max-width: 1024px) {
    .product-viewer {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .main-product-showcase {
        padding: 2rem;
    }
    
    .product-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content {
        gap: 3rem;
    }
}

/* ---- Mobile (max-width: 768px) ---- */
@media (max-width: 768px) {
    /* --- Base spacing --- */
    :root {
        --section-padding: 56px 0;
        --container-padding: 0 16px;
    }
    
    html {
        font-size: 15px;
        -webkit-tap-highlight-color: rgba(201, 168, 76, 0.15);
    }
    
    * {
        -webkit-touch-callout: none;
    }
    
    img, a, button, input, select, textarea {
        -webkit-touch-callout: default;
    }
    
    /* --- Typography mobile --- */
    .section-title {
        font-size: 1.65rem;
        margin-bottom: 0.75rem;
        letter-spacing: -0.01em;
    }
    
    .section-title::before {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .section-title::after {
        width: 40px;
        bottom: -10px;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin: 1.25rem auto 2rem;
        padding: 0 8px;
    }
    
    /* --- Header mobile --- */
    .header {
        padding: 8px 0;
    }
    
    .header.scrolled {
        padding: 6px 0;
    }
    
    .logo .logo-img {
        width: 75px;
        height: 75px;
    }

    .logo .logo-text {
        font-size: 0.65rem;
        letter-spacing: 0.08em;
    }
    
    .logo .logo-text::after {
        display: none;
    }
    
    /* --- Hero mobile --- */
    .hero {
        padding: 90px 0 48px;
    }
    
    .hero::before {
        width: 300px;
        height: 300px;
        top: -30%;
        right: -15%;
    }
    
    .hero::after {
        width: 250px;
        height: 250px;
    }
    
    .hero-decoration {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .hero-image {
        order: -1;
        padding: 0;
    }
    
    .hero-image img {
        height: 240px;
        animation: floatProduct 5s ease-in-out infinite;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.12;
        letter-spacing: -0.02em;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.75rem;
    }
    
    .hero-cta {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary,
    .hero-cta .btn-whatsapp-express {
        width: 100%;
        max-width: 320px;
        padding: 14px 24px;
        font-size: 0.88rem;
    }
    
    /* --- Storytelling mobile --- */
    .storytelling::before {
        font-size: 5rem;
        top: 20px;
    }
    
    .story-content h2 {
        font-size: 1.45rem;
    }
    
    .story-content p {
        font-size: 0.95rem;
        line-height: 1.75;
    }
    
    /* --- Benefits mobile --- */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-card {
        padding: 1.75rem 1.5rem;
        border-radius: 16px;
        flex-direction: row;
        text-align: left;
        display: flex;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .benefit-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        border-radius: 14px;
        font-size: 1.15rem;
        margin: 0;
    }
    
    .benefit-card h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .benefit-card p {
        font-size: 0.88rem;
        line-height: 1.5;
    }
    
    .benefit-card::before {
        height: 2px;
    }
    
    /* --- Gallery mobile --- */
    .main-product-showcase {
        padding: 1.25rem;
        margin: 0 0 2rem;
        border-radius: 18px;
    }
    
    .main-product-showcase::before {
        height: 2px;
    }
    
    .product-viewer {
        gap: 1.5rem;
    }
    
    .image-container {
        border-radius: 14px;
        aspect-ratio: 4/3;
    }
    
    .image-thumbnails {
        gap: 8px;
        margin-top: 0.75rem;
    }
    
    .thumbnail {
        width: 52px;
        height: 52px;
        border-radius: 8px;
    }
    
    .color-selector h3,
    .size-guide h3 {
        font-size: 1rem;
    }
    
    .color-option {
        padding: 10px;
        border-radius: 12px;
    }
    
    .color-swatch {
        width: 32px;
        height: 32px;
    }
    
    .color-option span {
        font-size: 0.88rem;
    }
    
    .size-chart {
        grid-template-columns: repeat(auto-fit, minmax(52px, 1fr));
    }
    
    .size-item {
        padding: 10px 6px;
        border-radius: 10px;
        font-size: 0.92rem;
    }
    
    .quick-actions {
        flex-direction: column;
    }
    
    .quick-order {
        font-size: 0.92rem;
        padding: 14px 20px;
    }
    
    .product-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .feature {
        padding: 1.25rem 0.75rem;
        border-radius: 14px;
    }
    
    .feature i {
        font-size: 1.6rem;
        margin-bottom: 0.6rem;
    }
    
    .feature h4 {
        font-size: 0.88rem;
    }
    
    .feature p {
        font-size: 0.8rem;
    }
    
    /* --- Pricing mobile --- */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 100%;
    }
    
    .price-card {
        padding: 2rem 1.5rem;
        border-radius: 18px;
    }
    
    .price-card.featured {
        transform: none;
        order: -1;
    }
    
    .price-card.featured:hover {
        transform: translateY(-4px);
    }
    
    .popular-badge {
        font-size: 0.65rem;
        padding: 5px 18px;
    }
    
    .amount {
        font-size: 2.4rem;
    }
    
    .price-features li {
        font-size: 0.88rem;
        padding: 0.5rem 0;
    }
    
    /* --- Testimonials mobile --- */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .testimonial-card::before {
        font-size: 2.5rem;
        top: 10px;
        right: 14px;
    }
    
    .testimonial-header {
        margin-bottom: 1rem;
    }
    
    .testimonial-card p {
        font-size: 0.9rem;
        line-height: 1.65;
    }
    
    /* --- How to order mobile --- */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .steps-grid > .step {
        padding: 1.25rem;
        border-radius: 16px;
        gap: 1rem;
    }
    
    .step-number {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        font-size: 1.1rem;
    }
    
    .steps-grid > .step h3 {
        font-size: 0.95rem;
    }
    
    .steps-grid > .step p {
        font-size: 0.85rem;
    }
    
    /* --- Form mobile --- */
    .order-form-container {
        padding: 1.25rem;
        margin: 0;
        border-radius: 18px;
    }
    
    .order-form-container::before {
        height: 2px;
    }
    
    .form-header h2 {
        font-size: 1.35rem;
    }
    
    .form-header p {
        font-size: 0.88rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .form-progress {
        margin: 2rem 0;
    }
    
    .progress-steps {
        gap: 0.5rem;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    
    .progress-steps::before {
        display: none;
    }
    
    .step-circle {
        width: 36px;
        height: 36px;
        font-size: 0.82rem;
    }
    
    .step span {
        font-size: 0.72rem;
    }
    
    .form-step h3 {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }
    
    .input-wrapper input,
    .input-wrapper textarea {
        padding: 12px 12px 12px 40px;
        border-radius: 12px;
        font-size: 0.92rem;
    }
    
    .input-wrapper i {
        left: 12px;
        font-size: 0.9rem;
    }
    
    .select-wrapper select {
        padding: 12px 12px 12px 40px;
        border-radius: 12px;
        font-size: 0.92rem;
    }
    
    .select-wrapper i {
        left: 12px;
        font-size: 0.9rem;
    }
    
    .product-selection {
        padding: 1.25rem;
        border-radius: 16px;
    }
    
    .selection-group label {
        font-size: 0.95rem;
    }
    
    .color-selection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
    
    .color-choice {
        padding: 0.75rem;
        border-radius: 14px;
    }
    
    .color-preview {
        width: 64px;
        height: 64px;
    }
    
    .color-choice h4 {
        font-size: 0.85rem;
    }
    
    .color-choice p {
        font-size: 0.78rem;
    }
    
    .size-selection-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.4rem;
    }
    
    .size-choice {
        padding: 0.7rem 0.25rem;
        font-size: 0.88rem;
        border-radius: 10px;
    }
    
    .quantity-selection {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    
    .quantity-option {
        padding: 1.25rem;
        border-radius: 14px;
    }
    
    .step-navigation {
        flex-direction: column;
        gap: 0.6rem;
    }
    
    .step-prev, .step-next, .step-submit {
        width: 100%;
        justify-content: center;
        padding: 13px 20px;
        font-size: 0.88rem;
    }
    
    /* --- Order summary mobile --- */
    .order-summary-detailed {
        padding: 1.25rem;
        border-radius: 16px;
    }
    
    #summaryProductImg {
        width: 72px;
        height: 72px;
        border-radius: 12px;
    }
    
    .summary-details h4 {
        font-size: 0.95rem;
    }
    
    /* --- Quick actions mobile --- */
    .quick-actions-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem 0;
    }
    
    .btn-whatsapp-enhanced {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
    
    .payment-security {
        justify-content: center;
        font-size: 0.85rem;
    }
    
    /* --- Security badges mobile --- */
    .security-badges {
        gap: 0.75rem;
    }
    
    .security-badges .badge {
        font-size: 0.78rem;
    }
    
    /* --- Urgency mobile --- */
    .urgency {
        padding: 2.5rem 0;
    }
    
    .urgency-content {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .urgency-item {
        flex-direction: row;
        gap: 0.75rem;
        justify-content: flex-start;
        text-align: left;
        padding: 0 0.5rem;
    }
    
    .urgency-item i {
        font-size: 1.3rem;
        min-width: 28px;
        text-align: center;
    }
    
    .urgency-item h3 {
        font-size: 0.95rem;
    }
    
    .urgency-item p {
        font-size: 0.85rem;
    }
    
    .stock-counter {
        border-radius: 14px;
        padding: 1rem;
    }
    
    .stock-number {
        font-size: 1.6rem;
    }
    
    /* --- FAQ mobile --- */
    .faq-grid {
        gap: 0.5rem;
    }
    
    .faq-item {
        border-radius: 14px;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
    }
    
    .faq-question h3 {
        font-size: 0.88rem;
        padding-right: 0.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }
    
    .faq-answer p {
        font-size: 0.85rem;
    }
    
    /* --- Final CTA mobile --- */
    .final-cta {
        padding: 48px 0;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-content p {
        font-size: 0.92rem;
        margin-bottom: 2rem;
    }
    
    /* --- Footer mobile --- */
    .footer {
        padding: 2.5rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-logo-img {
        width: 85px;
        height: 85px;
    }

    .footer-logo h3 {
        font-size: 1.1rem;
    }
    
    .footer h4 {
        font-size: 0.88rem;
        margin-bottom: 0.75rem;
    }
    
    .footer p {
        font-size: 0.82rem;
        justify-content: center;
    }
    
    .footer-bottom {
        font-size: 0.78rem;
    }
    
    /* --- Floating elements mobile --- */
    .whatsapp-float {
        bottom: calc(18px + env(safe-area-inset-bottom, 0px));
        right: 16px;
    }
    
    .whatsapp-float a {
        width: 52px;
        height: 52px;
        font-size: 1.25rem;
    }
    
    .sticky-buy-btn {
        padding: 10px 16px;
    }
    
    .sticky-buy-btn button {
        max-width: 100%;
    }
    
    /* --- Section dividers mobile --- */
    .benefits::after, .testimonials::after, .how-to-order::after {
        font-size: 0.45rem;
    }
}

/* ---- Small phones (max-width: 480px) ---- */
@media (max-width: 480px) {
    :root {
        --section-padding: 44px 0;
        --container-padding: 0 14px;
    }
    
    .hero {
        padding: 82px 0 36px;
    }
    
    .hero-title {
        font-size: 1.65rem;
    }
    
    .hero-subtitle {
        font-size: 0.88rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-image img {
        height: 200px;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary,
    .hero-cta .btn-whatsapp-express {
        padding: 12px 20px;
        font-size: 0.82rem;
    }
    
    .story-content h2 {
        font-size: 1.25rem;
    }
    
    .story-content p {
        font-size: 0.88rem;
        line-height: 1.7;
    }
    
    /* Benefits as compact cards on small screens */
    .benefit-card {
        padding: 1.25rem 1rem;
    }
    
    .benefit-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        border-radius: 12px;
        font-size: 1rem;
    }
    
    /* Gallery small */
    .main-product-showcase {
        padding: 1rem;
        border-radius: 14px;
    }
    
    .thumbnail {
        width: 44px;
        height: 44px;
    }
    
    .color-selection-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .color-preview {
        width: 52px;
        height: 52px;
    }
    
    .size-selection-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .product-features {
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
    }
    
    .feature {
        padding: 1rem 0.6rem;
    }
    
    .feature i {
        font-size: 1.4rem;
    }
    
    .feature h4 {
        font-size: 0.8rem;
    }
    
    .feature p {
        font-size: 0.72rem;
    }
    
    /* Price mobile small */
    .price-card {
        padding: 1.75rem 1.25rem;
    }
    
    .amount {
        font-size: 2rem;
    }
    
    /* Form small */
    .order-form-container {
        padding: 1rem;
        border-radius: 14px;
    }
    
    .security-badges {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Urgency small */
    .urgency {
        padding: 2rem 0;
    }
    
    /* Image overlay fix */
    .image-overlay,
    .color-overlay {
        background: rgba(44, 44, 44, 0.9);
    }
    
    .zoom-btn, .rotate-btn {
        backdrop-filter: none;
        background: rgba(255,255,255,1);
        padding: 10px;
    }
}

/* ---- Extra small (max-width: 360px) ---- */
@media (max-width: 360px) {
    html {
        font-size: 14px;
    }
    
    .hero {
        padding: 78px 0 28px;
    }
    
    .hero-title {
        font-size: 1.45rem;
    }
    
    .hero-image img {
        height: 170px;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary,
    .hero-cta .btn-whatsapp-express {
        padding: 11px 16px;
        font-size: 0.8rem;
    }
    
    .main-product-showcase {
        padding: 0.75rem;
    }
    
    .color-preview {
        width: 44px;
        height: 44px;
    }
    
    .size-selection-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .size-choice {
        padding: 0.6rem 0.2rem;
        font-size: 0.82rem;
    }
    
    .product-features {
        grid-template-columns: 1fr;
    }
    
    .step-circle {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
    
    .step span {
        font-size: 0.65rem;
    }
}

/* Large Screens Enhancement */
@media (min-width: 1400px) {
    .container {
        max-width: 1300px;
    }
    
    .hero-content {
        gap: 5rem;
    }
    
    .main-product-showcase {
        padding: 4rem;
    }
    
    .product-viewer {
        gap: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

/* Ultra-wide Screens */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
    
    .hero-image img {
        height: 600px;
    }
    
    .main-product-showcase {
        padding: 5rem;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-decoration {
        background-size: 200% 200%;
    }
    
    .color-swatch {
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 80px 0 50px;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-text {
        order: 0;
    }
}

/* Print Styles */
@media print {
    .whatsapp-float,
    .sticky-buy-btn,
    .header,
    .image-overlay,
    .quick-actions,
    .step-navigation,
    .quick-actions-bottom {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero, .storytelling, .benefits, .product-gallery {
        background: white;
    }
    
    .section-title {
        color: black;
    }
    
    .price-card {
        border: 1px solid #000;
        break-inside: avoid;
    }
    
    .testimonial-card {
        break-inside: avoid;
    }
}

/* ========================================
   ACCESSIBILITY ENHANCEMENTS
======================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .parallax {
        transform: none !important;
    }
}

@media (prefers-contrast: high) {
    :root {
        --luxury-gold: #FFD700;
        --deep-burgundy: #800020;
        --charcoal-black: #000000;
    }
    
    .color-swatch {
        border: 2px solid #000;
    }
    
    .btn-primary, .btn-secondary {
        border: 2px solid currentColor;
    }
}

/* Focus Management */
.focus-visible:focus {
    outline: 3px solid var(--luxury-gold);
    outline-offset: 2px;
}

/* Screen Reader Support */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Enhanced Touch Targets */
@media (pointer: coarse) {
    .color-option,
    .size-item,
    .color-choice,
    .size-choice,
    .quantity-option {
        min-height: 44px;
        min-width: 44px;
    }
    
    .thumbnail {
        min-width: 44px;
        min-height: 44px;
    }
}

/* Reduce Transparency on Low-End Devices */
@media (max-width: 480px) {
    .image-overlay,
    .color-overlay {
        background: rgba(44, 44, 44, 0.9);
    }
    
    .zoom-btn, .rotate-btn {
        backdrop-filter: none;
        background: rgba(255,255,255,1);
    }
}

/* Performance Optimizations */
.gpu-accelerated {
    transform: translateZ(0);
    will-change: transform;
}

.optimize-animations {
    animation-fill-mode: both;
    backface-visibility: hidden;
}

/* Focus styles for better accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--luxury-gold);
    outline-offset: 2px;
}