/* ==========================================================================
   Houlong Soap Landing Page Stylesheet
   Design Theme: Premium Organic Botanical Skincare (Sage Green & Cream)
   ========================================================================== */

/* Custom Variables */
:root {
    --primary: hsl(120, 18%, 32%);        /* Sage Green */
    --primary-light: hsl(120, 15%, 92%);  /* Soft pale green */
    --primary-dark: hsl(120, 25%, 15%);   /* Dark moss green */
    
    --accent: hsl(38, 28%, 52%);          /* Earthy warm gold */
    --accent-light: hsl(38, 30%, 94%);    /* Light warm gold/beige */
    --accent-dark: hsl(38, 30%, 25%);     /* Deep gold-brown */
    
    --text-dark: hsl(200, 18%, 14%);      /* Dark charcoal */
    --text-light: hsl(200, 10%, 45%);     /* Soft charcoal gray */
    
    --bg-cream: #f9f6f0;                  /* Premium organic cream bg */
    --bg-white: #ffffff;
    --bg-dark: hsl(120, 15%, 12%);        /* Charcoal dark moss for footer */
    
    --border-color: hsl(120, 10%, 85%);
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 8px;
    
    --font-serif: 'Noto Serif TC', serif;
    --font-sans: 'Noto Sans TC', sans-serif;
    
    --shadow-sm: 0 4px 12px rgba(45, 55, 45, 0.05);
    --shadow-md: 0 12px 36px rgba(45, 55, 45, 0.08);
    --shadow-lg: 0 24px 64px rgba(45, 55, 45, 0.12);
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography elements */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.3;
}

p {
    font-weight: 300;
}

.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: var(--accent);
    opacity: 0.2;
    z-index: -1;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(60, 80, 60, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(60, 80, 60, 0.3);
}

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

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

.btn-secondary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

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

/* Common Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
    max-width: 700px;
}

.section-header.text-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-subtitle {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(249, 246, 240, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(120, 140, 120, 0.1);
    transition: var(--transition);
}

.main-header.scrolled {
    height: 70px;
    box-shadow: var(--shadow-sm);
    background-color: rgba(249, 246, 240, 0.95);
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.brand-sub {
    font-size: 0.75rem;
    color: var(--accent-dark);
    letter-spacing: 1px;
    font-weight: 500;
}

.brand-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary-dark);
    margin-top: -2px;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

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

.btn-nav-cta {
    text-decoration: none;
    background-color: var(--primary);
    color: var(--bg-white) !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(60, 80, 60, 0.15);
}

.btn-nav-cta:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(60, 80, 60, 0.25);
}

/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 1100;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition);
}

.hamburger::before, .hamburger::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    position: absolute;
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* Mobile Active Menu Toggle Class */
.menu-toggle.active .hamburger {
    background-color: transparent;
}

.menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    padding-top: 160px;
    padding-bottom: 80px;
    background: linear-gradient(180deg, rgba(230, 235, 230, 0.4) 0%, rgba(249, 246, 240, 1) 100%);
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-content .badge {
    background-color: var(--accent-light);
    color: var(--accent-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
    border: 1px solid rgba(170, 130, 70, 0.15);
}

.hero-title {
    font-size: 3.2rem;
    line-height: 1.25;
    margin-bottom: 24px;
}

.hero-desc {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(120, 140, 120, 0.15);
    padding-top: 28px;
    width: 100%;
}

.h-feat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--primary-dark);
    font-weight: 500;
}

.feat-icon {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

/* Organic floating frame for hero image */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.organic-frame {
    width: 100%;
    max-width: 460px;
    height: 460px;
    overflow: hidden;
    /* CSS organic blob mask */
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    box-shadow: var(--shadow-lg);
    background-color: var(--primary-light);
    animation: organicFloat 10s ease-in-out infinite alternate;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: var(--transition-slow);
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.1);
}

