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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #2d2d2d;
    line-height: 1.6;
    background: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    max-width: 100vw;
    position: relative;
}

/* Color Variables - Warm Brown & Cream Theme */
:root {
    --primary-brown: #BC6534;
    --primary-brown-dark: #9a4f28;
    --primary-brown-light: #d4844f;
    --secondary-cream: #f7efd6;
    --accent-light-cream: #fdf9f0;
    --accent-tan: #e6d5b8;
    --text-dark: #2d2d2d;
    --header-footer-bg: #fdf9f0; /* Light cream for better readability */
    --header-footer-text: #2d2d2d; /* Dark text for contrast */
}

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

/* Mobile-Friendly Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Better Touch Targets */
a, button, input, select, textarea {
    touch-action: manipulation;
}

/* Prevent Text Size Adjustment on iOS */
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Mobile-Friendly Form Inputs */
input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
select,
textarea {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 12px;
    border-radius: 8px;
    border: 2px solid rgba(188, 101, 52, 0.3);
    width: 100%;
    max-width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Typography - SERIF HEADERS */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    min-width: 220px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
    min-height: 48px; /* Better touch target for mobile */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-user-select: none;
    user-select: none;
}

.btn-primary {
    background: linear-gradient(135deg, #BC6534 0%, #d4844f 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(188, 101, 52, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(188, 101, 52, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #BC6534;
    border: 2px solid #BC6534;
}

.btn-secondary:hover {
    background: #BC6534;
    color: #ffffff;
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.2rem;
}

/* Header */
.header {
    background: var(--header-footer-bg);
    padding: 20px 0;
    box-shadow: 0 2px 20px rgba(188, 101, 52, 0.08);
    border-bottom: 1px solid rgba(188, 101, 52, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: translateY(0);
}

.header.header-hidden {
    transform: translateY(-100%);
}

.header.header-visible {
    transform: translateY(0);
    box-shadow: 0 4px 30px rgba(188, 101, 52, 0.12);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: #BC6534;
    letter-spacing: -0.5px;
    display: none;
}

.header-nav {
    display: flex;
    gap: 30px;
}

.header-nav a {
    color: var(--header-footer-text);
    text-decoration: none;
    font-weight: 600;
    font-family: 'Inter', 'SF Pro Display', sans-serif;
    letter-spacing: -0.2px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #BC6534;
    transition: width 0.3s ease;
}

.header-nav a:hover {
    color: #BC6534;
}

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

/* Notification Cart */
.notification-cart {
    position: fixed;
    top: 100px;
    right: 20px;
    background: linear-gradient(135deg, #BC6534 0%, #d4844f 100%);
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(188, 101, 52, 0.4);
    z-index: 1000;
    opacity: 0;
    transform: translateX(400px);
    -webkit-transform: translateX(400px);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-width: 320px;
}

.notification-cart.show {
    opacity: 1;
    transform: translateX(0);
    -webkit-transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-icon {
    font-size: 1.5rem;
    animation: ringBell 0.5s ease infinite;
}

.notification-text {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
}

@keyframes ringBell {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
    50% { transform: rotate(0deg); }
}

/* Vertical Navigation */
.vertical-nav {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d4d4d4;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.nav-dot:hover,
.nav-dot.active {
    background: #BC6534;
    transform: scale(1.3);
}

.nav-dot::after {
    content: attr(title);
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    background: #2d2d2d;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.nav-dot:hover::after {
    opacity: 1;
}

/* Scroll margin for fixed header navigation */
section[id] {
    scroll-margin-top: 100px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f7efd6 0%, #ffffff 100%);
    padding: 100px 0 80px;
    padding-top: 150px; /* Account for fixed header */
    margin-top: 80px; /* Additional spacing from fixed header */
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(242, 166, 90, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInUp 0.8s ease;
}

.hero-headline {
    color: #BC6534;
    margin-bottom: 20px;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: #555555;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.price-label {
    font-size: 1rem;
    color: #666666;
    font-weight: 500;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #BC6534;
    font-family: 'Playfair Display', serif;
}

.price-per-cup {
    font-size: 0.95rem;
    color: #BC6534;
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.urgency-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    padding: 15px 25px;
    border-radius: 50px;
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    animation: pulse 2s infinite;
    margin: 20px auto;
    justify-content: center;
}

.fire-icon {
    font-size: 1.5rem;
}

.urgency-text {
    font-size: 1rem;
}

.stock-warning {
    font-size: 0.9rem;
    opacity: 0.95;
    padding-left: 10px;
    border-left: 2px solid rgba(255, 255, 255, 0.5);
}

.hero-image {
    animation: fadeInRight 0.8s ease;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* Quiz Discovery Section */
.quiz-discovery-section {
    background: linear-gradient(135deg, #ffffff 0%, #f7efd6 100%);
    padding: 80px 0;
    position: relative;
}

.quiz-discovery-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.quiz-discovery-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #BC6534;
    margin-bottom: 20px;
    line-height: 1.2;
}

.quiz-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.quiz-benefits {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #333;
}

.benefit-icon {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.quiz-cta-container {
    text-align: center;
}

.quiz-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #BC6534, #d4844f);
    color: white;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(188, 101, 52, 0.3);
    margin-bottom: 15px;
}

.quiz-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(188, 101, 52, 0.4);
}

.cta-text {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
}

.cta-subtext {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 5px;
}

.quiz-guarantee {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}

/* Archetype Preview */
.archetype-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.archetype-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.archetype-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.archetype-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

/* Archetype Card Colors */
.archetype-card.sage {
    border-top: 4px solid #6a4c93;
}

.archetype-card.warrior {
    border-top: 4px solid #d64545;
}

.archetype-card.healer {
    border-top: 4px solid #2d6a4f;
}

.archetype-card.creator {
    border-top: 4px solid #f4a261;
}

.archetype-card.explorer {
    border-top: 4px solid #219ebc;
}

.archetype-card.grounded {
    border-top: 4px solid #6d4c41;
}

/* Product Section */
.product-section {
    padding: 100px 0;
    background: #ffffff;
}

.section-title {
    text-align: center;
    color: #BC6534;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #666666;
    margin-bottom: 60px;
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.product-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.product-benefits {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    background: linear-gradient(135deg, #BC6534 0%, #d4844f 100%);
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(188, 101, 52, 0.2);
}

.benefit-content h3 {
    color: #BC6534;
    margin-bottom: 10px;
}

.benefit-content p {
    color: #555555;
    line-height: 1.7;
}

/* Price Justification Card */
.price-justification-card {
    background: linear-gradient(135deg, #f7efd6 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid #d4844f;
    max-width: 900px;
    margin: 0 auto;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.card-section h3 {
    color: #BC6534;
    margin-bottom: 15px;
}

.card-section p {
    color: #555555;
    line-height: 1.7;
}

.countdown-section {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #BC6534;
}

.countdown-badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.countdown-icon {
    font-size: 1.5rem;
}

.countdown-text {
    font-size: 1.1rem;
    color: #2d2d2d;
    font-weight: 600;
}

#countdown-timer,
#countdown-timer-2 {
    color: #e63946;
    font-weight: 700;
    font-family: 'Inter', monospace;
    background: linear-gradient(135deg, #ff4757 0%, #e63946 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse-timer 2s ease-in-out infinite;
}

@keyframes pulse-timer {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.guarantee-section {
    background: #f5f0ed;
    padding: 20px;
    border-radius: 12px;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.guarantee-icon {
    font-size: 1.5rem;
    color: #BC6534;
}

.guarantee-text {
    font-size: 1.1rem;
    color: #2d2d2d;
}

.guarantee-text strong {
    color: #BC6534;
}

/* Comparison Section */
.comparison-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7efd6 100%);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
    position: relative;
}

/* Scroll indicator for mobile */
.comparison-table-wrapper::after {
    content: '← Scroll →';
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(188, 101, 52, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
    .comparison-table-wrapper::after {
        opacity: 1;
    }
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.comparison-table thead {
    background: linear-gradient(135deg, #BC6534 0%, #d4844f 100%);
    color: #ffffff;
}

.comparison-table th {
    padding: 20px;
    text-align: left;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
}

.comparison-table td {
    padding: 20px;
    border-bottom: 1px solid #e8e8e8;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.highlight-col {
    background: transparent !important;
    font-weight: 600;
}

.pro {
    color: #BC6534;
}

.con {
    color: #999999;
}

.check {
    color: #BC6534;
    font-size: 1.3rem;
    margin-right: 5px;
}

.cross {
    color: #ff6b6b;
    font-size: 1.3rem;
    margin-right: 5px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: #ffffff;
}

.rating-summary {
    text-align: center;
    margin-bottom: 60px;
}

.stars {
    color: #f2a65a;
    font-size: 2rem;
    margin-bottom: 10px;
}

.rating-text {
    color: #666666;
    font-size: 1.1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: #f7efd6;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-header .stars {
    font-size: 1rem;
    margin: 0;
}

.reviewer-name {
    font-weight: 600;
    color: #2d2d2d;
}

.testimonial-title {
    color: #BC6534;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.testimonial-text {
    color: #555555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.verified-badge {
    display: inline-block;
    background: #BC6534;
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.testimonials-urgency {
    text-align: center;
    background: linear-gradient(135deg, #BC6534 0%, #d4844f 100%);
    padding: 20px;
    border-radius: 12px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 40px;
}

.urgency-icon {
    font-size: 1.5rem;
    margin-right: 10px;
}

.testimonials-cta {
    text-align: center;
}

/* Ingredients Section */
.ingredients-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f7efd6 0%, #ffffff 100%);
}

.ingredients-intro {
    max-width: 800px;
    margin: 0 auto 60px;
}

.intro-badge {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #BC6534;
}

.badge-icon {
    font-size: 2rem;
}

.badge-content strong {
    display: block;
    color: #BC6534;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.badge-content p {
    color: #555555;
    line-height: 1.7;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.ingredient-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #BC6534;
}

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

.ingredient-icon {
    width: 100%;
    height: 250px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
    background: #fdf9f0;
}

.ingredient-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.ingredient-card h3 {
    color: #BC6534;
    margin-bottom: 10px;
}

.ingredient-dosage {
    display: inline-block;
    background: #d4844f;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.ingredient-benefit {
    color: #555555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.ingredient-source {
    font-size: 0.85rem;
    color: #999999;
    font-style: italic;
}

.ingredients-footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.quality-badge {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.quality-badge .badge-icon {
    color: #BC6534;
    font-size: 1.8rem;
}

.badge-text strong {
    display: block;
    color: #BC6534;
    margin-bottom: 5px;
}

.badge-text p {
    color: #666666;
    font-size: 0.95rem;
}

/* Cost Calculator Section */
.calculator-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7efd6 100%);
}

.calculator-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 1100px;
    margin: 0 auto;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 40px;
}

.calculator-input-section h3,
.calculator-results h3 {
    color: #BC6534;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    color: #2d2d2d;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.input-with-symbol {
    position: relative;
}

.currency-symbol {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #BC6534;
    font-weight: 700;
    font-size: 1.2rem;
}

.input-group input {
    width: 100%;
    padding: 16px 16px 16px 40px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d2d2d;
    transition: border-color 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #BC6534;
}

.input-group input[type="number"]:not(.input-with-symbol input) {
    padding-left: 16px;
}

.savings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.savings-item {
    background: #f7efd6;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
}

.savings-item.highlight {
    background: linear-gradient(135deg, #BC6534 0%, #d4844f 100%);
    color: #ffffff;
}

.savings-item:hover {
    transform: translateY(-3px);
}

.savings-label {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 10px;
    opacity: 0.9;
}

.savings-item.highlight .savings-label {
    color: #ffffff;
}

.savings-value {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    color: #BC6534;
}

.savings-item.highlight .savings-value {
    color: #ffffff;
}

.shroomsy-cost {
    font-size: 1.75rem;
}

.calculator-note {
    background: #fdf9f0;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    font-size: 1.1rem;
    color: #2d2d2d;
    border-left: 4px solid #BC6534;
}

.calculator-note strong {
    color: #BC6534;
    font-size: 1.2rem;
}

.calculator-cta {
    text-align: center;
    padding-top: 40px;
    border-top: 2px solid #f7efd6;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #ffffff;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.faq-item {
    background: #f7efd6;
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid #BC6534;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.faq-question {
    color: #BC6534;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-answer {
    color: #555555;
    line-height: 1.7;
}

.faq-cta {
    text-align: center;
    background: linear-gradient(135deg, #BC6534 0%, #d4844f 100%);
    padding: 60px;
    border-radius: 20px;
    color: #ffffff;
}

.faq-cta h3 {
    color: #ffffff;
    margin-bottom: 15px;
}

.faq-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.faq-cta .btn-secondary {
    background: #ffffff;
    color: #BC6534;
    border: 2px solid #ffffff;
    font-weight: 700;
    padding: 16px 40px;
    font-size: 1.1rem;
}

.faq-cta .btn-secondary:hover {
    background: #f7efd6;
    color: #BC6534;
    border-color: #f7efd6;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #BC6534 0%, #d4844f 100%);
    text-align: center;
    color: #ffffff;
}

.final-cta-section h2 {
    color: #ffffff;
    margin-bottom: 20px;
}

.final-cta-section > .container > p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.final-cta-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}

.final-cta-price .price-amount {
    color: #f5deb3;
    font-size: 4rem;
}

.final-cta-price .price-detail {
    color: #ffffff;
    opacity: 0.9;
    font-size: 1.1rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Footer */
.footer {
    background: var(--header-footer-bg);
    color: var(--header-footer-text);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(188, 101, 52, 0.1);
}

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

.footer-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
}

.footer-section h4 {
    color: #BC6534;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
    letter-spacing: -0.3px;
}

.footer-section p {
    color: #5a5a5a;
    font-family: 'Inter', 'SF Pro Display', sans-serif;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #5a5a5a;
    font-family: 'Inter', 'SF Pro Display', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: #BC6534;
    padding-left: 5px;
}

.contact-info li {
    color: #5a5a5a;
    font-family: 'Inter', 'SF Pro Display', sans-serif;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(188, 101, 52, 0.15);
}

.footer-bottom p {
    color: #888888;
    font-family: 'Inter', 'SF Pro Display', sans-serif;
    font-size: 0.9rem;
}

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .product-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image,
    .product-image {
        text-align: center;
    }
    
    .hero-image img,
    .product-image img {
        max-width: 100%;
        height: auto;
    }

    .vertical-nav {
        display: none;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px;
    }
    
    /* Better touch targets for tablets */
    .btn {
        min-height: 48px;
        padding: 14px 28px;
    }
}

@media (max-width: 768px) {
    /* Header Mobile Optimization */
    .header {
        padding: 15px 0;
    }
    
    .header .container {
        flex-direction: column;
        gap: 15px;
    }

    .header-nav {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
    
    .header-nav a {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
    
    .logo-image {
        max-width: 120px;
    }
    
    .notification-cart {
        top: auto !important;
        bottom: 20px !important;
        right: 20px;
        left: auto;
        transform: translateX(400px);
        max-width: calc(100% - 40px);
        font-size: 0.9rem;
        padding: 12px 20px;
    }
    
    .notification-cart.show {
        transform: translateX(0);
    }
    
    /* Calculator Mobile */
    .calculator-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .calculator-card {
        padding: 25px 20px;
    }
    
    .savings-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .savings-item {
        padding: 15px;
    }

    /* Typography Mobile */
    h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 1.25rem;
    }

    /* Hero Section Mobile */
    .hero-section {
        padding: 40px 0 30px;
        padding-top: 100px; /* Account for fixed header on mobile */
        margin-top: 80px; /* Additional spacing from fixed header */
    }
    
    .hero-content {
        gap: 30px;
        display: flex;
        flex-direction: column;
    }

    /* Quiz Discovery Section Mobile */
    .quiz-discovery-section {
        padding: 80px 0 60px;
        padding-top: 140px; /* Account for fixed header on mobile */
    }
    
    .quiz-discovery-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .quiz-discovery-text h2 {
        font-size: 2rem;
    }
    
    .quiz-subtitle {
        font-size: 1.1rem;
    }
    
    .archetype-preview {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 15px;
        max-width: 100%;
    }
    
    .archetype-card {
        padding: 15px;
    }
    
    .archetype-icon {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .archetype-name {
        font-size: 0.8rem;
    }
    
    /* Image comes first on mobile */
    .hero-image {
        order: -1;
    }
    
    .hero-text {
        order: 1;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        text-align: center;
        min-height: 50px;
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 18px 32px;
        font-size: 1.1rem;
    }

    .urgency-badge {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        margin: 15px auto;
    }

    .stock-warning {
        border-left: none;
        border-top: 2px solid rgba(255, 255, 255, 0.5);
        padding-left: 0;
        padding-top: 10px;
        margin-left: 0;
    }
    
    .hero-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .price-amount {
        font-size: 3rem;
    }

    /* Grids Mobile */
    .testimonials-grid,
    .ingredients-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    /* Cards Mobile */
    .price-justification-card {
        padding: 25px 20px;
    }
    
    .testimonial-card,
    .ingredient-card,
    .faq-item {
        padding: 20px;
    }

    /* Sections Mobile */
    .product-section,
    .comparison-section,
    .testimonials-section,
    .ingredients-section,
    .calculator-section,
    .faq-section,
    .final-cta-section {
        padding: 50px 0;
    }
    
    /* First section after quiz discovery needs extra top spacing */
    .product-section {
        padding-top: 80px;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }

    /* Comparison Table Mobile - Make scrollable */
    .comparison-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
    }
    
    .comparison-table {
        min-width: 600px;
    }
    
    .comparison-table-wrapper::after {
        font-size: 0.7rem;
        padding: 5px 10px;
        bottom: 5px;
        right: 5px;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* Trust Badges Mobile */
    .trust-badges {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        font-size: 0.85rem;
    }
    
    /* Ingredients Icons Mobile */
    .ingredient-icon {
        height: 200px;
    }
    
    .ingredient-icon img {
        width: 100%;
        height: 100%;
        padding: 15px;
    }
    
    /* Rating Mobile */
    .stars {
        font-size: 1.2rem;
    }
    
    /* Product Images Mobile */
    .hero-image img,
    .product-image img {
        max-width: 80%;
        margin: 0 auto;
    }
    
    /* Benefit Icons Mobile */
    .benefit-icon {
        font-size: 2rem;
        margin-bottom: 10px;
        width: 60px;
        height: 60px;
        min-width: 60px;
        min-height: 60px;
    }
    
    /* Better line height for readability on mobile */
    body {
        line-height: 1.7;
    }
    
    /* Ensure video reel doesn't block content */
    .video-reel-container {
        z-index: 998;
    }
    
    /* Better spacing for mobile sections */
    .hero-text,
    .product-benefits {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    /* Container Small Screens */
    .container {
        padding: 0 15px;
    }

    /* Typography Small Screens */
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.1rem;
    }
    
    body {
        font-size: 0.95rem;
    }

    /* Prices Small Screens */
    .price-amount {
        font-size: 2.5rem;
    }

    .final-cta-price .price-amount {
        font-size: 2.75rem;
    }
    
    .price-label,
    .price-per-cup {
        font-size: 0.85rem;
    }

    /* Comparison Table Small Screens */
    .comparison-table-wrapper {
        font-size: 0.75rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 8px 4px;
    }
    
    .comparison-table {
        min-width: 500px;
    }

    /* Buttons Small Screens */
    .btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    /* Header Small Screens */
    .header-nav {
        gap: 10px;
    }
    
    .header-nav a {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
    
    .logo-image {
        max-width: 100px;
    }

    /* Cards Small Screens */
    .testimonial-card,
    .ingredient-card,
    .faq-item {
        padding: 15px;
    }
    
    .price-justification-card,
    .calculator-card {
        padding: 20px 15px;
    }
    
    /* Savings Grid Small Screens */
    .savings-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .savings-value {
        font-size: 1.5rem;
    }
    
    /* Sections Small Screens */
    .product-section,
    .comparison-section,
    .testimonials-section,
    .ingredients-section,
    .calculator-section,
    .faq-section,
    .final-cta-section {
        padding: 40px 0;
    }
    
    .hero-section {
        padding: 30px 0 25px;
    }
    
    /* Quiz Discovery Section Small Screens */
    .quiz-discovery-section {
        padding: 40px 0;
    }
    
    .quiz-discovery-text h2 {
        font-size: 1.8rem;
    }
    
    .quiz-subtitle {
        font-size: 1rem;
    }
    
    .benefit-item {
        font-size: 1rem;
    }
    
    .quiz-cta-button {
        padding: 18px 35px;
        font-size: 1.2rem;
    }
    
    .archetype-preview {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .archetype-card {
        padding: 12px;
    }
    
    .archetype-icon {
        font-size: 1.3rem;
        margin-bottom: 6px;
    }
    
    .archetype-name {
        font-size: 0.75rem;
    }
    
    /* Urgency Badge Small Screens */
    .urgency-badge {
        font-size: 0.9rem;
        padding: 10px 16px;
        margin: 12px auto;
        gap: 6px;
    }
    
    .fire-icon {
        font-size: 1.2rem;
    }
    
    /* Trust Badges Small Screens */
    .trust-badges {
        grid-template-columns: 1fr;
        gap: 8px;
        font-size: 0.8rem;
    }
    
    .trust-badge {
        padding: 12px;
    }
    
    /* Ingredient Icons Small Screens */
    .ingredient-icon {
        height: 180px;
    }
    
    .ingredient-icon img {
        width: 100%;
        height: 100%;
        padding: 15px;
    }
    
    .ingredient-dosage {
        font-size: 0.8rem;
    }
    
    /* Testimonials Small Screens */
    .testimonial-title {
        font-size: 1rem;
    }
    
    .reviewer-name {
        font-size: 0.85rem;
    }
    
    /* Footer Small Screens */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-section {
        font-size: 0.9rem;
    }
    
    /* Notification Cart Small Screens */
    .notification-cart {
        font-size: 0.85rem;
        padding: 10px 15px;
        max-width: calc(100% - 30px);
        right: 15px;
        bottom: 15px !important;
        top: auto !important;
    }
    
    .notification-icon {
        font-size: 1rem;
    }
    
    /* Rating Small Screens */
    .stars {
        font-size: 1rem;
    }
    
    .rating-text {
        font-size: 0.85rem;
    }
    
    /* Countdown Small Screens */
    .countdown-badge,
    .guarantee-badge {
        font-size: 0.85rem;
        padding: 10px 15px;
    }
    
    /* Product Images Extra Small */
    .hero-image img,
    .product-image img {
        max-width: 90%;
    }
    
    /* FAQ Items Extra Small */
    .faq-question {
        font-size: 1rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
    }
    
    /* Improve touch targets on very small screens */
    .header-nav a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    /* Better mobile image loading */
    img {
        image-rendering: auto;
        image-rendering: crisp-edges;
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 900px) and (orientation: landscape) {
    .hero-section {
        padding: 30px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        align-items: center;
    }
    
    .hero-image img,
    .product-image img {
        max-width: 70%;
    }
}

/* High DPI Screens - Optimize for Retina */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    img {
        image-rendering: -webkit-optimize-contrast;
    }
}
