/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --gold-dark: #B8941F;
    --red-dark: #8B0000;
    --red-burgundy: #6B0000;
    --xia-red: #8B0000;
    --white: #FFFFFF;
    --ivory: #FFFEF5;
    --text-light: rgba(255, 255, 255, 0.9);
    --text-dark: rgba(0, 0, 0, 0.8);
}

html {
    scroll-behavior: smooth;
    background: var(--xia-red);
    background-color: var(--xia-red);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--xia-red);
    background-color: var(--xia-red);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Noise texture overlay for depth */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.08;
}

/* Golden Particles Canvas */
#goldParticlesCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999;
    opacity: 1;
    mix-blend-mode: normal;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 16px 32px;
    background: #FFFFFF;
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #1a0000;
}

.navbar-logo {
    display: flex;
    align-items: center;
    height: 40px;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.navbar-logo:hover {
    opacity: 0.8;
}

.navbar-logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    position: relative;
}

.navbar-toggle span {
    width: 25px;
    height: 2px;
    background: #1a0000;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.navbar-toggle span:nth-child(1) {
    top: 8px;
}

.navbar-toggle span:nth-child(2) {
    top: 14px;
}

.navbar-toggle span:nth-child(3) {
    top: 20px;
}

.navbar-toggle.active span:nth-child(1) {
    top: 14px;
    transform: translateX(-50%) rotate(45deg);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-50%) scale(0);
}

.navbar-toggle.active span:nth-child(3) {
    top: 14px;
    transform: translateX(-50%) rotate(-45deg);
}

.navbar-links {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 14px;
}

.navbar-links a {
    color: #1a0000;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.navbar-links a:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.navbar-cta {
    padding: 8px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffd646, #eec72c);
    color: #2b1600;
    font-weight: 600;
    box-shadow: 0 0 16px rgba(255, 214, 70, 0.6);
    opacity: 1;
}

.navbar-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 20px rgba(255, 214, 70, 0.8);
}

/* Hero Section - Ultra Premium Christmas Design */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 120px 40px 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background: #FFFFFF;
    background-color: #FFFFFF;
    color: #1a0000;
    z-index: 2;
}

.hero * {
    position: relative;
    z-index: 4;
}

/* Golden Glitter Overlay */
.hero-glitter {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: transparent;
    opacity: 0.15;
    mix-blend-mode: normal;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(249, 210, 143, 0.5) 0, transparent 55%),
        radial-gradient(circle at 80% 30%, rgba(255, 220, 168, 0.4) 0, transparent 55%),
        radial-gradient(circle at 20% 80%, rgba(232, 184, 109, 0.3) 0, transparent 55%),
        radial-gradient(circle at 70% 90%, rgba(255, 215, 160, 0.25) 0, transparent 60%);
    animation: glitterMove 18s linear infinite alternate;
}

@keyframes glitterMove {
    0% {
        transform: translate3d(-10px, -10px, 0) scale(1);
    }
    50% {
        transform: translate3d(10px, 5px, 0) scale(1.02);
    }
    100% {
        transform: translate3d(-5px, 10px, 0) scale(1.01);
    }
}

.hero-container {
    max-width: 1000px;
    width: 100%;
    padding: 0;
    position: relative;
    z-index: 4;
}

.hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

/* Logo - Top Center */
.logo-container {
    margin-bottom: 12px;
    padding-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-img {
    max-width: clamp(200px, 30vw, 300px);
    height: auto;
    object-fit: contain;
}

/* AI Badge - Pill Shape */
.ai-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: clamp(0.625rem, 1vw, 0.75rem);
    font-weight: 500;
    letter-spacing: 1.2px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 16px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

/* Main Headline */
.hero-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 12px;
    letter-spacing: 0.8px;
    line-height: 1.2;
    text-shadow: 2px 2px 15px rgba(212, 175, 55, 0.3);
}

/* Subheadline */
.hero-subtitle {
    font-size: clamp(0.875rem, 1.6vw, 1.125rem);
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 24px;
    opacity: 1;
    letter-spacing: 0.4px;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: var(--gold);
    color: var(--red-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(0.875rem, 2vw, 1.125rem);
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    border: 2px solid var(--gold);
    cursor: pointer;
    text-transform: uppercase;
}

.cta-button:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
}

/* Hero CTA - Bright Gold/Yellow */
.cta-button.hero-cta {
    background: linear-gradient(135deg, #FFD646 0%, #EEC72C 100%);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    text-transform: none;
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    font-weight: 700;
    letter-spacing: 1.2px;
    border: none;
    box-shadow: 0 4px 25px rgba(255, 214, 70, 0.5), 0 0 40px rgba(255, 214, 70, 0.3);
    margin-bottom: 0;
}

.cta-button.hero-cta:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 35px rgba(255, 214, 70, 0.7), 0 0 60px rgba(255, 214, 70, 0.4);
    background: linear-gradient(135deg, #FFE066 0%, #F5D03A 100%);
}

.cta-button.primary {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    padding: 20px 50px;
}

.cta-button.secondary {
    width: 100%;
    margin-top: 20px;
}

.cta-button.small {
    padding: 12px 24px;
    font-size: 0.875rem;
}

/* Showcase Window Display / Video Wrapper */
.hero-video-wrapper {
    margin-top: 32px;
    max-width: 900px;
    width: 100%;
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
}

.showcase-container {
    width: 100%;
    max-width: 750px;
    margin: 0 auto 35px;
    position: relative;
}

.showcase-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 2px solid rgba(0, 0, 0, 0.6);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        inset 0 0 60px rgba(0, 0, 0, 0.5),
        0 10px 50px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(255, 214, 70, 0.2);
    background: #000;
}

/* Video Element */
.showcase-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

/* YouTube iframe */
.youtube-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: auto;
}

/* Overlay to hide YouTube branding (bottom right corner) */
.youtube-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 50px;
    background: transparent;
    pointer-events: none;
    z-index: 10;
}

/* On hover, allow clicks through but keep overlay */
.showcase-frame:hover .youtube-overlay {
    pointer-events: none;
}

/* Video Sound Toggle Button - Removed */

/* Social Proof Row */
.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    color: rgba(26, 0, 0, 0.7);
    font-size: clamp(0.625rem, 1vw, 0.75rem);
    margin-top: 24px;
}

@media (max-width: 480px) {
    .social-proof {
        margin-top: 12px;
    }
}

.proof-avatars {
    display: flex;
    gap: -6px;
}

.proof-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 214, 70, 0.8) 0%, rgba(212, 175, 55, 0.6) 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-left: -6px;
    position: relative;
}

.proof-avatar:first-child {
    margin-left: 0;
}

.proof-stars {
    color: #FFD646;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    margin: 0 4px;
}

.proof-text {
    color: rgba(26, 0, 0, 0.7);
    font-weight: 400;
}

/* Section Styles */
section {
    padding: 120px 40px 180px;
    position: relative;
    z-index: 2;
}

section * {
    position: relative;
    z-index: 1;
}

/* Ensure canvas is visible over all sections */
.offers-section,
.how-it-works,
.faq-section,
.testimonials-section,
.vsl-section,
.target-audience-section {
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 600;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

/* Section title colors based on background */
.offers-section .section-title {
    color: var(--gold);
    text-shadow: none;
    margin-bottom: 50px;
}

.how-it-works .section-title {
    color: var(--gold);
    text-shadow: none;
}

.vsl-section .section-title {
    color: var(--gold);
    text-shadow: none;
}

.vsl-section .vsl-intro {
    color: #1a0000;
}

.vsl-section .vsl-point h3 {
    color: var(--gold);
}

.vsl-section .vsl-point p {
    color: #1a0000;
}

.testimonials-section .section-title {
    color: var(--gold);
    text-shadow: none;
}

.testimonials-section .testimonial-card {
    background: #FFFFFF;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonials-section .testimonial-name {
    color: #1a0000;
}

.testimonials-section .testimonial-text {
    color: rgba(26, 0, 0, 0.8);
}

.target-audience-section .section-title {
    color: var(--gold);
    text-shadow: none;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 40px;
    opacity: 0.9;
}

@media (min-width: 769px) {
    .how-it-works .section-subtitle {
        margin-bottom: 100px;
    }
}

.how-it-works .section-subtitle {
    color: #1a0000;
}

.vsl-section .section-subtitle {
    color: #1a0000;
}

.target-audience-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.target-audience-section .section-title {
    margin-bottom: 20px;
}

.target-audience-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: #ffffff;
    opacity: 0.8;
    font-weight: 400;
    margin: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
    transform: translateY(20px);
}

