:root {
    --primary-color: #1a1a1a;
    /* Dynamic theme colors - starts neutral (purple mix) */
    --secondary-color: #c77dff;  /* Purple (pink+blue mix) - neutral start */
    --secondary-rgb: 199, 125, 255;  /* RGB for glow effects */
    --accent-color: #e0c3fc;     /* Light purple - neutral */
    --light-bg: #ffffff;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #757575;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --hover-bg: #f5f5f5;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.1);
    
    /* Theme transition variables - Slower and smoother */
    --theme-transition: all 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Male Theme (Blue) */
body.theme-male {
    --secondary-color: #2196F3;  /* Blue */
    --secondary-rgb: 33, 150, 243;
    --accent-color: #90caf9;     /* Light blue */
}

/* Female Theme (Pink) */
body.theme-female {
    --secondary-color: #ff6b9d;  /* Pink */
    --secondary-rgb: 255, 107, 157;
    --accent-color: #ffd6e0;     /* Light pink */
}

/* Non-binary Theme (Purple/Mixed) */
body.theme-nonbinary {
    --secondary-color: #9c27b0;  /* Purple */
    --secondary-rgb: 156, 39, 176;
    --accent-color: #ce93d8;     /* Light purple */
}

/* Smooth transitions on all themed elements */
.header,
.cta-button,
.btn-primary,
.progress-fill,
.option.selected,
.feature-icon,
.card,
.splash-cta,
.result-card {
    transition: var(--theme-transition);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    color: var(--text-dark);
    background: linear-gradient(135deg, 
        #fef5f0 0%,      /* Soft champagne */
        #fef0f5 50%,     /* Rose blush */
        #f5f0fe 100%     /* Soft lavender */
    );
    line-height: 1.6;
    font-weight: 400;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.container {
    min-height: 100vh;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Center align for prominent logo */
    padding: 2rem 5% 2rem; /* More padding top/bottom for logo space */
    /* Elegant white background with subtle shadow */
    background: #ffffff !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(102, 126, 234, 0.12);
    transition: all 0.3s ease;
    min-height: 160px; /* Even taller to prevent cutting */
}

.header.scrolled {
    box-shadow: 0 2px 25px rgba(102, 126, 234, 0.18);
    /* Slightly more opaque when scrolled */
    background: linear-gradient(135deg, 
        #e0e4f5 0%,
        #f0f3ff 50%,
        #ffe8f5 100%
    ) !important;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    /* Clean - no background, no padding, no container styling */
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-left: auto; /* Push navigation to right */
}

.logo-image {
    /* PERMANENT FIX: Very prominent logo sizing - 200px for maximum visibility */
    height: 200px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
    /* Strong shadow for maximum visibility */
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.2));
}

.logo-image:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3)) brightness(1.1);
}

/* Header Share Icon - Add spacing from nav */
.header-share-icon {
    margin-left: 2rem;
}

/* Responsive logo adjustments - Still large on all devices */
@media (max-width: 1024px) {
    .header {
        min-height: 140px;
        padding: 1.5rem 4% 1.5rem;
    }

    .logo-image {
        height: 160px;
    }
    
    .header-share-icon {
        margin-left: 1.5rem;
    }
}

@media (max-width: 768px) {
    .header {
        min-height: 120px;
        padding: 1.25rem 3% 1.25rem;
    }

    .logo-image {
        height: 120px;
    }
    
    .nav {
        gap: 1.5rem;
    }
    
    .header-share-icon {
        margin-left: 1rem;
    }
}

@media (max-width: 480px) {
    .header {
        min-height: 100px;
        padding: 1rem 1rem 1rem;
    }

    .logo-image {
        height: 90px;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .header-share-icon {
        margin-left: 0.75rem;
    }
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav a:hover {
    color: var(--secondary-color);
}

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

/* Hero Section - Luxury Perfume Gradient */
.hero {
    display: none;
    min-height: 100vh;
    padding: 11rem 5% 4rem; /* Increased for taller header (160px + padding) */
    background: linear-gradient(135deg, 
        #fef5f0 0%,      /* Soft champagne */
        #fef0f5 50%,     /* Rose blush */
        #f5f0fe 100%     /* Soft lavender */
    ) !important;
    position: relative;
}

.hero.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Hero Content */
.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Hero Buttons Container - Aligned */
.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-buttons .cta-button,
.hero-buttons #welcomeShareButton .share-app-btn {
    margin: 0;
}

@media (max-width: 768px) {
    .hero-buttons {
        align-items: stretch;
    }
    
    .hero-buttons .cta-button,
    .hero-buttons #welcomeShareButton .share-app-btn {
        width: 100%;
    }
}

