/* --- GLOBAL STYLES & VARIABLES --- */
:root {
    --color-light-blue: #69DDFF;
    --color-mid-blue: #96CDFF;
    --color-light-lavender: #D8E1FF;
    --color-dark-text: #1a2c4e;
    --color-light-text: #f0f8ff;
    --color-white: #ffffff;
    --color-bg: #fdfdff;
    
    --font-primary: 'Poppins', sans-serif;
    
    --spacing-xs: 4px;
    --spacing-s: 8px;
    --spacing-m: 16px;
    --spacing-l: 24px;
    --spacing-xl: 48px;
    --spacing-xxl: 96px;

    --border-radius: 12px;
    --transition-fast: 0.3s ease;
    --transition-slow: 0.6s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-dark-text);
    line-height: 1.6;
    font-size: 16px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-l);
}

section {
    padding: var(--spacing-xxl) 0;
    overflow: hidden;
}

h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
}

h1 { font-size: 4rem; font-weight: 900; }
h2 { font-size: 2.5rem; margin-bottom: var(--spacing-l); }
h3 { font-size: 1.5rem; margin-bottom: var(--spacing-s); }
p { margin-bottom: var(--spacing-m); }
a { color: var(--color-mid-blue); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--color-light-blue); }
ul { list-style: none; }

.section-title {
    color: var(--color-dark-text);
}
.text-center { text-align: center; }
.section-intro {
    max-width: 700px;
    margin: 0 auto var(--spacing-xl) auto;
    text-align: center;
    font-size: 1.1rem;
    color: #55627a;
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: var(--spacing-m) var(--spacing-xl);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-light-blue);
    color: var(--color-dark-text);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(105, 221, 255, 0.4);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: var(--color-dark-text);
    border: 2px solid var(--color-mid-blue);
}

.btn-secondary:hover {
    background-color: var(--color-mid-blue);
    color: var(--color-white);
}

/* --- HEADER --- */
.site-header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: var(--spacing-l) 0;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-white);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.nav-links {
    display: flex;
    gap: var(--spacing-l);
}

.nav-links a {
    color: var(--color-light-text);
    font-weight: 600;
    padding: var(--spacing-s) 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-light-blue);
    transition: width var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger {
    display: block;
    position: relative;
    width: 25px;
    height: 2px;
    background: var(--color-white);
    transition: background 0s 0.25s;
}

.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: var(--color-white);
    left: 0;
    transition: transform 0.25s, top 0.25s 0.25s;
}
.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }


/* --- SECTION 1: HERO --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    position: relative;
    background: url('images/hero-bg.webp') no-repeat center center/cover;
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(105, 221, 255, 0.6), rgba(150, 205, 255, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.hero-title { text-shadow: 2px 2px 8px rgba(0,0,0,0.3); }
.hero-subtitle { font-size: 1.25rem; margin-bottom: var(--spacing-xl); }

/* --- SECTION 2: BESTSELLERS --- */
/* --- SECTION 2: BESTSELLERS (REDESIGNED) --- */
.bestsellers-section {
    background-color: var(--color-light-lavender);
}

.bestsellers-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.bestseller-item {
    position: relative;
    height: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform var(--transition-slow);
}

.bestseller-item:hover {
    transform: scale(1.03);
}

.bestseller-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow), filter var(--transition-slow);
}

.bestseller-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.9);
}

.bestseller-rank {
    position: absolute;
    top: -20px;
    left: var(--spacing-m);
    font-size: 8rem;
    font-weight: 900;
    color: var(--color-white);
    opacity: 0.1;
    z-index: 1;
    user-select: none; /* Prevents text selection */
}

.bestseller-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: var(--spacing-l);
    color: var(--color-white);
    background: linear-gradient(to top, rgba(26, 44, 78, 0.9) 0%, rgba(26, 44, 78, 0.7) 60%, transparent 100%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px); /* For Safari */
    
    max-height: 120px; /* Initial collapsed height */
    transition: max-height 0.5s ease-in-out;
}

.bestseller-item:hover .bestseller-info {
    max-height: 220px; /* Expanded height on hover */
}

.bestseller-info h3 {
    font-size: 1.8rem;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
    margin-bottom: var(--spacing-s);
}

.bestseller-info p {
    margin: 0 0 var(--spacing-m) 0;
    opacity: 0;
    transition: opacity 0.3s ease-in-out 0.2s; /* Fade in with a delay */
    height: 60px; /* Give it a fixed height to prevent layout shift */
}

.bestseller-item:hover .bestseller-info p {
    opacity: 1;
}

.bestseller-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--color-light-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.bestseller-link svg {
    width: 20px;
    height: 20px;
    margin-left: var(--spacing-s);
    transition: transform var(--transition-fast);
}

.bestseller-link:hover svg {
    transform: translateX(5px);
}

/* Responsive adjustments for the new section */
@media (max-width: 992px) {
    .bestsellers-showcase {
        grid-template-columns: 1fr;
    }
    .bestseller-item {
        height: 450px;
    }
}

/* --- SECTION 3: WHY FROZEN? --- */
/* --- SECTION 3: WHY FROZEN? (REDESIGNED) --- */
.why-frozen-section {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-light-lavender) 100%);
    overflow: hidden; /* Important for containing the large text */
}

.why-frozen-container {
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
}

.why-frozen-layout {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items: center;
    position: relative;
    min-height: 600px;
}

.why-frozen-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(100px, 25vw, 400px); /* Responsive font size */
    font-weight: 900;
    color: rgba(255, 255, 255, 0.6);
    z-index: 1;
    user-select: none;
    line-height: 1;
}

.why-frozen-visual {
    grid-column: 1 / 8;
    grid-row: 1;
    position: relative;
    z-index: 2;
}

.why-frozen-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 25px 50px -12px rgba(26, 44, 78, 0.25);
    transform: rotate(-3deg);
}

.why-frozen-text-content {
    grid-column: 7 / 13;
    grid-row: 1;
    position: relative;
    z-index: 3;
    
    /* Glass Morphism Effect */
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    
    padding: var(--spacing-xl);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-frozen-text-content .section-title {
    margin-bottom: var(--spacing-m);
}

.why-frozen-text-content p {
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: var(--spacing-m);
}

.why-frozen-text-content a {
    margin-top: var(--spacing-m);
}

/* Responsive adjustments for the new section */
@media (max-width: 992px) {
    .why-frozen-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .why-frozen-bg-text {
        font-size: 30vw;
        top: 15%; /* Move it up */
    }

    .why-frozen-visual {
        grid-column: 1 / -1;
        grid-row: 1;
        max-width: 400px;
        margin: 0 auto;
        transform: rotate(0);
    }
    
    .why-frozen-visual img {
        transform: rotate(0);
    }
    
    .why-frozen-text-content {
        grid-column: 1 / -1;
        grid-row: 1; /* Overlap with the image */
        margin-top: 250px; /* Push it down to create the stack */
        width: 90%;
        justify-self: center; /* Center the card horizontally */
    }
}

@media (max-width: 480px) {
    .why-frozen-bg-text {
        font-size: 35vw;
    }
    .why-frozen-text-content {
        padding: var(--spacing-l);
    }
}

/* --- SECTION 4: THE DIFFERENCE --- */
/* --- SECTION 4: THE DIFFERENCE (REDESIGNED) --- */
.difference-section {
    background: linear-gradient(180deg, var(--color-light-lavender) 0%, var(--color-bg) 100%);
}

.difference-component {
    display: grid;
    grid-template-columns: 300px 1fr; /* Asymmetric layout */
    max-width: 900px; /* Compact width */
    margin: var(--spacing-xl) auto 0 auto;
    background: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(216, 225, 255, 0.8);
    min-height: 400px;
    overflow: hidden;
}

.difference-nav {
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--color-light-lavender);
}

.feature-toggle {
    /* Reset button styles */
    background: none;
    border: none;
    font-family: var(--font-primary);
    text-align: left;
    cursor: pointer;
    
    display: flex;
    align-items: center;
    gap: var(--spacing-m);
    padding: var(--spacing-l);
    width: 100%;
    transition: background-color var(--transition-fast);
    position: relative;
}

.feature-toggle:not(.active):hover {
    background-color: rgba(216, 225, 255, 0.3);
}

.feature-toggle.active {
    background-color: var(--color-light-lavender);
}

.feature-toggle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background-color: var(--color-mid-blue);
    transform: scaleY(0);
    transition: transform var(--transition-fast);
}

.feature-toggle.active::before {
    transform: scaleY(1);
}

.feature-toggle .feature-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0; /* Prevents icon from shrinking */
}

.feature-toggle h3 {
    font-size: 1.2rem;
    margin: 0;
    color: var(--color-dark-text);
}

.difference-content {
    padding: var(--spacing-xl);
    display: flex;
    align-items: center;
}

.feature-description {
    display: none; /* Hide all by default */
}

.feature-description.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.feature-description p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #55627a;
}

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