/* VSL Section - White */
.vsl-section {
    background: #FFFFFF;
    background-color: #FFFFFF;
    color: #1a0000;
}

.vsl-intro {
    text-align: center;
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
    opacity: 0.95;
}

.vsl-video-container {
    max-width: 900px;
    margin: 0 auto 60px;
}

.vsl-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    background: #000;
}

.vsl-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vsl-key-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.vsl-point {
    text-align: center;
    padding: 30px 20px;
}

.vsl-point h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--gold);
    font-weight: 600;
}

.vsl-point p {
    font-size: 1rem;
    line-height: 1.6;
    color: #1a0000;
    opacity: 0.85;
}

/* Offers Section - White */
.offers-section {
    background: var(--xia-red);
    background-color: var(--xia-red);
    margin-top: 0;
    color: #ffffff;
    padding: 100px 60px;
}

.offers-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.offers-section .section-title {
    color: var(--gold);
    text-shadow: none;
    margin-bottom: 20px;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.offers-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: shimmerLine 2s ease-in-out infinite;
}

@keyframes shimmerLine {
    0%, 100% {
        opacity: 0.5;
        width: 80px;
    }
    50% {
        opacity: 1;
        width: 120px;
    }
}

.offers-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: #ffffff;
    opacity: 0.8;
    font-weight: 400;
    margin: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.offers-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* Collection Cards */
.collection-card {
    background: #FFFFFF;
    border-radius: 25px;
    padding: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 2px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(139, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    animation: cardFadeIn 0.8s ease forwards;
}

/* Compact version - always visible */
.collection-card-compact {
    position: relative;
    z-index: 2;
}

.collection-card-preview {
    padding: 0 30px 25px;
    text-align: center;
}

.collection-preview-text {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #1a0000;
    opacity: 0.7;
    margin: 12px 0 16px;
    font-weight: 400;
}

.collection-expand-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 20px;
    margin: 16px 0 12px;
    background: transparent;
    border: 2px solid rgba(139, 0, 0, 0.3);
    border-radius: 12px;
    color: #8B0000;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.collection-expand-btn:hover {
    background: rgba(139, 0, 0, 0.05);
    border-color: var(--gold);
    color: #8B0000;
    transform: translateY(-2px);
}

.collection-expand-btn svg {
    transition: transform 0.3s ease;
}

.collection-card.expanded .collection-expand-btn svg {
    transform: rotate(180deg);
}

.collection-cta-compact {
    margin-top: 10px;
}

/* Expanded version - hidden initially */
.collection-card-expanded {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s ease,
                padding 0.5s ease;
    padding: 0 30px;
}

.collection-card.expanded .collection-card-expanded {
    max-height: 2000px;
    opacity: 1;
    padding: 0 30px 25px;
}

.collection-expanded-content {
    padding-top: 25px;
    border-top: 2px solid rgba(139, 0, 0, 0.1);
    animation: fadeInUp 0.5s ease 0.2s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.collection-card.expanded .collection-expanded-content {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.collection-card:nth-child(1) {
    animation-delay: 0.2s;
}

.collection-card:nth-child(2) {
    animation-delay: 0.4s;
}

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold) 0%, #FFD700 50%, var(--gold) 100%);
    background-size: 200% 100%;
    z-index: 1;
    animation: shimmerGold 3s linear infinite;
}

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

.collection-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.collection-card:hover::after {
    opacity: 1;
}

.collection-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(212, 175, 55, 0.25),
        0 8px 24px rgba(0, 0, 0, 0.15),
        inset 0 0 80px rgba(212, 175, 55, 0.05);
    border-color: var(--gold);
    border-width: 3px;
}

.collection-card-header {
    padding: 25px 30px 18px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, rgba(139, 0, 0, 0.02) 0%, transparent 100%);
}

.collection-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--xia-red) 0%, #6B0000 100%);
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 4px 15px rgba(139, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.collection-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.collection-card:hover .collection-badge::before {
    left: 100%;
}

.collection-card:hover .collection-badge {
    transform: scale(1.05);
    box-shadow: 
        0 6px 20px rgba(139, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Removed - now using collection-card-preview */

.collection-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--xia-red);
    margin-bottom: 10px;
    line-height: 1.2;
    position: relative;
    transition: all 0.3s ease;
}

.collection-card:hover .collection-title {
    color: #6B0000;
    transform: translateX(5px);
}

.collection-subtitle {
    font-size: 1rem;
    color: #1a0000;
    opacity: 0.8;
    margin-bottom: 25px;
    line-height: 1.5;
}

.collection-note {
    font-size: 0.85rem;
    color: var(--gold);
    text-align: center;
    margin: 20px 0 15px;
    padding: 12px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-weight: 500;
    line-height: 1.4;
}

.fragrances-list {
    margin-bottom: 20px;
}

.fragrance-item {
    padding: 18px;
    background: rgba(139, 0, 0, 0.05);
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid rgba(139, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.fragrance-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, var(--gold), transparent);
    transition: width 0.4s ease;
    opacity: 0.2;
}

.fragrance-item:hover::before {
    width: 100%;
}

.fragrance-item:hover {
    background: rgba(139, 0, 0, 0.1);
    border-color: rgba(139, 0, 0, 0.3);
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.15);
}

.fragrance-item:last-child {
    margin-bottom: 0;
}

.fragrance-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--xia-red);
    margin-bottom: 6px;
}

.fragrance-family {
    font-size: 0.9rem;
    color: #1a0000;
    opacity: 0.8;
    line-height: 1.4;
}

.collection-read-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: transparent;
    border: 2px solid var(--gold);
    border-radius: 12px;
    color: var(--xia-red);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 25px 0;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.collection-read-more::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--gold);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: 0;
}

.collection-read-more:hover::before {
    width: 300px;
    height: 300px;
}

.collection-read-more span,
.collection-read-more svg {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.collection-read-more:hover {
    background: var(--gold);
    color: #1a0000;
    transform: translateY(-3px);
    box-shadow: 
        0 8px 20px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: var(--gold);
}

.collection-read-more svg {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-read-more:hover svg {
    transform: translateY(2px);
}

.collection-read-more.active svg {
    transform: rotate(180deg);
}

.collection-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
    margin-bottom: 0;
}

.collection-details.active {
    max-height: 2000px;
    padding: 20px 0;
    margin-bottom: 20px;
}

.fragrance-details {
    background: rgba(139, 0, 0, 0.03);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 3px solid var(--gold);
}

.fragrance-details:last-child {
    margin-bottom: 0;
}

.fragrance-details-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--xia-red);
    margin-bottom: 15px;
}

.notes-section {
    margin-bottom: 12px;
}

.notes-section:last-child {
    margin-bottom: 0;
}

.notes-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--xia-red);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.notes-text {
    font-size: 0.9rem;
    color: #1a0000;
    opacity: 0.85;
    line-height: 1.5;
}