.cta-button {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: none;
    transition: all 0.2s ease;
    font-family: inherit;
}

.cta-button:hover {
    background: #ff5087;
    transform: translateY(-2px);
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.feature-icon {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* Professional Feature Icons */
.feature-icon-pro {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.feature:hover .feature-icon-pro {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.feature span:last-child {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Hero Avatar - Clean Professional Image */
.hero-avatar {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.avatar-image {
    width: 100%;
    max-width: 1019px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.avatar-image:hover {
    transform: scale(1.02);
}

/* Hero avatar - seamless integration (no border background) */
.hero-avatar::before {
    display: none;
}

/* Sarah AI Introduction - Below Image */
.sarah-intro {
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.15);
    backdrop-filter: blur(10px);
    text-align: center;
}

.sarah-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.2rem 0;
    font-family: 'Playfair Display', serif;
}

.sarah-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0 0 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sarah-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-dark);
    margin: 0;
    font-weight: 400;
    min-height: 3em;
}

.sarah-description strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Typing cursor animation */
.typing-cursor {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 400;
    animation: blink 0.7s infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* Responsive - Hero Avatar */
@media (max-width: 1024px) {
    .avatar-image {
        max-width: 863px;
    }
    
    .sarah-intro {
        padding: 1.25rem 1.75rem;
        max-width: 600px;
    }
    
    .sarah-name {
        font-size: 1.35rem;
    }
    
    .sarah-title {
        font-size: 0.9rem;
    }
    
    .sarah-description {
        font-size: 0.9rem;
    }
}

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

    .hero-avatar {
        height: auto;
        padding: 0;
    }

    .avatar-image {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .sarah-intro {
        margin-top: 1.25rem;
        padding: 1.25rem 1.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .sarah-name {
        font-size: 1.25rem;
    }
    
    .sarah-title {
        font-size: 0.85rem;
    }
    
    .sarah-description {
        font-size: 0.85rem;
        min-height: 3.5em;
    }
}

/* Perfume Illustration */
.perfume-illustration {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.bottle {
    width: 100px;
    height: 250px;
    border-radius: 8px;
    animation: float 3s ease-in-out infinite;
    opacity: 0.6;
}

.bottle-1 {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 100%);
    animation-delay: 0s;
}

.bottle-2 {
    background: linear-gradient(135deg, #ffa8c5 0%, #ffc2d4 100%);
    animation-delay: 0.5s;
    height: 280px;
}

.bottle-3 {
    background: linear-gradient(135deg, #ffd6e0 0%, #ffe5ec 100%);
    animation-delay: 1s;
}

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

/* Quiz Section */
.quiz-section {
    display: none;
    min-height: calc(100vh - 100px);
    padding: 8rem 5% 3rem; /* Extra top padding to ensure first options are visible */
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, 
        #fef5f0 0%,      /* Soft champagne */
        #fef0f5 25%,     /* Rose blush */
        #f5f0fe 50%,     /* Soft lavender */
        #fff5f8 75%,     /* Light rose gold */
        #fef8f0 100%     /* Warm champagne */
    );
}

.quiz-section.active {
    display: block;
}

.quiz-progress {
    margin-bottom: 3rem;
    margin-top: 1.5rem; /* Extra space below header */
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.progress-bar {
    height: 10px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 10px;
    transition: width 0.3s ease;
    width: 3.33%;
    box-shadow: 0 2px 4px rgba(var(--secondary-rgb), 0.3);
}

.progress-text {
    text-align: center;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}
    font-size: 1rem;
}

.quiz-content {
    background: linear-gradient(135deg, 
        #fef5f0 0%,      /* Soft champagne */
        #fef0f5 25%,     /* Rose blush */
        #f5f0fe 50%,     /* Soft lavender */
        #fff5f8 75%,     /* Light rose gold */
        #fef8f0 100%     /* Warm champagne */
    );
    padding: 2rem 0;
    border-radius: 0;
    box-shadow: none;
    min-height: 400px;
    margin-bottom: 2rem;
}

.question-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.options-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.option {
    padding: 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, 
        #fef5f0 0%,      /* Soft champagne */
        #fef0f5 25%,     /* Rose blush */
        #f5f0fe 50%,     /* Soft lavender */
        #fff5f8 75%,     /* Light rose gold */
        #fef8f0 100%     /* Warm champagne */
    );
    font-size: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 120px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Image placeholder for options */
.option::before {
    content: '';
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    opacity: 0.2;
    transition: opacity 0.3s ease;
}

.option:hover::before {
    opacity: 0.4;
}

.option:hover {
    border-color: var(--secondary-color);
    background: var(--hover-bg);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(var(--secondary-rgb), 0.2);
}

.option:focus-visible {
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

.option.selected {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(var(--secondary-rgb), 0.1), rgba(var(--secondary-rgb), 0.05));
    font-weight: 600;
    border-width: 3px;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(var(--secondary-rgb), 0.25);
}

.option.selected::before {
    opacity: 0.6;
}

.option-text {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 500;
}

/* Mobile: Single column for better readability */
@media (max-width: 768px) {
    .options-container {
        grid-template-columns: 1fr;
    }
    
    .option {
        min-height: 100px;
        padding: 1.25rem;
    }
}

.option.confirming {
    background: #e8f5e9;
    border-color: #4caf50;
}

.success-checkmark {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #4caf50;
    animation: checkmarkPop 0.3s ease;
}

@keyframes checkmarkPop {
    0% { transform: translateY(-50%) scale(0); }
    50% { transform: translateY(-50%) scale(1.2); }
    100% { transform: translateY(-50%) scale(1); }
}

.option.confirming {
    background: #e8f5e9;
    border-color: var(--success-color);
    border-width: 2px;
}

.option input[type="checkbox"],
.option input[type="radio"] {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--secondary-color);
}
    cursor: pointer;
    accent-color: var(--secondary-color);
}

.option-text {
    flex: 1;
}

.hint-text {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    font-style: italic;
}

/* Multiple Choice Hint - Top Right */
.multiple-choice-hint {
    position: absolute;
    top: -50px;
    right: 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.multiple-choice-hint i {
    font-size: 1rem;
}

.options-container.multiple-choice {
    position: relative;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .multiple-choice-hint {
        position: static;
        margin-bottom: 1rem;
        justify-content: center;
    }
}

.optional-label {
    display: inline-block;
    background: var(--accent-color);
    color: var(--secondary-color);
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 1rem;
    font-style: normal;
}

.error-message {
    background: #ffebee;
    color: #c62828;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.9rem;
    border-left: 4px solid #c62828;
    animation: fadeIn 0.3s ease;
}

.success-checkmark {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--success-color);
    font-size: 1.5rem;
    animation: checkmark 0.3s ease;
}

.text-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.2s ease;
}

.text-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.text-input:focus-visible {
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

.quiz-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.btn {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
    box-shadow: none;
}

.btn-primary:hover:not(:disabled) {
    background: #ff5087;
    transform: none;
}

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

.btn-secondary:hover:not(:disabled) {
    border-color: var(--text-dark);
    color: var(--text-dark);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn:focus-visible {
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Email Capture Modal - Elegant Design */
.email-capture-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.email-capture-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.email-capture-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.email-capture-card {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    z-index: 1;
}

/* Close Button */
.email-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.email-close-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
}

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

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

/* Header */
.email-capture-header {
    text-align: center;
    margin-bottom: 2rem;
}

.email-capture-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 8px 24px rgba(var(--secondary-rgb), 0.3);
}

.email-capture-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.email-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0;
}

/* Body */
.email-capture-body {
    margin-top: 2rem;
}

.email-input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.email-input-group .email-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1.25rem;
    pointer-events: none;
}

.email-input-group input {
    width: 100%;
    padding: 1.25rem 1.25rem 1.25rem 3.5rem;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.email-input-group input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(var(--secondary-rgb), 0.1);
}

.email-input-group input::placeholder {
    color: #aaa;
}

/* Submit Button */
.email-submit-btn {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 4px 16px rgba(var(--secondary-rgb), 0.3);
}

.email-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--secondary-rgb), 0.4);
}