/* Responsive adjustments for the new section */
@media (max-width: 768px) {
    .difference-component {
        grid-template-columns: 1fr; /* Stack on mobile */
    }
    .difference-nav {
        border-right: none;
        border-bottom: 1px solid var(--color-light-lavender);
    }
    .feature-toggle {
        padding: var(--spacing-m);
    }
    .feature-toggle h3 {
        font-size: 1.1rem;
    }
    .difference-content {
        padding: var(--spacing-l);
        min-height: 200px; /* Ensure space for content */
    }
}
/* --- SECTION 5: PROCESS TIMELINE --- */
/* --- SECTION 5: PROCESS (REDESIGNED) --- */
.process-section {
    overflow: visible;
    background-color: var(--color-white);
    padding-bottom: var(--spacing-xxl); /* Add extra padding for scroll room */
}

.process-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    margin-top: var(--spacing-xl);
}

.process-steps-column {
    padding-top: var(--spacing-xxl); /* Offset to align with sticky element */
    padding-bottom: var(--spacing-xxl);
}

.process-step {
    position: relative;
    padding: var(--spacing-l);
    padding-left: var(--spacing-xl);
    min-height: 350px; /* Give each step enough height for scrolling */
}

.step-bg-number {
    position: absolute;
    top: -20px;
    right: 0;
    font-size: 8rem;
    font-weight: 900;
    line-height: 1;
    color: var(--color-light-lavender);
    z-index: 1;
    user-select: none;
}

.process-step h4, .process-step p {
    position: relative;
    z-index: 2;
}

.step-progress {
    position: absolute;
    left: 0;
    top: var(--spacing-l);
    bottom: var(--spacing-l);
    width: 4px;
    background-color: var(--color-mid-blue);
    border-radius: 4px;
    transform-origin: top;
    transform: scaleY(0);
    transition: transform 0.5s ease-in-out;
}

.process-step.active .step-progress {
    transform: scaleY(1);
}

.process-visuals-column {
    min-height: 120vh; /* Needs to be tall to allow for scrolling past the text */
}

.process-visuals-sticky-container {
    position: sticky;
    top: 150px; /* Adjust this value based on your header height */
    width: 100%;
    height: 70vh; /* Fixed height for the visual container */
    max-height: 600px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(26, 44, 78, 0.25);
}

.process-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

.process-image.active {
    opacity: 1;
    transform: scale(1);
}

/* Responsive adjustments for the new section */
@media (max-width: 992px) {
    .process-layout {
        grid-template-columns: 1fr; /* Stack columns */
    }
    
    .process-visuals-column {
        order: -1; /* Move visuals to the top */
        min-height: auto;
    }
    
    .process-visuals-sticky-container {
        position: relative; /* Remove sticky behavior */
        top: auto;
        height: 400px; /* Adjust height for mobile */
        margin-bottom: var(--spacing-xl);
    }
    
    .process-steps-column {
        padding-top: 0;
        padding-bottom: 0;
    }

    .process-step {
        min-height: auto; /* Remove fixed height */
        margin-bottom: var(--spacing-xl);
    }

    /* On mobile, we can't rely on scroll-driven JS, so just show all images statically or hide them */
    .process-image:not(:first-child) {
        display: none;
    }
    .process-image:first-child {
        opacity: 1;
        transform: scale(1);
    }
    /* Hide JS-driven elements that don't make sense on mobile */
    .step-progress {
        display: none;
    }
}

/* --- SECTION 6: TESTIMONIALS --- */
/* --- SECTION 6: TESTIMONIALS (REDESIGNED) --- */
.testimonials-section {
    background: linear-gradient(135deg, var(--color-mid-blue), var(--color-light-blue));
    color: var(--color-dark-text);
}
.testimonials-section .section-title {
    color: var(--color-white);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

/* The new, sophisticated card design */
.testimonial-card {
    /* Soft Radial Gradient Background */
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.1));
    
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: var(--border-radius);
    padding: var(--spacing-xl);
    border: 1px solid rgba(255, 255, 255, 0.3);
    
    position: relative; /* Needed for the decorative quote */
    overflow: hidden; /* Keeps the quote from spilling out */
    
    display: flex;
    flex-direction: column; /* To push the author to the bottom */

    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(26, 44, 78, 0.1);
}

/* Decorative background quotation mark */
.testimonial-card::before {
    content: '“';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 8rem;
    font-weight: 900;
    color: var(--color-white);
    opacity: 0.1;
    line-height: 1;
    z-index: 1;
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: var(--spacing-l);
    position: relative;
    z-index: 2; /* To appear above the decorative quote */
    flex-grow: 1; /* Pushes author block down */
}

/* New author group layout */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-m);
    margin-top: auto; /* Pushes itself to the bottom */
    position: relative;
    z-index: 2;
}

.testimonial-avatar {
    width: 60px; /* Slightly smaller for a more refined look */
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--color-white);
}

.testimonial-card cite {
    font-weight: 700;
    font-style: normal;
}

/* Responsive adjustment to stack the cards on smaller screens */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
/* --- SECTION 7: NEWSLETTER --- */
.newsletter-section {
    background-color: var(--color-light-lavender);
}
.newsletter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-xl);
    background: url('images/news-bg.webp') no-repeat center center/cover;
    padding: var(--spacing-xxl) var(--spacing-xl);
    border-radius: var(--border-radius);
    color: var(--color-white);
    position: relative;
}
.newsletter-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(105, 221, 255, 0.8), rgba(150, 205, 255, 0.8));
    border-radius: var(--border-radius);
}
.newsletter-content, .newsletter-form {
    position: relative;
    z-index: 1;
}
.newsletter-content {
    flex-basis: 50%;
}
.newsletter-form {
    flex-basis: 50%;
}
.newsletter-form form {
    display: flex;
    gap: var(--spacing-s);
}
.newsletter-form input {
    flex-grow: 1;
    padding: var(--spacing-m);
    border-radius: 50px;
    border: 1px solid transparent;
    font-family: var(--font-primary);
    font-size: 1rem;
}
.newsletter-form input:focus {
    outline: 2px solid var(--color-light-blue);
}

/* ---
--- JUICES PAGE STYLES ---
--- */

/* --- SECTION 1: JUICES HERO --- */
.juices-hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    position: relative;
    background: url('images/juices-hero-bg.webp') no-repeat center center/cover;
}

/* --- SECTION 2: CATEGORIES --- */
.category-section {
    background-color: var(--color-bg);
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-l);
    margin-top: var(--spacing-xl);
}
.category-card {
    text-align: center;
    padding: var(--spacing-l);
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
}
.category-card svg {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: var(--spacing-m);
    transition: transform var(--transition-fast);
}
.category-card:hover {
    background: var(--color-white);
    box-shadow: 0 10px 30px rgba(216, 225, 255, 0.7);
    transform: translateY(-5px);
}
.category-card:hover svg {
    transform: scale(1.1) rotate(5deg);
}

/* --- SECTION 3: SPOTLIGHT --- */
.spotlight-section {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-light-lavender) 100%);
}
.spotlight-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--spacing-xxl);
}
.spotlight-image-wrapper {
    position: relative;
}
.spotlight-image-wrapper img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
    border-radius: var(--border-radius);
    filter: drop-shadow(0 25px 25px rgb(0 0 0 / 0.15));
}
.spotlight-tag {
    display: inline-block;
    background-color: var(--color-mid-blue);
    color: var(--color-white);
    padding: var(--spacing-xs) var(--spacing-m);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: var(--spacing-m);
}
.spotlight-details {
    margin-top: var(--spacing-l);
    margin-bottom: var(--spacing-l);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-s);
    border-left: 3px solid var(--color-light-blue);
    padding-left: var(--spacing-m);
}

/* --- SECTION 4: JUICE MENU --- */
/* --- SECTION 4: JUICE MENU (REDESIGNED) --- */
.juice-menu-section {
    background-color: var(--color-light-lavender);
}

.juice-collection-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    min-height: 600px;
}

.juice-menu-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.juice-menu-item {
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    padding: var(--spacing-l) 0;
    border-bottom: 2px solid rgba(150, 205, 255, 0.4);
    display: flex;
    align-items: center;
    gap: var(--spacing-l);
    position: relative;
}

.juice-menu-item:first-child {
    border-top: 2px solid rgba(150, 205, 255, 0.4);
}

.item-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-mid-blue);
    opacity: 0.5;
    transition: opacity var(--transition-fast);
}

.juice-menu-item h3 {
    font-size: 2rem;
    color: var(--color-dark-text);
    margin: 0;
    transition: color var(--transition-fast);
    opacity: 0.5;
}

.juice-menu-item:hover h3,
.juice-menu-item.active h3 {
    color: var(--color-dark-text);
    opacity: 1;
}

.juice-menu-item.active .item-number {
    opacity: 1;
}

.juice-menu-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: var(--color-light-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease-in-out;
}

.juice-menu-item.active::after {
    transform: scaleX(1);
}

.juice-visual-display {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: var(--color-white);
    box-shadow: 0 15px 30px rgba(150, 205, 255, 0.5);
}

.juice-visual-display::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: var(--color-light-lavender);
    opacity: 0.5;
}