.collection-gift-box {
    margin: 15px 0 18px;
    text-align: center;
    max-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gift-box-image-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.gift-box-image {
    width: auto;
    max-width: 100%;
    max-height: 280px;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.15),
        0 0 0 0 rgba(212, 175, 55, 0.3);
    border: 3px solid rgba(212, 175, 55, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.gift-box-image-wrapper:hover .gift-box-image {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.25),
        0 0 40px rgba(212, 175, 55, 0.4);
    border-color: var(--gold);
    border-width: 4px;
}

.gift-box-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gift-box-image-wrapper:hover .gift-box-hover-overlay {
    opacity: 1;
}

.gift-box-hover-icon {
    color: #ffffff;
    margin-bottom: 8px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.gift-box-hover-text {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.collection-cta {
    display: block;
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, var(--gold) 0%, #FFD700 100%);
    color: #1a0000;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 6px 25px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    margin-top: auto;
    text-align: center;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.collection-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.collection-cta:hover::before {
    left: 100%;
}

.collection-cta:hover {
    background: linear-gradient(135deg, #FFE066 0%, #FFD700 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(212, 175, 55, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    color: #000000;
}

/* New Offer Cards Design */
.offer-card-new {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 2px 12px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(139, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.offer-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, #FFD700 100%);
    z-index: 1;
}

.offer-card-new:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 12px 40px rgba(212, 175, 55, 0.2),
        0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.offer-card-header {
    padding: 30px 30px 20px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.offer-badge-new {
    display: inline-block;
    background: var(--xia-red);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}


.offer-card-body {
    padding: 0 30px 35px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 20px;
}

.offer-title-new {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #8B0000;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.offer-price-container {
    margin: 5px 0;
}

.offer-price-new {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -2px;
    display: inline-block;
}

.offer-description-new {
    font-size: 1rem;
    color: #1a0000;
    opacity: 0.75;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.offer-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 10px 0;
    flex-grow: 1;
}

.offer-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #1a0000;
    opacity: 0.85;
}

.offer-feature svg {
    color: var(--gold);
    flex-shrink: 0;
}

.offer-cta-new {
    margin-top: auto;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--gold) 0%, #FFD700 100%);
    color: #1a0000;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    border: none;
}

.offer-cta-new:hover {
    background: linear-gradient(135deg, #FFD700 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.4);
}

.offer-modern-badge {
    display: inline-block;
    background: var(--xia-red);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
    position: relative;
    z-index: 2;
}

.offer-modern-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px;
    position: relative;
    z-index: 2;
}

.offer-modern-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #8B0000;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.offer-modern-price {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--gold);
    margin: 10px 0;
    line-height: 1;
    letter-spacing: -1px;
}

.offer-modern-desc {
    font-size: 1rem;
    color: #1a0000;
    opacity: 0.8;
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}

.offer-modern-benefits {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.offer-modern-benefits li {
    font-size: 0.95rem;
    color: #1a0000;
    opacity: 0.85;
    font-weight: 400;
    padding-left: 24px;
    position: relative;
}

.offer-modern-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
}

.offers-section .offer-modern-price {
    color: #8B0000;
}

.offer-modern-cta {
    margin-top: 20px;
    width: 100%;
    text-align: center;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--gold) 0%, #FFD700 100%);
    color: #1a0000;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.offer-modern-cta:hover {
    background: linear-gradient(135deg, #FFD700 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
}

.offer-modern-upsells {
    display: flex;
    gap: 8px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.upsell-mini {
    padding: 8px 14px;
    background: rgba(139, 0, 0, 0.05);
    border-radius: 8px;
    color: #8B0000;
    text-decoration: none;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 0, 0, 0.15);
    font-weight: 500;
}

.upsell-mini:hover {
    background: rgba(139, 0, 0, 0.1);
    border-color: rgba(139, 0, 0, 0.3);
    color: #8B0000;
    transform: translateY(-1px);
}

/* Trust Badges - New Design */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.trust-badge-item:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.trust-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.trust-badge-item:hover .trust-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.trust-badge-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;
}

@media (max-width: 768px) {
    .offers-section {
        padding: 80px 40px;
    }
    
    .offers-header {
        margin-bottom: 40px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .offers-section .section-title {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
        font-size: clamp(1.6rem, 6vw, 2.2rem);
        line-height: 1.3;
    }
    
    .offers-section .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .offers-subtitle {
        font-size: clamp(1rem, 3vw, 1.2rem);
        margin-bottom: 30px;
        text-align: center;
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
        line-height: 1.6;
    }
    
    .offers-cards-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .collection-card {
        max-width: 100%;
    }
    
    .collection-card-header {
        padding: 25px 25px 20px;
    }
    
    .collection-card-preview {
        padding: 0 25px 25px;
    }
    
    .collection-preview-text {
        font-size: clamp(0.95rem, 2.5vw, 1.05rem);
        margin: 12px 0 18px;
    }
    
    .collection-expand-btn {
        padding: 14px 20px;
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        min-height: 48px;
        margin: 18px 0 12px;
    }
    
    .collection-card-expanded {
        padding: 0 25px;
    }
    
    .collection-card.expanded .collection-card-expanded {
        padding: 0 25px 25px;
    }
    
    .collection-expanded-content {
        padding-top: 20px;
    }
    
    .collection-title {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
        margin-bottom: 12px;
    }
    
    .collection-subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        margin-bottom: 20px;
    }
    
    .fragrance-item {
        padding: 14px 12px;
        margin-bottom: 12px;
    }
    
    .fragrance-name {
        font-size: clamp(1rem, 3vw, 1.2rem);
    }
    
    .fragrance-family {
        font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    }
    
    .gift-box-image {
        max-width: 100%;
        margin: 20px 0;
    }
    
    .collection-note {
        font-size: clamp(0.85rem, 2vw, 0.95rem);
        margin: 20px 0;
    }
    
    .collection-cta-full {
        display: none;
    }
    
    .collection-cta {
        white-space: normal;
        padding: 16px 24px;
        font-size: clamp(0.95rem, 2.5vw, 1.1rem);
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .trust-badges {
        gap: 30px;
        margin-top: 40px;
        padding-top: 40px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .trust-badge-item {
        min-width: 120px;
    }
    
    .trust-badge-item span {
        font-size: clamp(0.85rem, 2vw, 0.95rem);
    }
}

.perfumes-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 15px 0;
}

.perfume-mini {
    text-align: center;
    padding: 12px 8px;
    background: rgba(139, 0, 0, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(139, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.perfume-mini:hover {
    background: rgba(139, 0, 0, 0.1);
    border-color: rgba(139, 0, 0, 0.4);
    transform: translateY(-2px);
}

.perfume-mini-img {
    width: 50px;
    height: 65px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1) 0%, rgba(139, 0, 0, 0.05) 100%);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    color: #1a0000;
    font-size: 0.65rem;
    font-weight: 600;
    border: 1px solid rgba(139, 0, 0, 0.2);
}

.perfume-mini-name {
    font-size: 0.75rem;
    color: #1a0000;
    font-weight: 600;
    margin-bottom: 4px;
}

.perfume-mini-price {
    font-size: 0.85rem;
    color: #8B0000;
    font-weight: 700;
}

@media (max-width: 968px) {
    .offers-modern-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .perfumes-mini-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.offer-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 35px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.offers-section .offer-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

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

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}

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

.offer-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--red-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-badge.discount {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: var(--white);
}

.offer-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.2;
}

.offers-section .offer-title {
    color: #ffffff;
}

.offers-section .offer-subtitle {
    color: #ffffff;
}

.offer-subtitle {
    font-size: 1.125rem;
    margin-bottom: 25px;
    opacity: 0.95;
    line-height: 1.5;
}

.offer-benefits {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.offer-benefits li {
    padding: 8px 0;
    font-size: 1rem;
    line-height: 1.6;
}

.offers-section .offer-benefits li {
    color: #ffffff;
}

/* Trust Icons */
.trust-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.875rem;
}

.trust-item svg {
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

/* Perfumes Gallery Styles */
.perfumes-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.perfume-item {
    text-align: center;
    padding: 18px 12px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    transition: all 0.3s ease;
}

.perfume-item:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.perfume-image-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.perfume-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #ffffff;
}

.perfume-description {
    font-size: 0.8rem;
    color: #ffffff;
    margin-bottom: 10px;
    opacity: 0.85;
    line-height: 1.4;
}

.perfume-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
}

.perfume-pack-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.pack-option {
    display: block;
    padding: 12px 20px;
    background: rgba(139, 0, 0, 0.1);
    border-radius: 8px;
    color: #8B0000;
    text-decoration: none;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 0, 0, 0.2);
}

.pack-option:hover {
    background: rgba(139, 0, 0, 0.2);
    border-color: #8B0000;
    color: #8B0000;
}


/* How It Works - White */
.how-it-works {
    background: #FFFFFF;
    background-color: #FFFFFF;
    color: #1a0000;
    padding-bottom: 80px;
}

.how-it-works .section-title {
    color: var(--gold);
    text-shadow: none;
}

.how-it-works .section-subtitle,
.how-it-works .step-title,
.how-it-works .step-description {
    color: #1a0000;
}

.step-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin-top: 15px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.step-result {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 2px solid rgba(212, 175, 55, 0.7) !important;
}

/* Override for CardSwap container */
#stepsCardSwapContainer .step-result {
    background: #FFFFFF !important;
    background-color: #FFFFFF !important;
}

.step-result .step-icon {
    background: var(--gold) !important;
    font-size: 2rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.5);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.step-card:hover {
    border-color: rgba(212, 175, 55, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.how-it-works .step-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.6);
}

.step-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
}

.how-it-works .step-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(212, 175, 55, 0.9);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--red-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--white);
    font-weight: 600;
    text-align: center;
    width: 100%;
}

.step-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

/* Target Audience Section - White */
.target-audience-section {
    background: var(--xia-red);
    background-color: var(--xia-red);
    color: #ffffff;
}

/* Gift Card Product Selector - High Conversion Design */
.gift-cards-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: start;
}

.gift-card-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    height: 100%;
}