@keyframes organicFloat {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        border-radius: 40% 60% 50% 50% / 50% 50% 55% 45%;
        transform: translateY(-8px) rotate(1deg);
    }
    100% {
        border-radius: 50% 50% 35% 65% / 55% 40% 60% 45%;
        transform: translateY(0px) rotate(-1deg);
    }
}

/* Floating badge on hero */
.floating-badge {
    position: absolute;
    bottom: 20px;
    left: -10px;
    background-color: var(--accent);
    color: var(--bg-white);
    padding: 16px 20px;
    border-radius: 50%;
    width: 110px;
    height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-md);
    transform: rotate(-10deg);
    animation: badgeFloat 4s ease-in-out infinite alternate;
    z-index: 10;
}

.badge-num {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
}

.badge-txt {
    font-size: 0.65rem;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

@keyframes badgeFloat {
    0% { transform: translateY(0px) rotate(-10deg); }
    100% { transform: translateY(-6px) rotate(-8deg); }
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 5;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 40px;
}

/* ==========================================================================
   Brand Story Section
   ========================================================================== */
.story-section {
    background-color: var(--bg-cream);
}

.story-container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: center;
}

.story-image-wrapper {
    position: relative;
}

.story-image {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.story-quote {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background-color: var(--bg-white);
    padding: 24px 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    max-width: 320px;
    border-left: 4px solid var(--primary);
}

.story-quote p {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.story-quote cite {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-light);
    display: block;
    text-align: right;
    font-style: normal;
}

.story-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.story-text {
    color: var(--text-light);
    font-size: 1.02rem;
    margin-bottom: 20px;
}

.story-text strong {
    color: var(--primary-dark);
}

.story-badges {
    display: flex;
    gap: 16px;
    width: 100%;
    margin-top: 24px;
}

.story-badge-item {
    flex: 1;
    background-color: rgba(120, 140, 120, 0.05);
    border: 1px solid rgba(120, 140, 120, 0.1);
    padding: 16px;
    border-radius: var(--border-radius-md);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.story-badge-item:hover {
    background-color: var(--primary-light);
    border-color: rgba(120, 140, 120, 0.2);
    transform: translateY(-2px);
}

.s-badge-title {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.s-badge-desc {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* ==========================================================================
   Left-Hand-Fragrance (Mexican Mint) Benefits Section
   ========================================================================== */
.benefits-section {
    background-color: var(--bg-white);
}

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

.benefit-card {
    background-color: var(--bg-cream);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(120, 140, 120, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.benefit-card:hover {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.b-icon-wrapper {
    background-color: var(--primary-light);
    color: var(--primary);
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.benefit-card:hover .b-icon-wrapper {
    background-color: var(--primary);
    color: var(--bg-white);
    transform: scale(1.05);
}

.b-icon {
    width: 28px;
    height: 28px;
}

.b-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.b-text {
    font-size: 0.92rem;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.b-bullets {
    list-style: none;
    width: 100%;
    border-top: 1px solid rgba(120, 140, 120, 0.15);
    padding-top: 16px;
}

.b-bullets li {
    font-size: 0.82rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.b-bullets li::before {
    content: '•';
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ==========================================================================
   Ingredients Section (Interactive Accordion)
   ========================================================================== */
.ingredients-section {
    background-color: var(--bg-cream);
}

.ingredients-container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 80px;
    align-items: center;
}

.ingredients-intro {
    color: var(--text-light);
    margin-bottom: 32px;
}

.ingredient-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ingredient-item {
    background-color: var(--bg-white);
    border: 1px solid rgba(120, 140, 120, 0.1);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition);
    padding: 18px 24px;
}

.ingredient-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.ingredient-item.active {
    background-color: var(--primary-light);
    border-color: var(--primary);
}

.ing-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.ing-num {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    margin-right: 18px;
}

.ing-name {
    font-size: 1.02rem;
    font-weight: 500;
    color: var(--primary-dark);
    flex-grow: 1;
}

.ing-arrow {
    width: 18px;
    height: 18px;
    position: relative;
    transition: var(--transition);
}

.ing-arrow::before, .ing-arrow::after {
    content: '';
    position: absolute;
    background-color: var(--primary);
    transition: var(--transition);
}

/* CSS Drawn arrow */
.ing-arrow::before {
    top: 8px;
    left: 2px;
    width: 8px;
    height: 2px;
    transform: rotate(45deg);
}

.ing-arrow::after {
    top: 8px;
    right: 2px;
    width: 8px;
    height: 2px;
    transform: rotate(-45deg);
}

.ingredient-item.active .ing-arrow {
    transform: rotate(180deg);
}

/* Ingredients Right Display Cards */
.ingredients-visual {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.ing-display-card-wrapper {
    width: 100%;
    position: relative;
}

.ing-display-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(120, 140, 120, 0.15);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.96) translateY(10px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                visibility 0.5s;
    z-index: 1;
}

.ing-display-card.show {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
    z-index: 2;
}

.ing-card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Placeholders for other ingredients with elegant gradients */
.ing-img-placeholder {
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.olive-placeholder {
    background: linear-gradient(135deg, hsl(65, 30%, 45%) 0%, hsl(120, 15%, 25%) 100%);
}
.shea-placeholder {
    background: linear-gradient(135deg, hsl(38, 25%, 85%) 0%, hsl(38, 20%, 65%) 100%);
}
.coconut-placeholder {
    background: linear-gradient(135deg, hsl(0, 0%, 90%) 0%, hsl(200, 10%, 70%) 100%);
}
.essential-placeholder {
    background: linear-gradient(135deg, hsl(180, 20%, 40%) 0%, hsl(120, 20%, 30%) 100%);
}

.ing-img-placeholder::after {
    content: '🌿';
    font-size: 4rem;
    opacity: 0.25;
}

.ing-card-body {
    padding: 30px;
}

.ing-card-body h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.ing-role {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.ing-description {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ==========================================================================
   Cold Process Section (Timeline)
   ========================================================================== */
.process-section {
    background-color: var(--bg-white);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

/* Timeline Vertical Line */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 20px;
    width: 2px;
    height: calc(100% - 30px);
    background-color: var(--border-color);
}

.process-step {
    position: relative;
    padding-left: 60px;
    margin-bottom: 50px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-num {
    position: absolute;
    left: 0;
    top: 0;
    width: 42px;
    height: 42px;
    background-color: var(--bg-cream);
    border: 2px solid var(--primary);
    color: var(--primary-dark);
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition);
}

.process-step:hover .step-num {
    background-color: var(--primary);
    color: var(--bg-white);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(60, 80, 60, 0.3);
}

.step-content {
    background-color: var(--bg-cream);
    padding: 24px 30px;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(120, 140, 120, 0.08);
    transition: var(--transition);
}

.process-step:hover .step-content {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    border-color: rgba(120, 140, 120, 0.2);
}

.step-content h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.92rem;
    color: var(--text-light);
}

/* Alternating timeline for wide screens */
@media (min-width: 900px) {
    .process-timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .process-step {
        width: 50%;
        padding-left: 0;
    }
    
    .process-step:nth-child(odd) {
        float: left;
        padding-right: 50px;
        text-align: right;
    }
    
    .process-step:nth-child(even) {
        float: right;
        padding-left: 50px;
    }
    
    .step-num {
        left: auto;
        right: -21px; /* center alignment */
        top: 15px;
    }
    
    .process-step:nth-child(even) .step-num {
        left: -21px;
        right: auto;
    }
    
    /* Clean clearing of floats */
    .process-timeline::after {
        content: '';
        display: block;
        clear: both;
    }
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.reviews-section {
    background-color: var(--bg-cream);
}

.review-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.tab-btn {
    background-color: var(--bg-white);
    border: 1px solid rgba(120, 140, 120, 0.12);
    color: var(--text-dark);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.88rem;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.tab-btn:hover {
    border-color: var(--primary);
    background-color: var(--primary-light);
}

.tab-btn.active {
    background-color: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
    box-shadow: 0 4px 10px rgba(60, 80, 60, 0.15);
}

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

.review-card {
    background-color: var(--bg-white);
    padding: 36px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(120, 140, 120, 0.08);
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
}

/* Hidden animation class */
.review-card.hidden {
    opacity: 0;
    transform: translateY(20px);
    display: none;
}

.rev-stars {
    color: var(--accent);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.rev-title {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.rev-text {
    font-size: 0.92rem;
    color: var(--text-light);
    margin-bottom: 24px;
    flex-grow: 1;
}

.rev-user {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid rgba(120, 140, 120, 0.1);
    padding-top: 18px;
}

.user-avatar {
    width: 44px;
    height: 44px;
    background-color: var(--accent-light);
    color: var(--accent-dark);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-meta {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.user-tag {
    font-size: 0.72rem;
    color: var(--text-light);
}

/* ==========================================================================
   Order & Inquiry Section (Interactive Form)
   ========================================================================== */
.order-section {
    background-color: var(--bg-white);
}

.order-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
}

.order-form-wrapper {
    position: relative;
}

.order-intro {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.purchase-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: var(--transition);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.form-label .required {
    color: #c94a4a;
}

.form-input {
    width: 100%;
    padding: 12px 18px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(60, 80, 60, 0.12);
}

.form-input.text-area {
    resize: vertical;
}

.error-msg {
    color: #c94a4a;
    font-size: 0.75rem;
    margin-top: -4px;
    display: none;
}

.form-group.has-error .form-input {
    border-color: #c94a4a;
    background-color: #fff9f9;
}

.form-group.has-error .error-msg {
    display: block;
}

/* Product Selection interactive Card grid */
.product-selection-box {
    background-color: var(--bg-cream);
    border: 1px solid rgba(120, 140, 120, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 28px;
    margin: 10px 0 20px 0;
}

.selection-title {
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.option-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.option-card {
    position: relative;
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition);
    overflow: hidden;
}

.option-card:hover {
    border-color: var(--primary);
}

.option-card.active {
    border-color: var(--primary);
    background-color: var(--primary-light);
}

.hidden-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.opt-label {
    display: flex;
    flex-direction: column;
    padding: 16px 20px;
    cursor: pointer;
    position: relative;
}

.opt-badge {
    align-self: flex-start;
    background-color: var(--border-color);
    color: var(--text-light);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 6px;
}

.option-card.active .opt-badge {
    background-color: var(--primary);
    color: var(--bg-white);
}

.font-gold {
    background-color: var(--accent) !important;
    color: var(--bg-white) !important;
}

.opt-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.opt-price {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.opt-unit {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--text-light);
}

.opt-discount {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #c94a4a;
    color: var(--bg-white);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
}

/* Quantity Selection */
.quantity-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.qty-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.qty-selector {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    background-color: var(--bg-white);
}

.qty-btn {
    background: none;
    border: none;
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.qty-btn:hover {
    background-color: var(--primary-light);
}

.qty-input {
    width: 50px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.qty-input:focus {
    outline: none;
}

/* Summary Box */
.summary-box {
    border-top: 1px dashed rgba(120, 140, 120, 0.2);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-light);
}

.total-line {
    font-size: 1.1rem;
    color: var(--primary-dark);
    font-weight: 700;
    margin-top: 6px;
    border-top: 1px solid rgba(120, 140, 120, 0.15);
    padding-top: 12px;
}

.total-price {
    font-family: var(--font-serif);
    color: #c94a4a;
    font-size: 1.4rem;
    font-weight: 900;
}

.btn-submit-order {
    padding: 16px;
    font-size: 1.05rem;
    width: 100%;
    box-shadow: 0 4px 15px rgba(60, 80, 60, 0.2);
    position: relative;
}

.btn-submit-order .loader {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    position: absolute;
}

.loader.hidden {
    display: none;
}

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

/* Success Screen Design */
.success-screen {
    text-align: center;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.success-screen.hidden {
    display: none;
}

.success-icon-box {
    width: 100px;
    height: 100px;
    margin-bottom: 24px;
}

.checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: var(--primary);
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px var(--primary);
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out 0s both;
    margin: 10px auto;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke: var(--primary);
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% { stroke-dashoffset: 0; }
}

@keyframes scale {
    0%, 100% { transform: none; }
    50% { transform: scale3d(1.1, 1.1, 1); }
}

@keyframes fill {
    100% { box-shadow: inset 0px 0px 0px 40px var(--primary-light); }
}

.success-screen h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.success-screen p {
    color: var(--text-light);
    font-size: 0.92rem;
    margin-bottom: 30px;
    max-width: 380px;
}

.btn-success-close {
    padding: 10px 24px;
}

/* Order Info Details Side Panel */
.order-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.info-card {
    background-color: var(--primary-light);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(120, 140, 120, 0.15);
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 24px;
}

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-icon-box {
    width: 24px;
    height: 24px;
    background-color: var(--primary);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 3px;
}

.info-txt {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-txt strong {
    font-size: 0.95rem;
    color: var(--primary-dark);
}

.info-txt span {
    font-size: 0.88rem;
    color: var(--text-light);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-details h4 {
    font-size: 1.05rem;
    color: var(--primary-dark);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    background-color: var(--bg-cream);
    border: 1px solid rgba(120, 140, 120, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
}

.c-val {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-dark);
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.main-footer {
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 0 0;
    font-size: 0.9rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.main-footer h2, .main-footer h4 {
    color: var(--bg-white);
}

.footer-brand h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.6;
    max-width: 320px;
}

.footer-links h4, .footer-disclaimer h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h4::after, .footer-disclaimer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-light);
    padding-left: 4px;
}

.footer-disclaimer p {
    font-size: 0.78rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    font-size: 0.78rem;
    text-align: center;
}

.footer-bottom-container {
    display: flex;
    justify-content: center;
}

/* ==========================================================================
   Scroll Animations using Intersection Observer
   ========================================================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section Fade in */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content h1.fade-in { animation-delay: 0.1s; }
.hero-content p.fade-in { animation-delay: 0.25s; }
.hero-content .hero-actions.fade-in { animation-delay: 0.35s; }
.hero-content .hero-features.fade-in { animation-delay: 0.45s; }
.hero-image-wrapper.fade-in { animation-delay: 0.2s; }

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

/* ==========================================================================
   Responsive Web Design (Media Queries)
   ========================================================================== */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .hero-container, .story-container, .ingredients-container, .order-container {
        gap: 40px;
    }
}

@media (max-width: 900px) {
    section {
        padding: 70px 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .organic-frame {
        max-width: 380px;
        height: 380px;
    }
    
    .story-container {
        grid-template-columns: 1fr;
    }
    
    .story-image-wrapper {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .story-content {
        order: 1;
    }
    
    .ingredients-container {
        grid-template-columns: 1fr;
    }
    
    .ingredients-visual {
        min-height: auto;
    }
    
    .ing-display-card {
        position: relative;
        opacity: 1;
        visibility: visible;
        transform: scale(1) translateY(0);
        margin-bottom: 24px;
        display: none;
    }
    
    .ing-display-card.show {
        display: block;
    }
    
    .order-container {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }
}

@media (max-width: 600px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: 0;
        background-color: var(--bg-cream);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
        overflow: hidden;
        transition: var(--transition);
        border-bottom: 0px solid rgba(120, 140, 120, 0.1);
    }
    
    .nav-menu.active {
        height: 320px;
        border-bottom-width: 1px;
    }
    
    .nav-menu ul {
        flex-direction: column;
        padding: 30px 0;
        gap: 20px;
    }
    
    .nav-menu.active ul {
        opacity: 1;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .option-grid {
        grid-template-columns: 1fr;
    }
    
    .opt-discount {
        position: relative;
        transform: none;
        right: auto;
        top: auto;
        margin-top: 8px;
        align-self: flex-start;
    }
    
    .story-badges {
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}