.juice-visual-image, .juice-visual-details {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.juice-visual-image.active, .juice-visual-details.active {
    opacity: 1;
}

.juice-visual-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.juice-visual-details {
    display: flex;
    align-items: flex-end;
    padding: var(--spacing-xl);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
}

.juice-visual-details p {
    color: var(--color-white);
    font-size: 1.1rem;
    max-width: 80%;
}

/* Responsive adjustments for the new section */
@media (max-width: 992px) {
    .juice-collection-layout {
        grid-template-columns: 1fr;
    }
    .juice-visual-display {
        height: 500px;
    }
}
@media (max-width: 768px) {
    .juice-menu-item h3 {
        font-size: 1.5rem;
    }
}
/* Reusing the .juice-card style from the homepage for consistency */

/* --- SECTION 5: INGREDIENT SOURCING --- */
/* --- SECTION 5: INGREDIENT SOURCING (REDESIGNED) --- */
.sourcing-section {
    background-color: var(--color-bg);
}

.sourcing-layout {
    display: grid;
    grid-template-columns: 4fr 6fr; /* Asymmetric grid */
    align-items: center;
    gap: var(--spacing-xxl);
}

.sourcing-image-wrapper {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.sourcing-image-wrapper img {
    width: 100%;
    height: 100%;
    max-height: 700px;
    object-fit: cover;
    display: block;
}

.sourcing-kicker {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-mid-blue);
    margin-bottom: var(--spacing-l);
    position: relative;
    padding-left: var(--spacing-xl);
}

/* Decorative accent line */
.sourcing-kicker::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 3px;
    background-color: var(--color-light-blue);
}

.sourcing-text-content .section-title {
    font-size: clamp(2.5rem, 5vw, 4rem); /* Responsive heading size */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-xl);
}

/* Multi-column layout for the body text */
.sourcing-body {
    column-count: 2;
    column-gap: var(--spacing-xl);
}

.sourcing-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #55627a;
    /* Prevent text from breaking inside a paragraph */
    break-inside: avoid;
    margin-bottom: var(--spacing-l); 
}

/* Responsive adjustments for the new section */
@media (max-width: 992px) {
    .sourcing-layout {
        grid-template-columns: 1fr; /* Stack on tablet and mobile */
        gap: var(--spacing-xl);
    }
    .sourcing-image-wrapper {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .sourcing-body {
        column-count: 1; /* Revert to a single column on smaller screens */
    }
    .sourcing-text-content .section-title {
        font-size: 2.5rem;
    }
}
/* --- SECTION 6: BUNDLES & PACKS --- */
.bundles-section {
    background-color: var(--color-bg);
}
.bundles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}
.bundle-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(216, 225, 255, 0.7);
    display: flex;
    flex-direction: column;
}
.bundle-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.bundle-content {
    padding: var(--spacing-l);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.bundle-content h3 {
    margin-bottom: var(--spacing-m);
}
.bundle-content p {
    flex-grow: 1;
}
.bundle-content .btn {
    margin-top: var(--spacing-m);
    align-self: flex-start;
}

/* --- SECTION 7: HOW TO ENJOY --- */
/* --- SECTION 7: HOW TO ENJOY (REDESIGNED - APPROACH 2) --- */
.enjoy-section {
    background: linear-gradient(135deg, var(--color-mid-blue), var(--color-light-blue));
    color: var(--color-dark-text);
}
.enjoy-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.enjoy-section .section-title {
    color: var(--color-white);
}
.enjoy-section .section-intro {
    color: var(--color-light-text);
}

.enjoy-component {
    max-width: 900px;
    margin: var(--spacing-xl) auto 0 auto;
    background: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(26, 44, 78, 0.2);
    overflow: hidden;
}

.enjoy-icon-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: rgba(216, 225, 255, 0.4);
}

.enjoy-icon-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-l);
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

.enjoy-icon-button:hover {
    background-color: rgba(216, 225, 255, 0.6);
}

.enjoy-icon-button.active {
    background-color: var(--color-white);
    border-color: var(--color-light-blue);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-m) auto;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background-color: rgba(150, 205, 255, 0.3);
    color: var(--color-mid-blue);
    transition: all var(--transition-fast);
}
.enjoy-icon-button.active .icon-wrapper {
    background-color: var(--color-mid-blue);
    color: var(--color-white);
    transform: scale(1.1);
}
.icon-wrapper svg {
    width: 32px;
    height: 32px;
}

.enjoy-icon-button h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--color-dark-text);
}

.enjoy-details-content {
    position: relative;
    padding: var(--spacing-xl) var(--spacing-xxl);
    min-height: 200px;
    display: flex;
    align-items: center;
}

.enjoy-detail-item {
    display: none;
}

.enjoy-detail-item.active {
    display: block;
    animation: fadeInDetail 0.5s ease-in-out;
}

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

.detail-step-number {
    position: absolute;
    top: 50%;
    right: var(--spacing-xl);
    transform: translateY(-50%);
    font-size: 8rem;
    font-weight: 900;
    color: var(--color-light-lavender);
    z-index: 1;
    user-select: none;
}

.enjoy-detail-item p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #55627a;
    position: relative;
    z-index: 2;
    max-width: 80%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .enjoy-icon-nav {
        grid-template-columns: 1fr;
    }
    .enjoy-icon-button {
        display: flex;
        align-items: center;
        gap: var(--spacing-l);
        text-align: left;
    }
    .icon-wrapper {
        margin-bottom: 0;
    }
    .enjoy-details-content {
        padding: var(--spacing-xl);
    }
    .enjoy-detail-item p {
        max-width: 100%;
    }
    .detail-step-number {
        display: none; /* Hide decorative number on mobile to save space */
    }
}


/* --- RESPONSIVE ADJUSTMENTS FOR JUICES PAGE --- */

@media (max-width: 992px) {
    .spotlight-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }
    .spotlight-details {
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }
    .bundles-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .juices-hero-section { min-height: 50vh; }
    .enjoy-steps-grid {
        grid-template-columns: 1fr;
    }
    .sourcing-content {
        padding: var(--spacing-l);
    }
}

/* ---
--- VISION PAGE STYLES ---
--- */

/* --- SECTION 1: VISION HERO --- */
/* --- SECTION 1: VISION HERO (REDESIGNED) --- */
.vision-hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-color: var(--color-light-lavender);
    overflow: hidden; /* Crucial for entry animations */
}

.vision-hero-layout {
    display: grid;
    grid-template-columns: 6fr 4fr; /* Asymmetric 60/40 split */
    align-items: center;
    gap: var(--spacing-l);
}

.vision-hero-content {
    position: relative;
    z-index: 2; /* Ensure text is above the image overlap */
    padding-right: 5%; /* Create space for overlap */
}

.vision-hero-deco {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-30%, -50%);
    z-index: -1;
    opacity: 0.1;
    color: var(--color-mid-blue);
}
.vision-hero-deco svg {
    width: 500px;
    height: 500px;
    stroke: currentColor;
    fill: none;
}

.vision-hero-content .hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-dark-text);
    margin-bottom: var(--spacing-l);
}
.vision-hero-content .hero-title span {
    display: block; /* Each span on its own line */
    animation: slideUpFadeIn 0.8s ease-out both;
}
.vision-hero-content .hero-title .line-2 {
    animation-delay: 0.2s; /* Staggered animation */
}

.vision-hero-content .hero-subtitle {
    font-size: 1.15rem;
    max-width: 500px;
    color: #55627a;
    animation: slideUpFadeIn 0.8s ease-out 0.4s both;
}

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

.vision-hero-visual {
    position: relative;
    height: 70vh;
    max-height: 600px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(26, 44, 78, 0.25);
    animation: slideInFromRight 1s ease-out both;
}
.vision-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive adjustments for the new hero section */
@media (max-width: 992px) {
    .vision-hero-section {
        padding-top: var(--spacing-xxl);
        padding-bottom: var(--spacing-xl);
        min-height: auto;
        text-align: center;
    }
    .vision-hero-layout {
        grid-template-columns: 1fr; /* Stack the columns */
        gap: var(--spacing-xl);
    }
    .vision-hero-visual {
        order: -1; /* Move image to the top */
        height: 40vh;
        max-height: 400px;
    }
    .vision-hero-content {
        padding-right: 0;
    }
    .vision-hero-content .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .vision-hero-deco {
        display: none; /* Hide decorative element on mobile for cleaner look */
    }
}

/* --- SECTION 2: REDEFINING FRESHNESS --- */
/* --- SECTION 2: REDEFINING FRESHNESS (REDESIGNED) --- */
.redefining-section {
    background-color: var(--color-bg);
    padding: var(--spacing-xxl) 0;
}

.redefining-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.redefining-layout {
    display: grid;
    /* Create a 3-column grid where the image is the largest part */
    grid-template-columns: 3fr 4fr 3fr; 
    align-items: center;
    gap: var(--spacing-xl);
}

.redefining-text-column {
    padding: var(--spacing-l);
    position: relative;
}

.redefining-text-column p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #55627a;
}

/* Decorative vertical lines framing the image */
.redefining-layout > .redefining-text-column:first-child {
    text-align: right;
    border-right: 1px solid var(--color-light-lavender);
}
.redefining-layout > .redefining-text-column:last-child {
    border-left: 1px solid var(--color-light-lavender);
}