.gift-card-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.gift-card-image-wrapper-clickable {
    cursor: pointer;
    position: relative;
    width: 100%;
    max-width: 550px;
    transition: transform 0.3s ease;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gift-card-image-wrapper-clickable:hover {
    transform: scale(1.05);
}

.gift-card-visual {
    position: relative;
    background: linear-gradient(135deg, var(--xia-red) 0%, #6B0000 100%);
    border-radius: 20px;
    padding: 25px 40px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(212, 175, 55, 0.3);
    overflow: hidden;
    border: 3px solid rgba(212, 175, 55, 0.5);
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gift-card-name {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--gold);
    margin: 0;
}

.gift-card-buy-btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--gold) 0%, #FFD700 100%);
    color: #1a0000;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.gift-card-buy-btn:hover {
    background: linear-gradient(135deg, #FFD700 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.4);
}

.gift-card-product-wrapper {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.gift-card-product-card {
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    position: relative;
}

/* Gift Card Image/Visual */
.gift-card-image-container {
    background: linear-gradient(135deg, var(--xia-red) 0%, #6B0000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.gift-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    animation: glowPulse 4s ease-in-out infinite;
}

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

.gift-card-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFFFFF;
}

.gift-card-logo {
    margin-bottom: 15px;
}

.gift-card-logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.gift-card-title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    margin-bottom: 8px;
    color: #FFFFFF;
    line-height: 1.2;
}

.gift-card-subtitle {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    opacity: 0.9;
    margin-bottom: 15px;
}

.gift-card-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    margin: 15px auto 20px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    display: block;
}

.gift-card-visual-modal .gift-card-image {
    max-width: 250px;
    margin: 10px auto 15px;
}

.gift-card-visual-modal .gift-card-title {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.gift-card-visual-modal .gift-card-subtitle {
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.gift-card-visual-modal .gift-card-price {
    font-size: 2rem;
}

.gift-card-visual-modal .gift-card-logo-img {
    height: 35px;
    margin-bottom: 10px;
}

.gift-card-price {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Selector Container */
.gift-card-selector-container {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: #FFFFFF;
}

/* Selector Container in Modal */
.gift-card-modal-body .gift-card-selector-container {
    padding: 20px;
    background: #FFFFFF;
    border-top: 1px solid rgba(139, 0, 0, 0.1);
    gap: 15px;
    flex-shrink: 0;
}

.gift-card-modal-body .selector-section {
    gap: 10px;
}

.gift-card-modal-body .selector-label {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.gift-card-modal-body .recipient-selector {
    gap: 8px;
}

.gift-card-modal-body .recipient-option {
    padding: 10px 8px;
    color: #1a0000;
}

.gift-card-modal-body .recipient-option.active {
    color: #FFFFFF;
}

.gift-card-modal-body .recipient-icon {
    height: 60px;
    margin-bottom: 6px;
}

.gift-card-modal-body .recipient-text {
    font-size: 0.8rem;
    color: #1a0000;
}

.gift-card-modal-body .recipient-option.active .recipient-text {
    color: #FFFFFF;
}

.gift-card-modal-body .quantity-section {
    padding: 15px;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.gift-card-modal-body .quantity-label {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.gift-card-modal-body .quantity-controls {
    gap: 15px;
    margin: 5px 0;
}

.gift-card-modal-body .quantity-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
}

.gift-card-modal-body .quantity-input {
    width: 60px;
    height: 40px;
    font-size: 1rem;
}

.gift-card-modal-body .quantity-total {
    font-size: 0.95rem;
    margin-bottom: 0;
    margin-top: 5px;
    color: #1a0000;
}

.gift-card-modal-body .quantity-total strong {
    color: var(--xia-red);
    font-weight: 700;
}

.gift-card-modal-body .gift-card-buy-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    padding: 14px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-top: 5px;
    text-decoration: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #1a0000;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 10;
}

.gift-card-modal-body .gift-card-buy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #E8C547 0%, var(--gold) 100%);
}

.selector-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.selector-label {
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 600;
    color: #1a0000;
    margin-bottom: 10px;
}

.recipient-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.recipient-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    background: rgba(139, 0, 0, 0.05);
    border: 2px solid rgba(139, 0, 0, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.recipient-option:hover {
    background: rgba(139, 0, 0, 0.1);
    border-color: rgba(139, 0, 0, 0.4);
    transform: translateY(-2px);
}

.recipient-option.active {
    background: var(--xia-red);
    border-color: var(--gold);
    color: #FFFFFF;
    box-shadow: 0 4px 20px rgba(139, 0, 0, 0.3);
}

.recipient-icon {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
    display: block;
}

.recipient-text {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    font-weight: 600;
    color: inherit;
}

.recipient-option.active .recipient-text {
    color: #FFFFFF;
}

/* Quantity Section */
.quantity-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 25px;
    background: rgba(139, 0, 0, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(139, 0, 0, 0.1);
}

.quantity-label {
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 600;
    color: #1a0000;
    margin-bottom: 5px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 10px 0;
}

.quantity-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--xia-red);
    background: #FFFFFF;
    color: var(--xia-red);
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: var(--xia-red);
    color: #FFFFFF;
    transform: scale(1.1);
}

.quantity-input {
    width: 80px;
    height: 45px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    border: 2px solid var(--xia-red);
    border-radius: 8px;
    color: #1a0000;
    background: #FFFFFF;
}

.quantity-total {
    text-align: center;
    margin-top: 10px;
}

.total-price {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: #1a0000;
}

.total-price strong {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--xia-red);
    font-weight: 700;
}

/* Purchase Section */
.purchase-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gift-card-buy-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px 40px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #1a0000;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gift-card-buy-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #E8C547 0%, var(--gold) 100%);
}

.buy-button-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.gift-card-buy-button:hover .buy-button-icon {
    transform: translateX(5px);
}

.purchase-note {
    text-align: center;
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    color: rgba(26, 0, 0, 0.7);
    font-style: italic;
}

/* XIA Different Card */
.xia-different-card {
    margin-top: 30px;
    text-align: center;
}

.xia-different-trigger {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.xia-different-trigger:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.xia-different-icon {
    font-size: 1.2rem;
}

.xia-different-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.xia-different-trigger:hover .xia-different-arrow {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 968px) {
    .gift-card-product-card {
        grid-template-columns: 1fr;
    }
    
    .gift-card-image-container {
        padding: 40px 30px;
    }
    
    .gift-card-selector-container {
        padding: 40px 30px;
    }
    
    .recipient-selector {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .target-audience-section {
        padding: 60px 20px;
    }
    
    .target-audience-header {
        margin-bottom: 30px;
    }
    
    .target-audience-subtitle {
        font-size: clamp(1rem, 3vw, 1.2rem);
        margin-bottom: 30px;
    }
    
    .gift-cards-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .gift-card-item {
        padding: 25px 20px;
    }
    
    .gift-card-product-wrapper {
        padding: 0 15px;
    }
    
    .gift-card-image-container {
        padding: 30px 20px;
    }
    
    .gift-card-visual {
        padding: 25px 20px;
    }
    
    .gift-card-title {
        font-size: clamp(1.4rem, 4vw, 1.8rem);
    }
    
    .gift-card-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.2rem);
    }
    
    .gift-card-price {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    
    .gift-card-image-actual {
        max-width: 100%;
        height: auto;
        margin-top: 15px;
    }
    
    .gift-card-selector-container {
        padding: 30px 20px;
    }
    
    .selector-label {
        font-size: clamp(1rem, 2.5vw, 1.1rem);
        margin-bottom: 15px;
    }
    
    .recipient-selector {
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .recipient-option {
        padding: 14px 12px;
        min-height: 60px;
    }
    
    .recipient-icon {
        width: 50px;
        height: 50px;
    }
    
    .recipient-text {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }
    
    .quantity-label {
        font-size: clamp(0.95rem, 2.5vw, 1.05rem);
        margin-bottom: 12px;
    }
    
    .quantity-controls {
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .quantity-btn {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }
    
    .quantity-input {
        width: 70px;
        height: 44px;
        font-size: 1.1rem;
    }
    
    .total-price {
        font-size: clamp(1rem, 2.5vw, 1.1rem);
    }
    
    .total-price strong {
        font-size: clamp(1.2rem, 3vw, 1.3rem);
    }
    
    .gift-card-buy-button {
        padding: 18px 30px;
        font-size: clamp(1rem, 2.5vw, 1.1rem);
        min-height: 52px;
    }
    
    .purchase-note {
        font-size: clamp(0.8rem, 2vw, 0.9rem);
        margin-top: 12px;
    }
    
    .xia-different-card {
        margin-top: 25px;
    }
    
    .xia-different-trigger {
        padding: 14px 25px;
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        min-height: 48px;
    }
}

.audience-card-static {
    background: rgba(139, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(139, 0, 0, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 600px;
    margin: 60px auto 0;
}

.audience-card-static:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(139, 0, 0, 0.2);
    border-color: rgba(139, 0, 0, 0.4);
}

/* Description Modal */
.description-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.description-modal-content {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    max-width: 700px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-height: 90vh;
    overflow-y: auto;
}

.description-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    background: rgba(139, 0, 0, 0.1);
    color: #8B0000;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.3s ease;
}

.description-modal-close:hover {
    background: rgba(139, 0, 0, 0.2);
    transform: scale(1.1);
}

.description-modal-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--xia-red);
    margin-bottom: 20px;
    text-align: center;
}

.description-modal-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1a0000;
    margin-bottom: 30px;
    text-align: left;
    opacity: 0.9;
}