.email-submit-btn:active {
    transform: translateY(0);
}

.email-submit-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.email-submit-btn:hover i {
    transform: translateX(4px);
}

/* Skip Button */
.email-skip-btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.75rem;
    text-decoration: underline;
}

.email-skip-btn:hover {
    color: var(--text-dark);
    background: rgba(0, 0, 0, 0.05);
}

/* Benefits */
.email-benefits {
    margin: 2rem 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.benefit-item i {
    color: #4caf50;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Privacy Note */
.privacy-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.privacy-note i {
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .email-capture-card {
        padding: 2rem 1.5rem;
        max-width: 95%;
    }

    .email-capture-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .email-capture-header h2 {
        font-size: 1.5rem;
    }

    .email-subtitle {
        font-size: 1rem;
    }

    .email-submit-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* Loading Section - Enhanced */
.loading-section {
    display: none;
    min-height: calc(100vh - 100px);
    padding: 4rem 5%;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.loading-section.active {
    display: flex;
}

.loading-content {
    text-align: center;
    max-width: 600px;
}

/* Animated Perfume Bottle */
.loading-bottle {
    position: relative;
    width: 120px;
    height: 160px;
    margin: 0 auto 2rem;
}

.bottle-svg {
    animation: bottle-float 3s ease-in-out infinite;
}

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

.bottle-liquid {
    animation: fill-bottle 2s ease-out forwards;
}

@keyframes fill-bottle {
    from { height: 0; y: 105; }
    to { height: 20; y: 85; }
}

.bottle-cap {
    animation: bottle-pulse 2s ease-in-out infinite;
}

@keyframes bottle-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.bottle-shine {
    animation: shine-move 3s ease-in-out infinite;
}

@keyframes shine-move {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Sparkle particles */
.loading-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    animation: sparkle-float 2s ease-in-out infinite;
    animation-delay: var(--delay);
    opacity: 0;
}

@keyframes sparkle-float {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }
    50% {
        transform: translate(var(--x), var(--y)) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(calc(var(--x) * 1.5), calc(var(--y) * 1.5)) scale(0);
        opacity: 0;
    }
}

/* Progress Bar */
.loading-progress-bar {
    width: 100%;
    max-width: 400px;
    height: 8px;
    background: var(--border-color);
    border-radius: 10px;
    margin: 2rem auto 1rem;
    overflow: hidden;
}

.loading-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 10px;
    animation: loading-progress 5s ease-out forwards;
    box-shadow: 0 0 10px rgba(var(--secondary-rgb), 0.5);
}

@keyframes loading-progress {
    0% { width: 0%; }
    20% { width: 25%; }
    40% { width: 50%; }
    60% { width: 70%; }
    80% { width: 90%; }
    100% { width: 100%; }
}

/* Timer */
.loading-timer {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 500;
}

.loading-timer span {
    color: var(--secondary-color);
    font-weight: 700;
}

.spinner {
    width: 80px;
    height: 80px;
    border: 6px solid var(--border-color);
    border-top: 6px solid var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 2rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.loading-steps {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.step.active {
    opacity: 1;
}

.step-icon {
    color: var(--secondary-color);
}

/* Results Section - Optimized for Amazon Conversion */
.results-section {
    display: none;
    min-height: calc(100vh - 100px);
    padding: 5rem 5% 3rem; /* Reduced from 6rem/4rem */
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.results-section.active {
    display: block;
}

.results-header {
    text-align: center;
    margin-bottom: 3rem;
}

.results-header h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b9d, #c77dff, #2196F3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Personality Profile Card - Enhanced Design */
.personality-profile-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.05));
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.personality-profile-card:hover {
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
}

.profile-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.profile-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 4px 16px rgba(var(--secondary-rgb), 0.3);
    flex-shrink: 0;
}

.profile-header-text {
    flex: 1;
}

.profile-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-family: 'Playfair Display', serif;
}

.profile-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.profile-scent-section {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.scent-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.scent-label i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.scent-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.scent-tag {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(var(--secondary-rgb), 0.2);
    transition: all 0.2s ease;
}

.scent-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--secondary-rgb), 0.3);
}