.redefining-visual-column {
    height: 600px;
    border-radius: var(--border-radius);
    overflow: hidden; /* Crucial for the hover effect */
}

.redefining-image-container {
    width: 100%;
    height: 100%;
}
.redefining-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1); /* Smooth, slow transition */
}

.redefining-visual-column:hover .redefining-image-container img {
    transform: scale(1.05);
}

/* Responsive adjustments for the new section */
@media (max-width: 992px) {
    .redefining-layout {
        grid-template-columns: 1fr; /* Stack everything vertically */
        gap: var(--spacing-xl);
    }
    
    .redefining-visual-column {
        order: -1; /* Move image to the top */
        height: 400px;
    }
    
    .redefining-layout > .redefining-text-column:first-child,
    .redefining-layout > .redefining-text-column:last-child {
        text-align: center;
        border: none; /* Remove decorative borders on mobile */
        padding: 0;
    }
}

/* --- SECTION 3: PILLARS --- */
.pillars-section {
    background-color: var(--color-light-lavender);
}
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}
.pillar-card {
    background-color: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px solid transparent;
    transition: all var(--transition-fast);
}
.pillar-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-mid-blue);
    box-shadow: 0 15px 30px rgba(150, 205, 255, 0.4);
}
.pillar-icon {
    width: 80px;
    height: 80px;
    margin-bottom: var(--spacing-m);
    border-radius: 50%;
}

/* --- SECTION 4: SUSTAINABILITY COMMITMENT --- */
/* --- SECTION 4: SUSTAINABILITY COMMITMENT (REDESIGNED) --- */
.commitment-section {
    background-color: var(--color-bg);
    padding: var(--spacing-xxl) 0;
    overflow: hidden; /* For entry animations */
}

.commitment-layout {
    max-width: 900px;
    margin: 0 auto;
}

.commitment-top-block {
    position: relative;
    margin-bottom: var(--spacing-xl);
    min-height: 300px; /* Give space for the visual to sit */
    display: flex;
    align-items: center;
}

.commitment-header {
    width: 100%;
    position: relative;
    z-index: 2; /* To keep text above the image */
}

.commitment-header .section-title {
    color: var(--color-dark-text);
    margin: 0;
}

.commitment-header .section-title span {
    display: block;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
}
.commitment-header .section-title .line-one {
    text-align: left;
    transform: translateX(-100%);
    animation: slideInFromLeft 0.8s 0.2s ease-out forwards;
}
.commitment-header .section-title .line-two {
    text-align: right;
    transform: translateX(100%);
    animation: slideInFromRightText 0.8s 0.2s ease-out forwards;
}

.commitment-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
    opacity: 0;
    animation: scaleUpFadeIn 0.8s 0.5s ease-out forwards;
}
.commitment-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.commitment-body {
    column-count: 2;
    column-gap: var(--spacing-xl);
    opacity: 0;
    animation: fadeInBody 0.8s 0.8s ease-out forwards;
}

.commitment-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #55627a;
    break-inside: avoid;
}

/* Keyframe Animations */
@keyframes slideInFromLeft {
    to { transform: translateX(0); }
}
@keyframes slideInFromRightText {
    to { transform: translateX(0); }
}
@keyframes scaleUpFadeIn {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
@keyframes fadeInBody {
    to { opacity: 1; }
}

/* Responsive adjustments for the new section */
@media (max-width: 768px) {
    .commitment-top-block {
        display: block; /* Stack elements */
        min-height: auto;
        text-align: center;
    }
    .commitment-header .section-title span {
        text-align: center;
        font-size: 15vw;
    }
    .commitment-visual {
        position: relative; /* Make it part of the flow */
        width: 200px;
        height: 200px;
        margin: var(--spacing-l) auto;
        transform: translate(0, 0); /* Reset positioning */
    }
    .commitment-body {
        column-count: 1; /* Single column for readability */
    }
}

/* --- SECTION 5: MEET THE FOUNDERS --- */
.founders-section {
    background-color: var(--color-bg);
}
.founders-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
    gap: var(--spacing-xxl);
}
.founders-image img {
    width: 100%;
    border-radius: 50%;
    border: 10px solid var(--color-white);
    box-shadow: 0 0 40px rgba(216, 225, 255, 0.9);
}

/* --- SECTION 6: THE FUTURE OF WELLNESS --- */
.future-section {
    background-color: var(--color-light-lavender);
}
.future-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: var(--spacing-l);
    margin-top: var(--spacing-xl);
}
.future-item {
    border-radius: var(--border-radius);
    overflow: hidden;
}
.future-item.text-block {
    background-color: var(--color-white);
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.future-item.image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.future-item.image-block:hover img {
    transform: scale(1.05);
}

/* --- SECTION 7: JOIN THE JOURNEY --- */
.journey-section {
    position: relative;
    background: url('images/journey-bg.webp') no-repeat center center/cover;
    text-align: center;
    color: var(--color-white);
}
.journey-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 44, 78, 0.7);
}
.journey-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}
.journey-content h2 {
    font-size: 2.5rem;
}

/* --- RESPONSIVE ADJUSTMENTS FOR VISION PAGE --- */

@media (max-width: 992px) {
    .redefining-container {
        grid-template-columns: 1fr;
    }
    .redefining-image {
        order: -1; /* Puts image on top */
        margin-bottom: var(--spacing-xl);
    }
    .founders-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .founders-image {
        max-width: 300px;
        margin: 0 auto var(--spacing-xl) auto;
    }
}

@media (max-width: 768px) {
    .vision-hero-section { min-height: 50vh; }
}

/* ---
--- PROCESS PAGE STYLES ---
--- */

/* --- GENERAL STEP INDICATOR --- */
.step-indicator {
    display: inline-block;
    background-color: var(--color-light-lavender);
    color: var(--color-mid-blue);
    padding: var(--spacing-s) var(--spacing-l);
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-m);
}
.step-indicator.dark-bg {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-light-blue);
}


/* --- SECTION 1: PROCESS HERO --- */
/* --- SECTION 1: PROCESS HERO (REDESIGNED) --- */
.process-hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: var(--color-white);
}

.process-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.process-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(26, 44, 78, 0.7), rgba(150, 205, 255, 0.6));
}
.process-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s infinite;
}

@keyframes kenBurns {
    0%, 100% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.1) translate(-2%, 2%); }
}

.process-hero-section .container {
    position: relative;
    z-index: 2;
}

.process-hero-content {
    position: relative;
    max-width: 600px;
}

.hero-path-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    overflow: visible; /* Allow stroke to be seen */
    z-index: 3;
}
#hero-path {
    stroke: rgba(255, 255, 255, 0.5);
    stroke-width: 3;
    /* JS will set dasharray and dashoffset */
    animation: drawPath 2s 0.5s ease-out forwards;
}

@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}

.hero-text-wrapper {
    position: relative;
    z-index: 4;
    padding: var(--spacing-xl);
    
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInText 1s 1s ease-out forwards;
}

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

.hero-text-wrapper .hero-title, 
.hero-text-wrapper .hero-subtitle {
    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .process-hero-section {
        text-align: center;
    }
    .process-hero-content {
        margin: 0 auto;
    }
    .hero-path-svg {
        display: none; /* Hide complex SVG on mobile for simplicity */
    }
}

/* --- SECTION 2: SOURCING PHILOSOPHY --- */
.sourcing-philosophy-section {
    background-color: var(--color-bg);
}
.sourcing-philosophy-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: var(--spacing-xxl);
}
.sourcing-philosophy-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

/* --- SECTION 3: HARVESTING --- */
/* --- SECTION 3: HARVESTING (REDESIGNED) --- */
.harvesting-section {
    background-color: var(--color-light-lavender);
    overflow: hidden;
}

.harvesting-layout {
    display: grid;
    grid-template-columns: 5fr 4fr; /* Asymmetric split */
    align-items: center;
    gap: var(--spacing-xl);
}

.harvesting-content {
    position: relative;
    z-index: 2; /* Ensure text is above background text */
}

.harvesting-bg-text {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: clamp(100px, 20vw, 300px);
    font-weight: 900;
    color: var(--color-white);
    opacity: 0.6;
    line-height: 1;
    z-index: -1;
    user-select: none;
}

.harvesting-content .section-title {
    color: var(--color-dark-text);
}

.harvesting-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #55627a;
    max-width: 500px;
}

.harvesting-gallery-wrapper {
    position: relative;
    height: 500px;
}

.gallery-image-item {
    position: absolute;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(26, 44, 78, 0.15);
    transition: all 0.4s ease-in-out;
}

.gallery-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Positioning for the collage */
.gallery-image-item.image-1 {
    width: 60%;
    height: 60%;
    top: 0;
    left: 0;
    z-index: 2;
}
.gallery-image-item.image-2 {
    width: 55%;
    height: 70%;
    top: 20%;
    right: 0;
    z-index: 1;
}
.gallery-image-item.image-3 {
    width: 50%;
    height: 50%;
    bottom: 0;
    left: 25%;
    z-index: 3;
}