.description-modal-text > p:first-child {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-modes {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.pricing-mode {
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.pricing-mode:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.pricing-mode-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #8B0000;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-mode-price {
    color: var(--gold);
    font-size: 1.5rem;
}

.pricing-mode-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #1a0000;
    opacity: 0.9;
    margin: 0;
}

.description-modal-actions {
    display: flex;
    justify-content: center;
}

.description-modal-cta {
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--gold) 0%, #FFD700 100%);
    color: #1a0000;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.description-modal-cta:hover {
    background: linear-gradient(135deg, #FFD700 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
}

/* Quantity Modal */
.quantity-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.quantity-modal-content {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.quantity-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    background: rgba(139, 0, 0, 0.1);
    color: #8B0000;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.3s ease;
}

.quantity-modal-close:hover {
    background: rgba(139, 0, 0, 0.2);
    transform: scale(1.1);
}

/* Fragrance Modal */
.fragrance-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fragrance-modal.active {
    display: flex;
    opacity: 1;
}

.fragrance-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.fragrance-modal-content {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8F0 100%);
    border-radius: 24px;
    padding: 0;
    max-width: 600px;
    width: 100%;
    position: relative;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(212, 175, 55, 0.2);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.fragrance-modal.active .fragrance-modal-content {
    transform: scale(1) translateY(0);
}

.fragrance-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(139, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.95);
    color: var(--xia-red);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.fragrance-modal-close:hover {
    background: var(--xia-red);
    color: #FFFFFF;
    border-color: var(--xia-red);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.3);
}

.fragrance-modal-close svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.fragrance-modal-body {
    padding: 50px 40px 40px;
    text-align: center;
}

.fragrance-modal-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--xia-red);
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.fragrance-modal-family {
    font-size: 1.1rem;
    color: #1a0000;
    opacity: 0.85;
    margin-bottom: 40px;
    font-weight: 500;
    line-height: 1.6;
}

.fragrance-modal-notes {
    display: flex;
    flex-direction: column;
    gap: 28px;
    text-align: left;
}

.fragrance-modal-notes-section {
    padding: 24px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.03) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(139, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.fragrance-modal-notes-section:hover {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.06) 0%, rgba(212, 175, 55, 0.08) 100%);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(4px);
}

.fragrance-modal-notes-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 10px;
}

.fragrance-modal-notes-text {
    font-size: 1.1rem;
    color: #1a0000;
    line-height: 1.8;
    font-weight: 400;
}

.fragrance-modal-cta {
    display: inline-block;
    margin-top: 40px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--gold) 0%, #FFD700 100%);
    color: #1a0000;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    text-align: center;
}

.fragrance-modal-cta:hover {
    background: linear-gradient(135deg, #FFD700 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
}

.fragrance-modal-cta-text {
    display: inline;
}

.fragrance-modal-cta-name {
    display: inline;
    font-weight: 800;
}

@media (max-width: 768px) {
    .fragrance-modal-content {
        max-width: 95%;
        border-radius: 20px;
    }

    .fragrance-modal-body {
        padding: 40px 25px 30px;
    }

    .fragrance-modal-title {
        font-size: 1.8rem;
    }

    .fragrance-modal-family {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .fragrance-modal-notes {
        gap: 20px;
    }

    .fragrance-modal-notes-section {
        padding: 20px;
    }

    .fragrance-modal-notes-text {
        font-size: 1rem;
    }

    .fragrance-modal-cta {
        margin-top: 30px;
        padding: 14px 30px;
        font-size: 1rem;
    }

    .fragrance-modal-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
    }
}

/* Image Modal */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10002;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal.active {
    display: flex;
    opacity: 1;
}

.image-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.image-modal-content {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 0;
    max-width: 90%;
    max-height: 90vh;
    width: auto;
    position: relative;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(212, 175, 55, 0.2);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.image-modal.active .image-modal-content {
    transform: scale(1) translateY(0);
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(139, 0, 0, 0.1);
    color: #8B0000;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.image-modal-close:hover {
    background: rgba(139, 0, 0, 0.2);
    transform: scale(1.1);
}

.image-modal-body {
    padding: 60px 40px 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    overflow: auto;
    position: relative;
}

.modal-image {
    max-width: calc(100% - 100px);
    max-height: calc(90vh - 100px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

.image-modal-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.9);
    color: #1a0000;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
    z-index: 10;
}

.image-modal-nav:hover {
    background: #ffffff;
    border-color: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.image-modal-nav:active {
    transform: scale(0.95);
}

.image-modal-prev {
    position: absolute;
    left: 20px;
}

.image-modal-next {
    position: absolute;
    right: 20px;
}

@media (max-width: 768px) {
    .image-modal-content {
        max-width: 95%;
        max-height: 95vh;
    }
    
    .image-modal-body {
        padding: 50px 50px 20px;
        gap: 10px;
    }
    
    .image-modal-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
    }
    
    .modal-image {
        max-width: calc(100% - 80px);
        max-height: calc(90vh - 80px);
    }
    
    .image-modal-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .image-modal-prev {
        left: 10px;
    }
    
    .image-modal-next {
        right: 10px;
    }
}

/* Gift Card Modal */
.gift-card-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10003;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.gift-card-modal.active {
    display: flex;
    opacity: 1;
}

/* Hide navbar when gift card modal is active */
body.gift-card-modal-open .navbar {
    display: none !important;
}

.gift-card-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.gift-card-modal-content {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 0;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    -webkit-overflow-scrolling: touch;
}

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

.gift-card-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.9);
    color: #1a0000;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.gift-card-modal-close:hover {
    background: #ffffff;
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.gift-card-modal-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.gift-card-visual-modal {
    position: relative;
    background: linear-gradient(135deg, var(--xia-red) 0%, #6B0000 100%);
    padding: 25px 20px;
    box-shadow: none;
    overflow: hidden;
    border: none;
    border-radius: 0;
}

@media (max-width: 768px) {
    .gift-card-modal {
        padding: 10px;
        align-items: flex-start;
        padding-top: 20px;
    }
    
    .gift-card-modal-content {
        max-width: 95%;
        max-height: calc(100vh - 40px);
        margin: auto;
    }
    
    .gift-card-visual-modal {
        padding: 10px 15px 15px;
        min-height: auto;
    }
    
    .gift-card-visual-modal .gift-card-logo {
        display: none;
    }
    
    .gift-card-visual-modal .gift-card-title {
        display: none;
    }
    
    .gift-card-visual-modal .gift-card-subtitle {
        display: none;
    }
    
    .gift-card-visual-modal .gift-card-image {
        display: none;
    }
    
    .gift-card-visual-modal .gift-card-price {
        display: none;
    }
    
    .gift-card-modal-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        position: fixed;
        z-index: 10004;
    }
    
    .gift-card-modal-body .gift-card-selector-container {
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .flowing-menu-wrapper {
        height: 400px;
    }
    
    .menu__item-link {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }
    
    .marquee span {
        font-size: clamp(1.2rem, 4vw, 2rem);
    }
    
    .quantity-modal-content {
        padding: 30px 25px;
    }
}

/* Steps CardSwap Wrapper */
.steps-card-swap-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 60px auto 0;
    min-height: 500px;
    position: relative;
}

@media (min-width: 769px) {
    .steps-card-swap-wrapper {
        margin-top: 140px;
        padding-bottom: 40px;
    }
}

/* Experiencia Slideshow */
.experiencia-slideshow-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.experiencia-slideshow {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(212, 175, 55, 0.2);
    background: #FFFFFF;
    aspect-ratio: 16 / 9;
}

.experiencia-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.experiencia-slide.active {
    opacity: 1;
    z-index: 1;
}

.experiencia-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.experiencia-slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--gold);
    color: #8B0000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
}