.scent-tag i {
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .profile-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .profile-name {
        font-size: 1.6rem;
    }
    
    .profile-description {
        font-size: 1rem;
    }
    
    .scent-tags {
        justify-content: center;
    }
}

/* Perfume Card - E-commerce Style */
.perfume-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.perfume-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(var(--secondary-rgb), 0.2);
}

.perfume-card.top-recommendation {
    border-color: #FF9900;
    box-shadow: 0 8px 30px rgba(255, 153, 0, 0.15);
}

.top-recommendation-banner {
    background: linear-gradient(135deg, #FFD700, #FF9900);
    color: white;
    text-align: center;
    padding: 0.75rem;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.perfume-card-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    padding: 2rem;
}

/* Product Image */
.perfume-image-container {
    position: relative;
    background: linear-gradient(145deg, #f8f9fa, #ffffff);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.perfume-image {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    border-radius: 8px;
}

.match-badge-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.match-badge-overlay.top-match {
    background: linear-gradient(135deg, #FFD700, #FF9900);
}

/* Product Info */
.perfume-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.perfume-brand {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.perfume-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.2;
}

.perfume-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #B12704;
    margin-top: 0.5rem;
}

.perfume-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.perfume-why {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(var(--secondary-rgb), 0.05);
    border-left: 4px solid var(--secondary-color);
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.perfume-why svg {
    flex-shrink: 0;
    margin-top: 0.2rem;
    color: var(--secondary-color);
}

.perfume-notes {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.notes-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-light);
}

.notes-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.note-tag {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 1px solid #dee2e6;
    color: var(--text-dark);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Optimized CTA Section */
.perfume-cta-section {
    padding: 2rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 1px solid #e9ecef;
}

/* Amazon Primary CTA Button */
.amazon-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #FF9900, #FFB84D);
    color: #111;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
    border: none;
    cursor: pointer;
}

.amazon-cta-button:hover {
    background: linear-gradient(135deg, #FFB84D, #FF9900);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.4);
}

.amazon-cta-button.pulse {
    animation: amazonPulse 2s infinite;
}

@keyframes amazonPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
    }
    50% {
        box-shadow: 0 6px 25px rgba(255, 153, 0, 0.5);
    }
}

.amazon-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.amazon-cta-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.cta-main {
    font-size: 1.1rem;
    font-weight: 700;
}

.cta-sub {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
}

.arrow-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.amazon-cta-button:hover .arrow-icon {
    transform: translateX(4px);
}

/* Alternative Links */
.alternative-links {
    margin-top: 1.5rem;
}

.alternative-links-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.alternative-links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.alternative-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.alternative-link:hover {
    border-color: var(--secondary-color);
    background: rgba(var(--secondary-rgb), 0.05);
    transform: translateY(-2px);
}

.alt-platform {
    color: var(--text-dark);
}

/* Responsive */
@media (max-width: 1024px) {
    .perfume-card-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .perfume-image-container {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .results-header h1 {
        font-size: 2rem;
    }

    .perfume-name {
        font-size: 1.5rem;
    }

    .perfume-price {
        font-size: 1.25rem;
    }

    .amazon-cta-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .amazon-icon {
        width: 24px;
        height: 24px;
    }
    
    /* Match percentage mobile styles */
    .perfume-header {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .match-badge {
        align-self: flex-end;
        padding: 0.5rem 1rem;
    }
    
    .match-percentage {
        font-size: 1.5rem;
    }
    
    .perfume-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .perfume-rank {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        align-self: flex-start;
    }
    
    /* New rich content mobile styles */
    .personality-narrative {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
    
    .reason-item {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .commercial-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .info-badge {
        width: 100%;
        text-align: center;
    }
    
    .notes-breakdown {
        padding: 0.75rem;
    }
    
    .note-layer {
        font-size: 0.85rem;
    }
}

.results-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

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

.results-footer {
    text-align: center;
    margin-top: 3rem;
}

/* Share Results CTA - Prominent */
.share-results-cta {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: 0 8px 24px rgba(var(--secondary-rgb), 0.25);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(var(--secondary-rgb), 0.25);
    }
    50% {
        box-shadow: 0 12px 32px rgba(var(--secondary-rgb), 0.4);
    }
}

.share-cta-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.share-cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    flex-shrink: 0;
}

.share-cta-text {
    flex: 1;
    min-width: 200px;
}

.share-cta-text h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.share-cta-text p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin: 0;
}

.share-cta-button {
    background: white;
    color: var(--secondary-color);
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.share-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.share-cta-button i {
    transition: transform 0.3s ease;
}

.share-cta-button:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .share-results-cta {
        padding: 2rem 1.5rem;
    }
    
    .share-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .share-cta-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .share-cta-text h3 {
        font-size: 1.5rem;
    }
    
    .share-cta-text p {
        font-size: 1rem;
    }
    
    .share-cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* Results - Simple Layout */
.perfume-list {
    max-width: 900px;
    margin: 0 auto;
}

.perfume-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.perfume-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.perfume-rank {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b9d, #c77dff);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.perfume-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

/* Match Percentage Styles */
.perfume-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.match-badge {
    flex-shrink: 0;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
    }
}

.match-percentage {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.match-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.match-bar-container {
    width: 100%;
    height: 8px;
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.match-bar {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    transition: width 1s ease-out;
    animation: fillBar 1.5s ease-out;
}

@keyframes fillBar {
    from {
        width: 0%;
    }
}

.perfume-description {
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* New Rich Content Styles */
.personality-narrative {
    background: linear-gradient(135deg, #fff7f0 0%, #f0e6ff 100%);
    padding: 1rem 1.25rem;
    border-radius: 10px;
    font-style: italic;
    margin: 1rem 0;
    border-left: 4px solid #667eea;
    line-height: 1.7;
    color: #555;
}

.why-perfect {
    margin: 1rem 0;
}

.why-perfect strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-size: 1.05rem;
}

.reason-item {
    padding: 0.6rem 1rem;
    margin: 0.4rem 0;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #28a745;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: transform 0.2s;
}

.reason-item:hover {
    transform: translateX(3px);
    background: #e9ecef;
}

.notes-breakdown {
    margin: 1rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
}

.notes-breakdown strong {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
    font-size: 1.05rem;
}

.notes-layers {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.note-layer {
    padding: 0.5rem 0.75rem;
    background: white;
    border-radius: 6px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.note-icon {
    color: var(--secondary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.perfume-notes {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.perfume-notes .note-icon {
    font-size: 1.1rem;
}

.note-type {
    font-weight: bold;
    color: #667eea;
    margin-right: 0.25rem;
}
}

.commercial-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1rem 0;
    padding: 0.75rem;
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border-radius: 8px;
}

.info-badge {
    padding: 0.4rem 0.8rem;
    background: white;
    border-radius: 20px;
    font-size: 0.85rem;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.social-proof {
    color: #667eea;
    font-weight: 600;
    margin: 0.75rem 0;
    font-size: 0.95rem;
}

.sample-option {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-size: 0.9rem;
}

.urgency-trigger {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    margin: 0.75rem 0;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    animation: pulse 2s infinite;
}

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

.trust-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.75rem 0;
}

.trust-badge {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.price-badge {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
    font-weight: 700;
}

.normalized-price {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

.normalized-price::before {
    content: "Compare: ";
    font-weight: 400;
    opacity: 0.9;
}

/* Fair Price Comparison - Enhanced Design */
.pricing-explainer {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px solid var(--secondary-color);
    border-radius: 16px;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.12);
    transition: all 0.3s ease;
}

.pricing-explainer:hover {
    box-shadow: 0 8px 28px rgba(102, 126, 234, 0.18);
    transform: translateY(-2px);
}

.explainer-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 12px rgba(var(--secondary-rgb), 0.3);
}

.explainer-text {
    flex: 1;
    line-height: 1.7;
}

.explainer-text strong {
    display: block;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.explainer-detail {
    font-size: 0.95rem;
    color: var(--text-light);
    opacity: 0.95;
}

.similar-to {
    background: rgba(102, 126, 234, 0.08);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.similar-to strong {
    color: #667eea;
}

.why-match,
.perfume-notes {
    background: rgba(255, 107, 157, 0.05);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.why-match strong,
.perfume-notes strong {
    color: var(--secondary-color);
}

.amazon-btn {
    display: inline-block;
    background: linear-gradient(135deg, #FF9900, #FF6600);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.amazon-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.4);
}

/* Info Sections (About, How It Works, Contact) */
.info-section {
    display: none;
    min-height: 100vh;
    padding: 6.5rem 5% 4rem; /* Header height + spacing */
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.info-section.active {
    display: block;
}

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

.info-header {
    text-align: center;
    margin-bottom: 4rem;
}

.info-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b9d, #c77dff, #2196F3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
}

/* About Section */
.about-hero {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.about-stats {
    display: grid;
    gap: 1.5rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b9d, #c77dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(199, 125, 255, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon-large svg {
    color: var(--secondary-color);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card p {
    line-height: 1.6;
    color: var(--text-dark);
}

.mission-statement {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(199, 125, 255, 0.1));
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
}

.mission-statement h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.mission-statement p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

/* How It Works */
.steps-visual {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.step-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 2.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b9d, #c77dff);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

.step-visual {
    text-align: center;
    margin: 2rem 0;
}

.step-visual svg {
    color: var(--secondary-color);
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.step-card > p {
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.step-details {
    list-style: none;
    padding: 0;
}

.step-details li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.95rem;
}

.step-details li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.step-arrow {
    display: flex;
    align-items: center;
    color: var(--secondary-color);
}

.faq-section {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    margin-bottom: 3rem;
}

.faq-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.faq-item p {
    line-height: 1.6;
    color: var(--text-dark);
}

.cta-box {
    background: linear-gradient(135deg, #ff6b9d, #c77dff, #2196F3);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    color: white;
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-box .cta-button {
    background: white;
    color: var(--secondary-color);
}

.cta-box .cta-button:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-info > p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(199, 125, 255, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    color: var(--secondary-color);
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-details a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-details p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-links a {
    font-size: 0.95rem;
}

.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-container h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group textarea {
    resize: vertical;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-hero,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
}

@media (max-width: 768px) {
    .info-header h1 {
        font-size: 2rem;
    }
    
    .steps-visual {
        flex-direction: column;
        align-items: stretch;
    }
    
    .step-card {
        max-width: 100%;
    }
    
    .step-arrow {
        display: none;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 5%;
    margin-top: 4rem;
}

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

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: all 0.3s;
    cursor: pointer;
}

.footer-section a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.disclosure {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

/* ============================================
   SOCIAL SHARING STYLES
   ============================================ */

/* Share Results Button */
.share-results-btn {
    margin-right: 1rem;
    gap: 0.5rem;
    display: inline-flex;
    align-items: center;
}

.share-results-btn i {
    font-size: 1.1rem;
}

/* Share Modal */
.share-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.share-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.share-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.share-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideUp 0.3s ease;
}

@keyframes modalSlideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.share-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.share-modal-close:hover {
    background: var(--hover-bg);
    color: var(--text-dark);
    transform: rotate(90deg);
}

.share-modal-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.share-modal-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Share Preview */
.share-preview {
    margin-bottom: 1.5rem;
}

.share-preview img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Share Text Container */
.share-text-container {
    position: relative;
    margin-bottom: 2rem;
}

.share-text-input {
    width: 100%;
    padding: 1rem;
    padding-right: 3rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
    resize: none;
    font-family: inherit;
    background: var(--hover-bg);
    transition: border-color 0.2s;
}

.share-text-input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.share-copy-text-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.share-copy-text-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(var(--secondary-rgb), 0.3);
}

/* Platform Buttons */
.share-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.share-platform-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
    font-weight: 500;
}

.share-platform-btn i {
    font-size: 1.5rem; /* Reduced from 1.8rem for professional look */
}

.share-platform-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Platform-specific colors */
.share-platform-btn.facebook {
    border-color: #1877f2;
    color: #1877f2;
}

.share-platform-btn.facebook:hover {
    background: #1877f2;
    color: white;
}

.share-platform-btn.twitter {
    border-color: #1da1f2;
    color: #1da1f2;
}

.share-platform-btn.twitter:hover {
    background: #1da1f2;
    color: white;
}

.share-platform-btn.whatsapp {
    border-color: #25d366;
    color: #25d366;
}

.share-platform-btn.whatsapp:hover {
    background: #25d366;
    color: white;
}

.share-platform-btn.pinterest {
    border-color: #e60023;
    color: #e60023;
}

.share-platform-btn.pinterest:hover {
    background: #e60023;
    color: white;
}

.share-platform-btn.instagram {
    border-color: #e1306c;
    color: #e1306c;
}

.share-platform-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.share-platform-btn.email {
    border-color: #ea4335;
    color: #ea4335;
}

.share-platform-btn.email:hover {
    background: #ea4335;
    color: white;
}

.share-platform-btn.copy {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.share-platform-btn.copy:hover {
    background: var(--secondary-color);
    color: white;
}

.share-platform-btn.native {
    border-color: var(--text-light);
    color: var(--text-light);
}

.share-platform-btn.native:hover {
    background: var(--text-light);
    color: white;
}

/* Share Notifications */
.share-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 10001;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 300px;
    font-weight: 500;
}

.share-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.share-notification.success {
    border-left: 4px solid var(--success-color);
    color: var(--success-color);
}

.share-notification.error {
    border-left: 4px solid #f44336;
    color: #f44336;
}

.share-notification.warning {
    border-left: 4px solid #ff9800;
    color: #ff9800;
}

.share-notification.info {
    border-left: 4px solid var(--secondary-color);
    color: var(--secondary-color);
}

/* Instagram Modal Specific */
.share-notification.instagram-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    transform: none;
    opacity: 1;
    max-width: none;
}

.share-notification.instagram-modal .notification-content {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
}

.share-notification.instagram-modal h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.share-notification.instagram-modal p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.share-notification.instagram-modal button {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.share-notification.instagram-modal button:hover {
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .share-modal-content {
        padding: 2rem 1.5rem;
        max-height: 95vh;
    }
    
    .share-platforms {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .share-platform-btn {
        padding: 0.875rem;
        font-size: 0.85rem;
    }
    
    .share-platform-btn i {
        font-size: 1.5rem;
    }
    
    .share-notification {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
    
    .results-footer {
        flex-direction: column;
        gap: 1rem;
    }
    
    .share-results-btn {
        margin-right: 0;
        width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero.active {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .perfume-illustration {
        height: 300px;
    }

    .bottle {
        width: 70px;
        height: 180px;
    }

    .bottle-2 {
        height: 200px;
    }

    .quiz-content {
        padding: 2rem 1.5rem;
    }

    .question-title {
        font-size: 1.4rem;
    }

    .results-content {
        grid-template-columns: 1fr;
    }

    .nav {
        display: none;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-30px);
    }
}

@keyframes checkmark {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.quiz-content {
    animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quiz-content.transitioning-out {
    animation: slideOut 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   SPLASH SCREEN STYLES
   ======================================== */

/* Splash Screen Modal */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.splash-content {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    text-align: right;
    color: white;
    animation: splashFadeIn 0.8s ease-out;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

@keyframes splashFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.splash-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.8rem;
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 3;
}

.splash-close:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
}

.splash-cta {
    background: white;
    color: #ff6b9d;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(255, 107, 157, 0.6);
    }
}

.splash-cta:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 107, 157, 0.5);
    background: #fff;
}

.splash-badges {
    display: flex;
    gap: 1.2rem;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}

.splash-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    color: white;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.splash-badge svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.splash-badge span {
    font-size: 0.7rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

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

/* Responsive */
@media (max-width: 768px) {
    .splash-content {
        bottom: 2rem;
        right: 2rem;
        left: 2rem;
        align-items: center;
        text-align: center;
    }

    .splash-cta {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .splash-badges {
        gap: 1rem;
        justify-content: center;
    }

    .splash-badge {
        gap: 0.2rem;
    }

    .splash-badge svg {
        width: 20px;
        height: 20px;
    }

    .splash-badge span {
        font-size: 0.65rem;
    }

    .splash-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
}

/* Animation for backdrop blur effect */
@supports (backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px)) {
    .splash-screen {
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
}

/* Responsive styles for new elements */
@media (max-width: 768px) {
    .sample-option,
    .urgency-trigger,
    .trust-signals {
        font-size: 0.85rem;
    }

    .trust-badge {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
    }

    .price-badge {
        font-size: 0.85rem;
    }

    .normalized-price {
        font-size: 0.8rem;
    }

    .pricing-explainer {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .explainer-text strong {
        font-size: 1rem;
    }

    .explainer-detail {
        font-size: 0.85rem;
    }
}