/* Interactive hover effect */
.gallery-image-item:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 25px 50px rgba(26, 44, 78, 0.2);
    z-index: 10;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .harvesting-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-xxl);
    }
    .harvesting-content {
        text-align: center;
    }
    .harvesting-bg-text {
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .harvesting-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .harvesting-gallery-wrapper {
        height: 400px;
    }
}
/* --- SECTION 4: COLD-PRESSING --- */
.cold-press-section {
    background-color: var(--color-bg);
}
.cold-press-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl) auto;
}
.cold-press-visuals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}
.visual-item {
    border: 1px solid var(--color-light-lavender);
    border-radius: var(--border-radius);
    padding: var(--spacing-l);
    text-align: center;
}
.visual-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-m);
}

/* --- SECTION 5: FLASH-FREEZING --- */
/* --- SECTION 5: FLASH-FREEZING (REDESIGNED) --- */
.flash-freeze-section {
    background-color: var(--color-dark-text);
    color: var(--color-light-text);
    overflow: hidden; /* Important for containing animations and absolute elements */
}

.flash-freeze-container {
    display: grid;
    grid-template-columns: 5fr 6fr; /* Asymmetric grid */
    align-items: center;
    gap: var(--spacing-xxl);
}

.flash-freeze-content {
    position: relative;
    z-index: 2; /* Ensure text is above any overlap */
}
.flash-freeze-content .section-title {
    color: var(--color-white);
}
.flash-freeze-content p {
    font-size: 1.15rem;
    line-height: 1.8;
}

.flash-freeze-visuals {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.frosted-glass-panel {
    position: absolute;
    width: 80%;
    height: 100%;
    background: rgba(216, 225, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(216, 225, 255, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden; /* Keep mist inside */
}

.image-collage {
    position: relative;
    width: 100%;
    height: 100%;
}

.collage-image {
    position: absolute;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease-out;
}
.collage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.collage-image.image-back {
    width: 280px;
    height: 420px;
    top: 50%;
    left: 0;
    transform: translateY(-60%) rotate(-5deg);
    z-index: 1;
}
.collage-image.image-front {
    width: 300px;
    height: 450px;
    top: 50%;
    left: 40%;
    transform: translateY(-40%) rotate(3deg);
    z-index: 2;
    border: 5px solid rgba(255, 255, 255, 0.1);
}

.image-collage:hover .image-back {
    transform: translateY(-65%) rotate(-7deg) scale(1.03);
}
.image-collage:hover .image-front {
    transform: translateY(-45%) rotate(1deg) scale(1.03);
}

/* Frosty Mist Animation */
.frost-mist {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 60%);
    animation: drift 20s infinite linear alternate;
}
.frost-mist-1 {
    top: -50%;
    left: -50%;
}
.frost-mist-2 {
    bottom: -50%;
    right: -50%;
    animation-direction: alternate-reverse;
    animation-duration: 25s;
}

@keyframes drift {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(20px, 40px) rotate(15deg); }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .flash-freeze-container {
        grid-template-columns: 1fr; /* Stack columns */
        gap: var(--spacing-xl);
        text-align: center;
    }
    .flash-freeze-visuals {
        min-height: 500px;
    }
}
@media (max-width: 480px) {
    .collage-image.image-back {
        width: 200px;
        height: 300px;
    }
    .collage-image.image-front {
        width: 220px;
        height: 330px;
    }
}

/* --- SECTION 6: PACKAGING --- */
/* --- SECTION 6: PACKAGING (REDESIGNED) --- */
.packaging-section {
    background-color: var(--color-light-lavender);
}

.packaging-layout {
    display: grid;
    /* Create 3 columns: image, text, image */
    grid-template-columns: 3fr 4fr 3fr; 
    align-items: center;
    gap: var(--spacing-xl);
}

.packaging-visual {
    height: 550px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(150, 205, 255, 0.5);
    transition: transform 0.4s ease-out, box-shadow 0.4s ease-out;
}
.packaging-visual:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(150, 205, 255, 0.7);
}

.packaging-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.packaging-visual:hover img {
    transform: scale(1.05);
}

.packaging-text-content {
    text-align: center;
    padding: 0 var(--spacing-l);
}

.packaging-text-content .step-indicator {
    background-color: var(--color-white);
}

.packaging-text-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #55627a;
    text-align: left; /* Left-align for readability, despite the block being centered */
}

/* Sophisticated Drop Cap Typography */
.packaging-text-content p::first-letter {
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-mid-blue);
    float: left;
    margin-right: var(--spacing-s);
    line-height: 0.8;
    padding-top: 5px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .packaging-layout {
        grid-template-columns: 1fr; /* Stack on mobile */
        gap: var(--spacing-xl);
    }
    .packaging-text-content {
        order: -1; /* Move text above the images */
        margin-bottom: var(--spacing-xl);
    }
    /* Create a two-column grid for the images below the text */
    .packaging-visual {
       grid-column: span 1; /* Reset grid spanning if any */
       height: 400px; 
    }
    .packaging-container {
        /* This is a trick to put the images into a 2-column grid on mobile */
        display: grid;
        grid-template-columns: 1fr;
    }
    .packaging-layout {
        display: grid; /* Overriding container display */
        grid-template-columns: 1fr 1fr; /* Two columns for visuals */
    }
    .packaging-text-content {
        grid-column: 1 / -1; /* Make text span both columns */
    }
}

@media (max-width: 600px) {
    /* Stack images on very small screens */
    .packaging-layout {
        grid-template-columns: 1fr;
    }
}


/* --- SECTION 7: FINAL RESULT CTA --- */
.result-section {
    background-color: var(--color-bg);
}
.result-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: var(--spacing-xxl);
}
.result-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: -15px 15px 0px var(--color-mid-blue);
}


/* --- RESPONSIVE ADJUSTMENTS FOR PROCESS PAGE --- */

@media (max-width: 992px) {
    .sourcing-philosophy-container {
        grid-template-columns: 1fr;
    }
    .sourcing-philosophy-image { order: -1; margin-bottom: var(--spacing-xl); }
    .harvest-gallery { grid-template-columns: 1fr; }
    .harvest-gallery img { height: 300px; }
    .packaging-container { grid-template-columns: 1fr; }
    .result-container { grid-template-columns: 1fr; }
    .result-image { order: -1; margin-bottom: var(--spacing-xl); }
}

@media (max-width: 768px) {
    .cold-press-visuals { grid-template-columns: 1fr; }
    .freeze-images { flex-direction: column; align-items: center; }
    .freeze-images img { width: 100%; max-width: 300px; height: auto; }
    .packaging-images { grid-template-columns: 1fr; }
    .packaging-images img { margin-top: 0 !important; }
}

/* ---
--- WHOLESALE PAGE STYLES ---
--- */

/* --- SECTION 1: WHOLESALE HERO --- */
/* --- SECTION 1: WHOLESALE HERO (REDESIGNED) --- */
.wholesale-hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-color: var(--color-bg); /* Use a solid background color */
    overflow: hidden; /* Crucial for entry animations */
}

.wholesale-hero-container {
    max-width: 1400px; /* Allow a slightly wider container for this design */
}

.wholesale-hero-layout {
    display: grid;
    grid-template-columns: 6fr 5fr;
    align-items: center;
    position: relative;
}

.wholesale-hero-content {
    background-color: var(--color-light-lavender);
    padding: var(--spacing-xxl) var(--spacing-xl);
    padding-left: calc((100vw - 1200px) / 2); /* Aligns with the global container start */
    position: relative;
    z-index: 2;
}

.wholesale-hero-content .hero-title {
    font-size: clamp(2rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-dark-text);
    margin-bottom: var(--spacing-l);
}
.wholesale-hero-content .hero-title span {
    display: block;
    animation: slideUpFadeIn 0.8s ease-out both;
}
.wholesale-hero-content .hero-title .line-2 {
    animation-delay: 0.2s; /* Staggered animation */
}

.wholesale-hero-content .hero-subtitle {
    font-size: 1.15rem;
    max-width: 500px;
    color: #55627a;
    margin-bottom: var(--spacing-xl);
    animation: slideUpFadeIn 0.8s ease-out 0.4s both;
}
.wholesale-hero-content .btn {
    animation: slideUpFadeIn 0.8s ease-out 0.6s both;
}

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

.wholesale-hero-visual {
    height: 75vh;
    max-height: 700px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(26, 44, 78, 0.25);
    transform: translateX(-15%); /* Create the overlap */
    z-index: 1;
    animation: scaleInVisual 1.2s cubic-bezier(0.25, 1, 0.5, 1) both;
}
.wholesale-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.wholesale-hero-visual:hover img {
    transform: scale(1.05);
}

@keyframes scaleInVisual {
    from {
        opacity: 0;
        transform: translateX(-15%) scale(0.9);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateX(-15%) scale(1);
        filter: blur(0px);
    }
}

.hero-deco-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 3px;
    background-color: var(--color-mid-blue);
    z-index: 3;
    transform: scaleY(0);
    transform-origin: top;
    animation: growLine 1s 0.8s ease-out forwards;
}