.experiencia-slide-nav:hover {
    background: var(--gold);
    color: #1a0000;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
}

.experiencia-slide-prev {
    left: 20px;
}

.experiencia-slide-next {
    right: 20px;
}

.experiencia-slide-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    z-index: 10;
    position: relative;
}

.experiencia-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.experiencia-dot-inner {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.experiencia-dot.active .experiencia-dot-inner {
    opacity: 1;
}

.experiencia-dot:hover {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .experiencia-slideshow-wrapper {
        margin: 40px auto 0;
        padding: 0 15px;
    }
    
    .experiencia-slide-nav {
        width: 40px;
        height: 40px;
    }
    
    .experiencia-slide-prev {
        left: 10px;
    }
    
    .experiencia-slide-next {
        right: 10px;
    }
    
    .experiencia-slide-dots {
        margin-top: 15px;
        gap: 10px;
    }
}

/* Mobile grid version - hidden on desktop */
.steps-grid-mobile {
    display: none;
}

.steps-card-swap-wrapper {
    position: relative;
}

.card-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--gold);
    color: #8B0000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
}

.card-nav-btn:hover {
    background: var(--gold);
    color: #1a0000;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
}

.card-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.card-nav-prev {
    left: -80px;
}

.card-nav-next {
    right: -80px;
}

@media (max-width: 1024px) {
    .card-nav-prev {
        left: -60px;
    }
    
    .card-nav-next {
        right: -60px;
    }
}

@media (max-width: 768px) {
    .card-nav-btn {
        display: none;
    }
}

#stepsCardSwapContainer {
    position: relative;
    width: 650px;
    height: 450px;
    perspective: 900px;
    overflow: visible;
    margin: 0 auto;
}

#stepsCardSwapContainer .card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 650px;
    height: 450px;
    border-radius: 20px;
    transform-style: preserve-3d;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    padding: 50px 45px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    background-color: #FFFFFF;
    border: 2px solid rgba(212, 175, 55, 0.5);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

#stepsCardSwapContainer .card .step-header {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    margin-bottom: 20px !important;
    width: 100% !important;
}

#stepsCardSwapContainer .card .step-title {
    color: #8B0000;
    font-weight: 700;
    margin: 0 !important;
    flex: 1;
}

#stepsCardSwapContainer .card .step-description {
    color: #1a0000;
    opacity: 0.9;
    font-weight: 400;
}

#stepsCardSwapContainer .card .step-icon {
    background: var(--gold) !important;
    color: #1a0000 !important;
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    min-height: 50px !important;
    max-width: 50px !important;
    max-height: 50px !important;
    border-radius: 50% !important;
    aspect-ratio: 1 / 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transform-style: flat !important;
    transform: skewY(-6deg) !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4) !important;
}

#stepsCardSwapContainer .card.step-result {
    background: #FFFFFF !important;
    background-color: #FFFFFF !important;
    border: 2px solid rgba(212, 175, 55, 0.7) !important;
}

#stepsCardSwapContainer .card.step-result .step-title {
    color: #8B0000 !important;
}

#stepsCardSwapContainer .card.step-result .step-description {
    color: #1a0000 !important;
    opacity: 0.9 !important;
}

@media (max-width: 768px) {
    /* Hide CardSwap animation on mobile, show grid instead */
    #stepsCardSwapContainer {
        display: none !important;
    }
    
    .steps-card-swap-wrapper {
        min-height: auto;
    }
    
    /* Show grid layout for mobile */
    .steps-grid-mobile {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .steps-grid-mobile .step-card {
        background: #FFFFFF;
        background-color: #FFFFFF;
        border: 2px solid rgba(212, 175, 55, 0.5);
        border-radius: 20px;
        padding: 30px 25px;
        text-align: center;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    }
    
    .steps-grid-mobile .step-card .step-title {
        color: #8B0000;
        font-weight: 700;
    }
    
    .steps-grid-mobile .step-card .step-description {
        color: #1a0000;
        opacity: 0.9;
        font-weight: 400;
    }
    
    .steps-grid-mobile .step-card.step-result {
        background: #FFFFFF !important;
        background-color: #FFFFFF !important;
        border: 2px solid rgba(212, 175, 55, 0.7) !important;
    }
}

@media (max-width: 480px) {
    #stepsCardSwapContainer {
        display: none !important;
    }
    
    .steps-grid-mobile {
        gap: 25px;
    }
    
    .steps-grid-mobile .step-card {
        padding: 25px 20px;
    }
}

.audience-card {
    background: rgba(139, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(139, 0, 0, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(139, 0, 0, 0.2);
    border-color: rgba(139, 0, 0, 0.4);
}

.audience-title {
    font-size: 1.75rem;
    margin-bottom: 10px;
    color: #8B0000;
    font-weight: 600;
}

.audience-subtitle {
    font-size: 1.125rem;
    margin-bottom: 20px;
    color: #1a0000;
    font-weight: 500;
    opacity: 0.9;
}

.audience-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #1a0000;
    opacity: 0.85;
    flex-grow: 1;
}

.audience-card .cta-button {
    margin-top: auto;
}

/* Toggle button to show quantity selector */
.audience-cta-toggle {
    margin-top: auto;
    padding: 14px 28px;
    background: var(--gold);
    color: #1a0000;
    border: 2px solid var(--gold);
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(0.875rem, 2vw, 1rem);
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    width: 100%;
}

.audience-cta-toggle:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
}

.audience-card.active .audience-cta-toggle {
    display: none;
}

/* Quantity Selector */
.quantity-selector {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(139, 0, 0, 0.1);
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.audience-card.active .quantity-selector {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Show quantity selector in modal */
.quantity-modal .quantity-selector {
    display: block !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.quantity-label {
    display: block;
    font-size: 0.95rem;
    color: #1a0000;
    margin-bottom: 15px;
    font-weight: 500;
    opacity: 0.9;
}

.quantity-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: var(--gold);
    color: #1a0000;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
}

.quantity-btn:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.quantity-btn:active {
    transform: scale(0.95);
}

.quantity-input {
    width: 60px;
    height: 40px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    border: 2px solid rgba(139, 0, 0, 0.3);
    border-radius: 8px;
    background: #ffffff;
    color: #1a0000;
    -moz-appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-total {
    margin-bottom: 15px;
}

.total-price {
    font-size: 1.1rem;
    color: #1a0000;
    font-weight: 500;
}

.total-price strong {
    color: #8B0000;
    font-size: 1.3rem;
    font-weight: 700;
}

.quantity-cta {
    width: 100%;
    margin-top: 10px;
}

/* Testimonials - Red */
.testimonials-section {
    background: #FFFFFF;
    background-color: #FFFFFF;
    color: #1a0000;
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-left {
    align-self: flex-start;
    max-width: 70%;
    margin-right: auto;
}

.testimonial-right {
    align-self: flex-end;
    max-width: 70%;
    margin-left: auto;
}

.testimonial-card {
    background: #FFFFFF;
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.5);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--red-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1a0000;
    margin-bottom: 5px;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.875rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: rgba(26, 0, 0, 0.8);
    line-height: 1.7;
    font-style: italic;
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 20px;
    }
    
    .testimonials-container {
        gap: 25px;
    }
    
    .testimonial-left,
    .testimonial-right {
        max-width: 100%;
        align-self: stretch;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-header {
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .testimonial-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .testimonial-name {
        font-size: clamp(0.95rem, 2.5vw, 1rem);
    }
    
    .testimonial-stars {
        font-size: clamp(0.75rem, 2vw, 0.875rem);
    }
    
    .testimonial-text {
        font-size: clamp(0.9rem, 2.5vw, 0.95rem);
        line-height: 1.6;
    }
}

/* FAQ Section - Red */
.faq-section {
    background: var(--xia-red);
    background-color: var(--xia-red);
    color: #ffffff;
}

.faq-section .section-title {
    color: var(--gold);
    text-shadow: none;
}

.faq-section .faq-question {
    color: var(--gold);
    opacity: 1;
    font-weight: 600;
}

.faq-section .faq-answer p {
    color: #ffffff;
    opacity: 0.9;
    font-weight: 400;
}

.faq-section .faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.faq-section .faq-answer li {
    color: #ffffff;
    opacity: 0.9;
    font-weight: 400;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.faq-section .faq-answer li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Coming Soon Section - White (to maintain alternating pattern) */
.coming-soon-section {
    background: #FFFFFF;
    background-color: #FFFFFF;
    color: #1a0000;
    text-align: center;
    padding: 120px 40px 80px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.coming-soon-content {
    max-width: 1000px;
    margin: 0 auto;
}

.coming-soon-header {
    margin-bottom: 0;
}

.coming-soon-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.coming-soon-icon {
    font-size: 5rem;
    animation: floatGlow 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes floatGlow {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.coming-soon-title {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin: 0 0 30px 0;
    line-height: 1.2;
}

.title-word {
    display: inline-block;
    color: var(--gold);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    transform: translateY(20px);
}

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

.title-word.highlight {
    color: var(--gold);
    position: relative;
}

.title-word.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.coming-soon-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: #1a0000;
    opacity: 0.95;
    line-height: 1.8;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 0.8s ease 0.7s forwards;
    opacity: 0;
}

/* Coming Soon Slider */
.coming-soon-slider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.coming-soon-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    aspect-ratio: 16 / 9;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    pointer-events: none;
    z-index: 2;
    border-radius: 24px;
}

.slider-track {
    display: flex;
    position: relative;
    height: 100%;
    will-change: transform;
}

.slider-slide {
    min-width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.05);
    pointer-events: none;
}

.slider-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    z-index: 1;
}

.slider-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 24px;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slider-slide.active .slider-image {
    transform: scale(1.05);
}

.coming-soon-slider:hover .slider-slide.active .slider-image {
    transform: scale(1.08);
}

/* Progress Bar */
.slider-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 5;
    border-radius: 0 0 24px 24px;
    overflow: hidden;
}

.slider-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), rgba(212, 175, 55, 0.8));
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

/* Slider Navigation Buttons */
.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.4);
    color: #ffffff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 15;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
    opacity: 0.8;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.slider-nav-btn:hover {
    background: rgba(212, 175, 55, 0.9);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 
        0 8px 25px rgba(212, 175, 55, 0.4),
        0 0 0 4px rgba(212, 175, 55, 0.1);
    opacity: 1;
}

.slider-nav-btn:active {
    transform: translateY(-50%) scale(1.05);
}

.slider-prev {
    left: 24px;
}

.slider-next {
    right: 24px;
}

.slider-nav-btn svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
    transition: transform 0.3s ease;
}

.slider-prev:hover svg {
    transform: translateX(-2px);
}

.slider-next:hover svg {
    transform: translateX(2px);
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    z-index: 10;
}

.slider-dot {
    width: 48px;
    height: 8px;
    border-radius: 4px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    position: relative;
    overflow: hidden;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.slider-dot-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.4);
    border-radius: 4px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-dot:hover {
    background: rgba(212, 175, 55, 0.3);
    transform: scaleY(1.3);
}

.slider-dot:hover .slider-dot-inner {
    transform: scaleX(1);
}

.slider-dot.active {
    background: rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
    transform: scaleY(1.4);
}

.slider-dot.active .slider-dot-inner {
    background: var(--gold);
    transform: scaleX(1);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.8);
}

@keyframes fadeIn {
    to {
        opacity: 0.95;
    }
}

.coming-soon-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin: 60px auto 80px;
    max-width: 1000px;
}

.coming-soon-feature {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.coming-soon-feature[data-feature="1"] { animation-delay: 0.8s; }
.coming-soon-feature[data-feature="2"] { animation-delay: 0.9s; }
.coming-soon-feature[data-feature="3"] { animation-delay: 1s; }

.coming-soon-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.coming-soon-feature:hover::before {
    left: 100%;
}

.coming-soon-feature:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(212, 175, 55, 0.3);
}

.feature-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.feature-icon {
    font-size: 3.5rem;
    display: block;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.feature-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.coming-soon-feature:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
}

.coming-soon-feature:hover .feature-glow {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.5);
}

.feature-title {
    color: var(--gold);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 600;
    margin: 0 0 12px 0;
    letter-spacing: 0.5px;
}

.feature-description {
    color: #ffffff;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 400;
    margin: 0;
    opacity: 0.85;
    line-height: 1.6;
}