@keyframes growLine {
    to {
        transform: scaleY(1);
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .wholesale-hero-section {
        padding-top: var(--spacing-xxl);
        min-height: auto;
    }
    .wholesale-hero-layout {
        grid-template-columns: 1fr; /* Stack on mobile */
        display: block;
    }
    .wholesale-hero-visual {
        order: -1;
        height: 400px;
        transform: translateX(0); /* Remove overlap */
        margin-bottom: var(--spacing-xl);
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    .wholesale-hero-content {
        padding: var(--spacing-xl);
        text-align: center;
    }
    .wholesale-hero-content .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-deco-line {
        display: none;
    }
}

/* --- SECTION 2: PARTNER BENEFITS --- */
/* --- MODERN TABS COMPONENT STYLING --- */
.benefits-tabs-component {
    max-width: 900px;
    margin: var(--spacing-xl) auto 0 auto;
    background: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: 0 20px 50px rgba(216, 225, 255, 0.8);
}

.benefits-nav {
    display: flex;
    position: relative;
    border-bottom: 1px solid var(--color-light-lavender);
}

.benefit-nav-item {
    /* Reset button styles */
    background: none;
    border: none;
    font-family: var(--font-primary);
    cursor: pointer;
    
    flex: 1; /* Distribute space evenly */
    padding: var(--spacing-l);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-m);
    transition: background-color var(--transition-fast);
}

.benefit-nav-item:hover {
    background-color: rgba(216, 225, 255, 0.3);
}

.benefit-nav-item .benefit-icon {
    width: 60px;
    height: 60px;
    transition: transform var(--transition-fast);
}

.benefit-nav-item h3 {
    margin: 0;
    font-size: 1rem;
    color: var(--color-dark-text);
    opacity: 0.6;
    transition: opacity var(--transition-fast);
}

.benefit-nav-item.active h3 {
    opacity: 1;
}
.benefit-nav-item.active .benefit-icon {
    transform: scale(1.1);
}

.active-tab-indicator {
    position: absolute;
    bottom: -1px; /* To overlap the border */
    left: 0;
    height: 3px;
    background-color: var(--color-light-blue);
    border-radius: 3px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.benefits-content {
    padding: var(--spacing-xl);
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.benefit-content-panel {
    display: none;
}

.benefit-content-panel.active {
    display: block;
    animation: fadeInContent 0.5s ease-in-out;
}
.benefit-content-panel p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #55627a;
    max-width: 600px;
    margin: 0 auto;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .benefits-nav {
        flex-wrap: wrap; /* Allow tabs to wrap on small screens */
    }
    .benefit-nav-item {
        flex-basis: 50%; /* Two tabs per row */
    }
    .benefits-content {
        padding: var(--spacing-l);
        min-height: 180px;
    }
}

/* --- SECTION 3: IDEAL PARTNERS --- */
.ideal-partners-section {
    background-color: var(--color-bg);
}
.ideal-partners-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: var(--spacing-xxl);
}
.ideal-partners-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: 15px 15px 0px var(--color-light-lavender);
}
.partner-list {
    list-style-type: none;
    padding-left: 0;
}
.partner-list li {
    padding: var(--spacing-m) 0;
    border-bottom: 1px solid var(--color-light-lavender);
}
.partner-list li:first-child {
    padding-top: 0;
}
.partner-list li:last-child {
    border-bottom: none;
}

/* --- SECTION 4: WHOLESALE OFFERINGS --- */
/* --- MODERN SLIDER COMPONENT STYLES --- */
.wholesale-offerings-section {
    background-color: var(--color-light-lavender);
}

.slider-container {
    position: relative;
    max-width: 900px;
    margin: var(--spacing-xl) auto 0 auto;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 50px rgba(150, 205, 255, 0.7);
}

.slider-track {
    display: flex;
    /* JS will set the width based on the number of slides */
    transition: transform 0.6s cubic-bezier(0.86, 0, 0.07, 1);
}

.slide {
    flex: 1 0 100%; /* Each slide takes up 100% of the container width */
    position: relative;
    height: 500px;
    color: var(--color-white);
}

.slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    transform: scale(1.15); /* Start slightly zoomed in */
}

.slide.active .slide-bg {
    transform: scale(1); /* Zoom out to normal scale when active */
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-xl);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 80%);
}

.slide-title, .slide-description {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}
.slide.active .slide-description {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: white;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
}
.slider-button:hover {
    background-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.05);
}
.slider-button.prev { left: var(--spacing-l); }
.slider-button.next { right: var(--spacing-l); }
.slider-button svg { width: 24px; height: 24px; }

.slider-dots {
    position: absolute;
    bottom: var(--spacing-l);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: var(--spacing-s);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid transparent;
    cursor: pointer;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
}
.dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
}
.dot.active {
    background-color: var(--color-white);
    transform: scale(1.1);
}
/* Re-using .juice-card styling */

/* --- SECTION 5: HOW IT WORKS --- */
.how-it-works-section {
    background-color: var(--color-bg);
}
.process-steps {
    position: relative;
    margin-top: var(--spacing-xl);
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    bottom: 20px;
    width: 4px;
    background-color: var(--color-light-lavender);
}
.step {
    display: flex;
    align-items: flex-start;
    position: relative;
    margin-bottom: var(--spacing-xl);
}
.step-number {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-mid-blue);
    color: var(--color-white);
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: var(--spacing-l);
    z-index: 1;
}
.step-content p {
    margin-bottom: 0;
}

/* --- SECTION 6: PARTNER TESTIMONIALS --- */
.partner-testimonials-section {
    background: linear-gradient(135deg, var(--color-mid-blue), var(--color-light-blue));
}
/* Re-using .testimonials-section styles */

/* --- SECTION 7: CONTACT FORM --- */
.wholesale-contact-section {
    background-color: var(--color-bg);
}
.wholesale-contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius);
    box-shadow: 0 20px 50px rgba(216, 225, 255, 0.8);
}
.contact-form-content img {
    width: 100%;
    border-radius: var(--border-radius);
    margin-top: var(--spacing-l);
}
.form-group {
    margin-bottom: var(--spacing-l);
}
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--spacing-s);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-m);
    border: 1px solid var(--color-light-lavender);
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-mid-blue);
    box-shadow: 0 0 0 3px rgba(150, 205, 255, 0.5);
}
.contact-form-wrapper button {
    width: 100%;
}
.stat-number {
    /* Ensures numbers don't shift the layout as they change width */
    font-variant-numeric: tabular-nums;
}

/* --- RESPONSIVE ADJUSTMENTS FOR WHOLESALE PAGE --- */

@media (max-width: 992px) {
    .ideal-partners-container {
        grid-template-columns: 1fr;
    }
    .ideal-partners-image { order: -1; margin-bottom: var(--spacing-xl); }
    .wholesale-juice-grid { grid-template-columns: 1fr 1fr; }
    .wholesale-contact-container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .wholesale-juice-grid { grid-template-columns: 1fr; }
    .process-steps::before { left: 22px; }
    .wholesale-hero-content
    {margin-bottom: 20px}
    .wholesale-hero-visual
    {
        transform: translateX(0);
        animation: none;
    }
}

/* ---
--- REVIEWS PAGE STYLES ---
--- */

/* --- SECTION 1: REVIEWS HERO --- */
.reviews-hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    position: relative;
    background: url('images/reviews-bg.webp') no-repeat center center/cover;
}

/* --- SECTION 2: STATS HIGHLIGHT --- */
.stats-section {
    background-color: var(--color-light-lavender);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    text-align: center;
}
.stat-item .stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--color-mid-blue);
    display: block;
    line-height: 1;
}
.stat-item p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

/* --- SECTION 3: STORY REVIEWS --- */
.story-review-section {
    background-color: var(--color-bg);
}
.story-review-item {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-xxl);
    align-items: center;
    margin-bottom: var(--spacing-xxl);
}
.story-review-item:last-child {
    margin-bottom: 0;
}
.story-review-item:nth-child(even) {
    grid-template-columns: 1.2fr 1fr;
}
.story-review-item:nth-child(even) .story-review-image {
    order: 2;
}
.story-review-image img {
    width: 100%;
    border-radius: var(--border-radius);
}
.story-review-content blockquote {
    font-size: 1.1rem;
    font-style: italic;
    border-left: 4px solid var(--color-light-blue);
    padding-left: var(--spacing-l);
    margin: var(--spacing-l) 0;
}
.story-review-content cite {
    font-weight: 700;
    font-style: normal;
}

/* --- SECTION 4: FILTERABLE REVIEW GRID --- */
.review-grid-section {
    background-color: var(--color-light-lavender);
}
.review-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-m);
    margin-bottom: var(--spacing-xl);
}
.filter-btn {
    background: var(--color-white);
    border: 2px solid var(--color-mid-blue);
    color: var(--color-mid-blue);
    padding: var(--spacing-s) var(--spacing-l);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all var(--transition-fast);
}
.filter-btn:hover, .filter-btn.active {
    background: var(--color-mid-blue);
    color: var(--color-white);
}
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: var(--spacing-l);
}
.review-card {
    background: var(--color-white);
    padding: var(--spacing-l);
    border-radius: var(--border-radius);
}
.review-card cite {
    font-weight: 700;
    display: block;
    margin-top: var(--spacing-m);
    text-align: right;
}

/* --- SECTION 5: SOCIAL PROOF --- */
/* --- SECTION 5: SOCIAL PROOF / UGC (REDESIGNED) --- */
.social-proof-section {
    background-color: var(--color-bg);
}

.social-proof-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.social-proof-content .section-title {
    text-align: left;
}
.social-proof-content p {
    font-size: 1.1rem;
    color: #55627a;
    max-width: 400px;
}

.mosaic-grid {
    display: grid;
    /* A flexible grid with 4 columns and adaptive row heights */
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 140px;
    gap: var(--spacing-m);
}

.social-post {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(216, 225, 255, 0.7);
}

/* Defining the mosaic layout using grid spans */
.post-1 { grid-column: 1 / 3; grid-row: 1 / 3; } /* Large square */
.post-2 { grid-column: 3 / 4; grid-row: 1 / 4; } /* Tall rectangle */
.post-3 { grid-column: 4 / 5; grid-row: 1 / 2; } /* Small square */
.post-4 { grid-column: 4 / 5; grid-row: 2 / 3; } /* Small square */
.post-5 { grid-column: 1 / 2; grid-row: 3 / 4; } /* Landscape rectangle */
.post-6 { grid-column: 2 / 3; grid-row: 3 / 4; } /* Landscape rectangle */

.social-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

/* Interactive Overlay */
.post-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 44, 78, 0.7), transparent);
    opacity: 0;
    transition: opacity var(--transition-fast);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: var(--spacing-m);
    color: var(--color-white);
}

.social-post:hover .post-overlay {
    opacity: 1;
}
.social-post:hover img {
    transform: scale(1.05);
}

.overlay-icon, .overlay-handle {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
.overlay-icon { width: 24px; height: 24px; transition-delay: 0.1s; }
.overlay-handle { font-weight: 600; font-size: 0.9rem; transition-delay: 0.2s; }

.social-post:hover .overlay-icon,
.social-post:hover .overlay-handle {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .social-proof-layout {
        grid-template-columns: 1fr; /* Stack on tablet */
        gap: var(--spacing-xl);
    }
    .social-proof-content {
        text-align: center;
    }
    .social-proof-content .section-title {
        text-align: center;
    }
    .social-proof-content p {
        margin: 0 auto;
    }
}
@media (max-width: 480px) {
    /* Simplify to a 2-column grid on small mobile */
    .mosaic-grid {
        display: block;
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px;
    }
    .social-post
    {
        margin-bottom: 20px;
    }
    .post-1 { grid-column: 1 / 2; grid-row: 1 / 2; }
    .post-2 { grid-column: 2 / 3; grid-row: 1 / 3; }
    .post-3 { grid-column: 1 / 2; grid-row: 2 / 3; }
    .post-4 { display: none; } /* Hide some for simplicity */
    .post-5 { grid-column: 1 / 3; grid-row: 3 / 4; }
    .post-6 { display: none; }
}
/* --- SECTION 6: VIDEO TESTIMONIALS --- */
.video-testimonials-section {
    background: linear-gradient(180deg, var(--color-light-lavender) 0%, var(--color-bg) 100%);
}
.video-grid {
    margin-top: var(--spacing-xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}
.video-card {
    position: relative;
    cursor: pointer;
}
.video-thumbnail {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    display: block;
}
.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 2rem;
    color: var(--color-mid-blue);
    transition: all var(--transition-fast);
}
.video-card:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--color-white);
}
.video-card h4 {
    margin-top: var(--spacing-m);
}
.video-card p {
    margin-bottom: 0;
}

/* --- SECTION 7: LEAVE REVIEW CTA --- */
.leave-review-section {
    background: linear-gradient(135deg, var(--color-mid-blue), var(--color-light-blue));
    color: var(--color-white);
}
.leave-review-container {
    text-align: center;
    max-width: 700px;
}
.leave-review-section .btn-primary {
    background-color: var(--color-white);
    color: var(--color-dark-text);
}
.leave-review-section .btn-primary:hover {
    box-shadow: 0 10px 20px rgba(26, 44, 78, 0.2);
}


/* --- RESPONSIVE ADJUSTMENTS FOR REVIEWS PAGE --- */
@media (max-width: 992px) {
    .stats-grid { grid-template-columns: 1fr; }
    .stat-item { margin-bottom: var(--spacing-xl); }
    .stat-item:last-child { margin-bottom: 0; }
    .story-review-item, .story-review-item:nth-child(even) { grid-template-columns: 1fr; }
    .story-review-item:nth-child(even) .story-review-image { order: -1; } /* Always put image first on mobile */
    .story-review-image { margin-bottom: var(--spacing-l); }
    .story-review-image img { width: 100%; height: 400px; object-fit: cover; }
    .social-grid { grid-template-columns: 1fr 1fr; }
    .video-grid { grid-template-columns: 1fr; }
}

/* ---
--- SHIPPING PAGE STYLES ---
--- */

/* --- SECTION 1: SHIPPING HERO --- */
/* --- SECTION 1: SHIPPING HERO (REDESIGNED) --- */
.shipping-hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-light-lavender) 100%);
    overflow: hidden;
}

.shipping-hero-layout {
    display: grid;
    grid-template-columns: 6fr 4fr;
    align-items: center;
    gap: var(--spacing-l);
    position: relative; /* For positioning the line */
}

.shipping-hero-content {
    position: relative;
    z-index: 2;
}
.shipping-hero-content .hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-dark-text);
    margin: 0 0 var(--spacing-l) 0;
}
.shipping-hero-content .hero-title span {
    display: block;
    animation: slideUpFadeIn 0.8s 0.2s ease-out both;
}
.shipping-hero-content .hero-title .line-2 {
    animation-delay: 0.4s;
    font-weight: 700;
    color: var(--color-mid-blue);
}
.shipping-hero-content .hero-subtitle {
    font-size: 1.15rem;
    max-width: 450px;
    color: #55627a;
    animation: slideUpFadeIn 0.8s 0.6s ease-out both;
}

.shipping-hero-visual {
    height: 70vh;
    max-height: 600px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(150, 205, 255, 0.5);
    z-index: 1;
    animation: slideInFromRightWithRotate 1s 0.5s cubic-bezier(0.25, 1, 0.5, 1) both;
}
.shipping-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.shipping-hero-visual:hover img {
    transform: scale(1.05);
}

.hero-path-line {
    position: absolute;
    bottom: 30%;
    left: 0;
    width: 0; /* Animated with keyframes */
    height: 3px;
    background-color: var(--color-light-blue);
    z-index: 3;
    animation: drawLine 1s 1s ease-out forwards;
}

/* Keyframe Animations */
@keyframes slideUpFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInFromRightWithRotate {
    from { opacity: 0; transform: translateX(50%) rotate(10deg); }
    to { opacity: 1; transform: translateX(0) rotate(0deg); }
}
@keyframes drawLine {
    to { width: 60%; } /* Animates to 60% of the parent width */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .shipping-hero-section {
        padding-top: var(--spacing-xxl);
        min-height: auto;
        text-align: center;
    }
    .shipping-hero-layout {
        display: block;
        grid-template-columns: 1fr; /* Stack layout */
        gap: var(--spacing-xl);
    }
    .shipping-hero-visual {
        order: -1; /* Image on top */
        height: 400px;
    }
    .shipping-hero-content .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-path-line {
        display: none; /* Hide the line on mobile for a cleaner look */
    }
}

/* --- SECTION 2: COLD-CHAIN PROMISE --- */
.cold-chain-section {
    background-color: var(--color-light-lavender);
}
.cold-chain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}
.cold-chain-step {
    text-align: center;
    padding: var(--spacing-l);
}
.cold-chain-step img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: var(--spacing-m);
}

/* --- SECTION 3: RATES & ZONES --- */
/* --- SECTION 3: SHIPPING RATES & ZONES (REDESIGNED) --- */
.rates-section {
    position: relative;
    background-color: var(--color-bg);
    overflow: hidden; /* To contain the background shapes */
    padding: var(--spacing-xxl) 0;
}

/* Abstract background shapes */
.rates-section::before, .rates-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    filter: blur(100px);
}
.rates-section::before {
    width: 400px;
    height: 400px;
    background: var(--color-light-blue);
    opacity: 0.5;
    top: 10%;
    left: -100px;
}
.rates-section::after {
    width: 500px;
    height: 500px;
    background: var(--color-light-lavender);
    opacity: 0.6;
    bottom: 5%;
    right: -150px;
}

.rates-container {
    position: relative;
    z-index: 1;
}

.rates-layout {
    display: grid;
    grid-template-columns: 4fr 5fr;
    align-items: center;
    gap: var(--spacing-xxl);
}

.rates-headline-column .section-title {
    color: var(--color-dark-text);
    margin: 0;
}
.rates-headline-column .section-title span {
    display: block;
    font-size: clamp(2.5rem, 10vw, 7rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
}
.rates-headline-column .section-title .line-2 {
    color: var(--color-mid-blue);
}

.rates-info-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-l);
}