/* Newsletter Section */
.coming-soon-newsletter {
    margin-top: 80px;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 25px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.coming-soon-newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter-title {
    color: var(--gold);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin: 0 0 15px 0;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.newsletter-subtitle {
    color: #ffffff;
    font-size: clamp(1rem, 2vw, 1.2rem);
    opacity: 0.9;
    margin: 0 0 40px 0;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input-wrapper {
    display: flex;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 8px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.newsletter-input-wrapper:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.1rem;
    padding: 15px 25px;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

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

.newsletter-button {
    background: linear-gradient(135deg, var(--gold) 0%, #B8941F 100%);
    border: none;
    border-radius: 50px;
    padding: 15px 35px;
    color: var(--xia-red);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.newsletter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #FFD700 0%, var(--gold) 100%);
}

.newsletter-button:active {
    transform: translateY(0);
}

.button-arrow {
    transition: transform 0.3s ease;
}

.newsletter-button:hover .button-arrow {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .coming-soon-section {
        padding: 80px 24px 60px;
    }
    
    .coming-soon-features {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 50px auto 60px;
    }
    
    .coming-soon-feature {
        padding: 30px 20px;
    }
    
    .coming-soon-newsletter {
        padding: 40px 25px;
        margin-top: 60px;
    }
    
    .newsletter-input-wrapper {
        flex-direction: column;
        border-radius: 20px;
        padding: 0;
        background: transparent;
        border: none;
    }
    
    .newsletter-input {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        border: 2px solid rgba(212, 175, 55, 0.3);
        margin-bottom: 15px;
    }
    
    .newsletter-button {
        width: 100%;
        justify-content: center;
        border-radius: 15px;
    }
    
    .coming-soon-icon {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .coming-soon-slider {
        border-radius: 16px;
        aspect-ratio: 4 / 3;
    }
    
    .slider-image-wrapper {
        border-radius: 16px;
    }
    
    .slider-nav-btn {
        width: 48px;
        height: 48px;
        opacity: 0.9;
    }
    
    .slider-prev {
        left: 12px;
    }
    
    .slider-next {
        right: 12px;
    }
    
    .slider-nav-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .slider-progress-bar {
        height: 3px;
        border-radius: 0 0 16px 16px;
    }
}

@media (max-width: 480px) {
    .coming-soon-section {
        padding: 60px 20px 60px;
    }
    
    .coming-soon-subtitle {
        margin-bottom: 40px;
        font-size: clamp(1rem, 3vw, 1.2rem);
    }
    
    .coming-soon-slider-wrapper {
        margin: 40px auto 0;
        padding: 0 10px;
    }
    
    .coming-soon-slider {
        border-radius: 12px;
        aspect-ratio: 1 / 1;
    }
    
    .slider-image-wrapper {
        border-radius: 12px;
    }
    
    .slider-nav-btn {
        width: 44px;
        height: 44px;
        opacity: 0.85;
    }
    
    .slider-prev {
        left: 8px;
    }
    
    .slider-next {
        right: 8px;
    }
    
    .slider-nav-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .slider-dots {
        margin-top: 24px;
        gap: 12px;
    }
    
    .slider-dot {
        width: 40px;
        height: 6px;
    }
    
    .slider-progress-bar {
        height: 2px;
        border-radius: 0 0 12px 12px;
    }
    
    /* Ensure all buttons are touch-friendly */
    .cta-button,
    .gift-card-buy-button,
    .collection-cta,
    .fragrance-modal-cta,
    .quantity-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Improve gift card selector on mobile */
    .gift-card-selector-container {
        padding: 25px 15px;
    }
    
    .recipient-option {
        min-height: 44px;
        padding: 12px;
    }
    
    .quantity-btn {
        width: 44px;
        height: 44px;
    }
    
    .quantity-input {
        width: 70px;
        height: 44px;
    }
    
    /* Improve offers section on small mobile */
    .offers-section {
        padding: 60px 30px;
    }
    
    .offers-header {
        margin-bottom: 30px;
        padding: 0 5px;
    }
    
    .offers-section .section-title {
        font-size: clamp(1.4rem, 7vw, 1.8rem);
        margin-bottom: 16px;
        line-height: 1.2;
    }
    
    .offers-subtitle {
        font-size: clamp(0.95rem, 3.5vw, 1.1rem);
        margin-bottom: 25px;
        padding: 0 5px;
        line-height: 1.5;
    }
    
    .collection-card-header {
        padding: 20px 20px 15px;
    }
    
    .collection-card-preview {
        padding: 0 20px 20px;
    }
    
    .collection-preview-text {
        font-size: clamp(0.9rem, 3vw, 1rem);
        margin: 10px 0 15px;
    }
    
    .collection-expand-btn {
        padding: 12px 18px;
        font-size: clamp(0.85rem, 3vw, 0.95rem);
        min-height: 44px;
        margin: 15px 0 10px;
    }
    
    .collection-card-expanded {
        padding: 0 20px;
    }
    
    .collection-card.expanded .collection-card-expanded {
        padding: 0 20px 20px;
    }
    
    .collection-expanded-content {
        padding-top: 18px;
    }
    
    .collection-cta {
        padding: 14px 20px;
    }
    
    /* Improve testimonials on small mobile */
    .testimonials-section {
        padding: 50px 15px;
    }
    
    .testimonial-card {
        padding: 20px 15px;
    }
    
    /* Improve FAQ on small mobile */
    .faq-section {
        padding: 50px 15px;
    }
    
    .faq-question {
        padding: 16px 18px;
    }
    
    .faq-answer {
        padding: 0 18px 18px;
    }
}

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

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 20px;
    }
    
    .faq-container {
        gap: 15px;
    }
    
    .faq-item {
        margin-bottom: 12px;
    }
    
    .faq-question {
        padding: 18px 20px;
        font-size: clamp(0.95rem, 2.5vw, 1.1rem);
        min-height: 56px;
        display: flex;
        align-items: center;
    }
    
    .faq-answer {
        padding: 0 20px 20px;
    }
    
    .faq-answer p {
        font-size: clamp(0.9rem, 2.5vw, 0.95rem);
        line-height: 1.6;
    }
    
    .faq-answer ul {
        margin: 10px 0;
    }
    
    .faq-answer li {
        font-size: clamp(0.85rem, 2.5vw, 0.9rem);
        padding: 6px 0 6px 22px;
        line-height: 1.5;
    }
    
    .faq-icon {
        font-size: 1.2rem;
        min-width: 24px;
    }
}

.faq-item {
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-section .faq-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-section .faq-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.4);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    font-size: 1.125rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    color: #1a0000;
}

.faq-question:hover {
    color: var(--gold);
    opacity: 0.9;
}

.faq-icon {
    font-size: 1.5rem;
    color: #8B0000;
    transition: transform 0.3s ease;
    font-weight: 300;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-section .faq-icon {
    color: #ffffff;
}

.faq-item[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
}

.faq-item[aria-expanded="true"] .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: #1a0000;
    line-height: 1.7;
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Footer */
.footer {
    background: var(--xia-red);
    background-color: var(--xia-red);
    padding: 60px 40px 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: #ffffff;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-description {
    font-size: 0.875rem;
    color: #ffffff;
    margin-top: 10px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-locations {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.location-item {
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.location-item strong {
    display: block;
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 5px;
}

.location-item p {
    font-size: 0.875rem;
    color: #ffffff;
    margin: 0;
    opacity: 0.9;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-item {
    font-size: 0.9rem;
    color: #ffffff;
    margin: 5px 0;
    opacity: 0.9;
}

.footer-logo {
    text-align: left;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 0.875rem;
    color: #ffffff;
    opacity: 0.9;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-title {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 600;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    opacity: 0.9;
}

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

.footer-social {
    text-align: left;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    color: var(--gold);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
    overflow: hidden;
}

.social-icon:hover {
    background: var(--gold);
    color: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.social-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.social-whatsapp {
    padding: 0;
    background: transparent;
    border: none;
}

.social-whatsapp:hover {
    background: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(25, 211, 84, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: #ffffff;
    font-size: 0.875rem;
    opacity: 0.9;
}

.footer-bottom p {
    margin: 0;
    line-height: 1.6;
}

.footer-bottom p:first-child {
    margin-bottom: 8px;
}

.footer-bottom .footer-credit {
    color: var(--xia-red);
    margin: 0;
}

.footer-bottom .footer-credit .footer-link {
    color: var(--xia-red);
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 20px;
    }

    .navbar-inner {
        flex-wrap: wrap;
        gap: 12px;
    }

    .navbar-logo-img {
        height: 50px;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #FFFFFF;
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 30px 30px;
        gap: 25px;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(212, 175, 55, 0.3);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
        z-index: 1000;
    }

    .navbar-links.active {
        right: 0;
    }

    .navbar-links a {
        width: 100%;
        padding: 12px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        color: #1a0000;
    }

    .navbar-cta {
        width: 100%;
        text-align: center;
        margin-top: 10px;
        padding: 10px 18px;
        font-size: 14px;
    }

    .hero {
        min-height: 100vh;
        padding: 100px 24px 60px;
        justify-content: center;
    }

    .hero-container {
        padding: 0 24px;
    }

    .logo-container {
        padding-top: 0;
        margin-bottom: 10px;
    }

    .hero-logo-img {
        max-width: 180px;
    }

    .ai-badge {
        margin-bottom: 12px;
        padding: 5px 14px;
        font-size: 0.625rem;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 0.875rem;
        margin-bottom: 20px;
    }

    .cta-button.hero-cta {
        margin-bottom: 0;
        padding: 10px 20px;
        font-size: 0.7rem;
    }

    .hero-video-wrapper {
        max-width: 95%;
        margin-top: 24px;
    }

    .showcase-container {
        max-width: 95%;
        margin-bottom: 30px;
    }


    .social-proof {
        font-size: 0.75rem;
        gap: 8px;
        margin-top: 16px;
    }

    .proof-avatar {
        width: 24px;
        height: 24px;
    }

    .proof-stars {
        font-size: 0.75rem;
    }

    section {
        padding: 80px 24px 120px;
    }

    .vsl-video-container {
        margin-bottom: 40px;
    }

    .vsl-key-points {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .perfumes-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .perfume-item {
        padding: 15px 10px;
    }
    
    .perfume-name {
        font-size: 0.9rem;
    }
    
    .perfume-description {
        font-size: 0.75rem;
    }

    .audience-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .offers-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-left,
    .testimonial-right {
        max-width: 100%;
        align-self: stretch;
        margin-left: 0;
        margin-right: 0;
    }


    .trust-icons {
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        text-align: left;
    }

    .footer-logo {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 10px;
    }

    .footer-locations {
        grid-column: 1 / -1;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        grid-column: 1 / -1;
    }

    .footer-contact {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-social {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 10px 16px;
    }

    .navbar-logo-img {
        height: 45px;
    }

    .navbar-links {
        gap: 8px;
        font-size: 11px;
    }

    .navbar-links a {
        padding: 4px 0;
    }

    .navbar-cta {
        padding: 5px 12px;
        font-size: 11px;
    }

    .hero {
        min-height: 100vh;
        padding: 80px 20px 40px;
        justify-content: center;
    }

    .hero-container {
        padding: 0 20px;
    }

    .logo-container {
        padding-top: 0;
        margin-bottom: 8px;
    }

    .hero-logo-img {
        max-width: 150px;
    }

    .hero-title {
        font-size: 1.25rem;
        margin-bottom: 8px;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 16px;
    }

    .cta-button.hero-cta {
        margin-bottom: 0;
        padding: 10px 20px;
        font-size: 0.7rem;
    }

    .hero-video-wrapper {
        max-width: 100%;
        margin-top: 20px;
        margin-bottom: 16px;
    }
    

    .showcase-container {
        max-width: 100%;
    }


    .cta-button {
        padding: 15px 30px;
        font-size: 0.875rem;
    }

    .offer-card,
    .step-card,
    .testimonial-card {
        padding: 25px 20px;
    }

    .footer {
        padding: 40px 20px 30px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 25px;
    }

    .footer-logo {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 0;
    }

    .footer-description {
        font-size: 0.8rem;
        margin-top: 8px;
    }

    .footer-locations {
        grid-column: 1 / -1;
        gap: 10px;
    }

    .location-item {
        padding: 12px;
    }

    .location-item strong {
        font-size: 0.9rem;
    }

    .location-item p {
        font-size: 0.8rem;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        grid-column: 1 / -1;
    }

    .footer-column {
        gap: 8px;
    }

    .footer-title {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .footer-link {
        font-size: 0.85rem;
    }

    .footer-contact {
        grid-column: 1 / -1;
        text-align: center;
        gap: 8px;
    }

    .social-icons {
        gap: 12px;
        justify-content: center;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .footer-bottom {
        padding-top: 20px;
        font-size: 0.8rem;
    }
}

/* Gold Dust Particles Animation */
@keyframes shimmer {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(0) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-10px) scale(1.1);
    }
}

.gold-dust {
    position: fixed;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    animation: shimmer 3s infinite;
    box-shadow: 0 0 10px var(--gold);
    z-index: 1;
}