/* Glass Card Styling */
.rates-card, .shipping-note-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: var(--spacing-l);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.rate-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-m);
    padding: var(--spacing-m) 0;
}
.rate-item:not(:last-child) {
    border-bottom: 1px solid rgba(150, 205, 255, 0.4);
}

.rate-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background-color: var(--color-light-lavender);
    border-radius: 50%;
    color: var(--color-mid-blue);
}
.rate-icon svg { width: 24px; height: 24px; }

.rate-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark-text);
}
.rate-details p {
    margin: 0;
    color: #55627a;
}

.shipping-note-card {
    background: rgba(216, 225, 255, 0.5); /* Slightly different tint for variety */
}
.shipping-note-card p {
    margin: 0;
    color: #55627a;
    font-size: 0.95rem;
}

.rates-map-visual {
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-top: var(--spacing-m);
}
.rates-map-visual img {
    width: 100%;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .rates-layout {
        display: block;
        grid-template-columns: 1fr; /* Stack the columns */
    }
    .rates-headline-column {
        text-align: center;
        margin-bottom: var(--spacing-xl);
    }
    .rates-map-visual img
    {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }
}
/* --- SECTION 4: SHIPPING STEPS --- */
.shipping-steps-section {
    background-color: var(--color-bg);
}
.shipping-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-l);
    margin-top: var(--spacing-xl);
}
.timeline-step {
    text-align: center;
}
.timeline-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-m);
}
.timeline-content h4 {
    color: var(--color-mid-blue);
}

/* --- SECTION 5: PACKAGING & UNBOXING --- */
.unboxing-section {
    background-color: var(--color-light-lavender);
}
.unboxing-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}
.unboxing-gallery {
    display: grid;
    gap: var(--spacing-l);
}
.unboxing-gallery img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
}
.safety-warning {
    background-color: var(--color-white);
    border-left: 5px solid #ff6961; /* A soft red for warning */
    padding: var(--spacing-l);
    margin: var(--spacing-l) 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}
.safety-warning h4 {
    margin-bottom: var(--spacing-s);
}

/* --- SECTION 6: FAQ --- */
.shipping-faq-section {
    background-color: var(--color-bg);
}
.faq-accordion {
    max-width: 800px;
    margin: var(--spacing-xl) auto 0 auto;
}
.faq-item {
    background-color: var(--color-white);
    border: 1px solid var(--color-light-lavender);
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-m);
}
.faq-item summary {
    font-size: 1.2rem;
    font-weight: 600;
    padding: var(--spacing-l);
    cursor: pointer;
    list-style: none; /* Remove default marker */
    position: relative;
}
.faq-item summary::-webkit-details-marker {
    display: none; /* For Chrome/Safari */
}
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: var(--spacing-l);
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--color-mid-blue);
    transition: transform var(--transition-fast);
}
.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}
.faq-item p {
    padding: 0 var(--spacing-l) var(--spacing-l) var(--spacing-l);
    margin: 0;
    border-top: 1px solid var(--color-light-lavender);
}

/* --- SECTION 7: CUSTOMER SUPPORT CTA --- */
.shipping-support-section {
    background-color: var(--color-light-lavender);
}
.shipping-support-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--spacing-xl);
}
.shipping-support-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
}


/* --- RESPONSIVE ADJUSTMENTS FOR SHIPPING PAGE --- */
@media (max-width: 992px) {
    .rates-container { grid-template-columns: 1fr; }
    .rates-image { order: -1; margin-bottom: var(--spacing-xl); }
    .unboxing-container { grid-template-columns: 1fr; }
    .shipping-support-container { grid-template-columns: 1fr; text-align: center; }
    .shipping-support-image { order: -1; margin-bottom: var(--spacing-xl); }
}

/* --- FOOTER --- */
.site-footer-main {
    background-color: var(--color-dark-text);
    color: var(--color-light-text);
    padding: var(--spacing-xl) 0 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
}
.footer-grid h4 {
    margin-bottom: var(--spacing-m);
    color: var(--color-light-blue);
}
.footer-links ul li {
    margin-bottom: var(--spacing-s);
}
.footer-links a {
    color: var(--color-light-lavender);
}
.footer-links a:hover {
    color: var(--color-white);
    padding-left: var(--spacing-s);
}
.footer-social a {
    display: inline-block;
    margin-right: var(--spacing-m);
    font-weight: bold;
    color: var(--color-light-lavender);
}
.footer-bottom {
    border-top: 1px solid rgba(216, 225, 255, 0.2);
    padding: var(--spacing-l) 0;
    text-align: center;
    font-size: 0.9rem;
}


/* --- ANIMATIONS --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* --- RESPONSIVE DESIGN --- */

/* Tablets */
@media (max-width: 992px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 1.7rem; }
    section { padding: var(--spacing-xl) 0; }
    .bestsellers-grid { grid-template-columns: 1fr 1fr; }
    .why-frozen-container { grid-template-columns: 1fr; gap: var(--spacing-xl); }
    .why-frozen-image { text-align: center; }
    .why-frozen-image img { max-width: 500px; }
    .timeline::after { left: 30px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
    .timeline-item:nth-child(even) { left: 0%; }
    .timeline-item::after { left: 18px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .newsletter-container { flex-direction: column; text-align: center; }
}


/* Mobile */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        background: rgba(26, 44, 78, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }
    
    .nav-links.nav-open {
        transform: translateX(0);
    }
    
    .nav-toggle { display: block; }
    
    .nav-open .hamburger { background: transparent; }
    .nav-open .hamburger::before { top: 0; transform: rotate(45deg); }
    .nav-open .hamburger::after { top: 0; transform: rotate(-45deg); }

    .bestsellers-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .newsletter-form form { flex-direction: column; }
    .footer-grid { text-align: center; }
    .footer-social { margin-top: var(--spacing-l); }
}

@media (max-width: 480px) {
    h1 { font-size: 1.9rem; }
    .hero-subtitle { font-size: 1.1rem; }
}

/* ---
--- LEGAL PAGES STYLES (Privacy Policy, Terms, etc.) ---
--- */

/* --- SECTION 1: LEGAL HERO --- */
.legal-hero {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-light-lavender) 100%);
    padding: 8rem 0;
    text-align: center;
}

.legal-page-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem); /* Responsive font size */
    font-weight: 800;
    color: var(--color-dark-text);
    margin-bottom: var(--spacing-s);
}

.legal-page-subtitle {
    font-size: 1.2rem;
    color: #55627a; /* A softer secondary text color */
    max-width: 600px;
    margin: 0 auto;
}

/* --- SECTION 2: LEGAL CONTENT --- */
.legal-content {
    background-color: var(--color-bg);
    padding: var(--spacing-xxl) 0;
}

.legal-content-container {
    max-width: 800px; /* Optimal width for readability */
    margin: 0 auto;
}

.last-updated {
    font-size: 0.9rem;
    font-style: italic;
    color: #778899; /* A light, subtle color for meta text */
    margin-bottom: var(--spacing-xl);
    border-bottom: 1px solid var(--color-light-lavender);
    padding-bottom: var(--spacing-l);
}

.legal-content article {
    margin-bottom: var(--spacing-xl);
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-dark-text);
    margin-bottom: var(--spacing-m);
    padding-bottom: var(--spacing-s);
    border-bottom: 2px solid var(--color-light-lavender);
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #55627a;
    margin-bottom: var(--spacing-m);
}

.legal-content ul {
    list-style-type: disc;
    padding-left: var(--spacing-l); /* Indent list items */
    margin-bottom: var(--spacing-m);
}

.legal-content ul li {
    margin-bottom: var(--spacing-s);
    line-height: 1.8;
    color: #55627a;
}

.legal-content strong {
    color: var(--color-dark-text);
    font-weight: 600;
}

/* Responsive adjustments for legal pages */
@media (max-width: 768px) {
    .legal-hero {
        padding-top: var(--spacing-xl);
    }
    .legal-content {
        padding: var(--spacing-xl) 0;
    }
}

/* ---
--- UTILITY PAGES STYLES (Thank You, 404, etc.) ---
--- */

.utility-page-body {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-light-lavender) 100%);
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: var(--spacing-l);
    font-family: var(--font-primary);
}

.thank-you-main {
    width: 100%;
}

.thank-you-box {
    max-width: 550px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: var(--border-radius);
    padding: var(--spacing-xl) var(--spacing-l);
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(150, 205, 255, 0.5);
    /* Entry animation */
    opacity: 0;
    transform: scale(0.95);
    animation: popIn 0.5s 0.2s ease-out forwards;
}

@keyframes popIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.thank-you-box h1 {
    color: var(--color-dark-text);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-m);
}

.thank-you-box p {
    color: #55627a;
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
}

.thank-you-box .btn {
    width: auto; /* Or 100% if you prefer */
}


/* --- Animated Checkmark --- */
.checkmark-container {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-l) auto;
}

.checkmark-svg {
    width: 100%;
    height: 100%;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 3;
    stroke-miterlimit: 10;
    stroke: var(--color-mid-blue);
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) 0.5s forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-width: 4;
    stroke: var(--color-light-blue);
    animation: stroke 0.4s cubic-bezier(0.65, 0, 0.45, 1) 1s forwards;
}

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