/* Global Styles */
:root {
    --primary-color: #00BFFF;    /* Bright cyan blue */
    --secondary-color: #f5ee31;  /* Vibrant yellow - UPDATED */
    --dark-blue: #006fb8;        /* Darker blue */
    --light-blue: #02b8e4;       /* Lighter cyan blue */
    --white: #FFFFFF;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* ADDED to prevent horizontal overflow */
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    background-color: var(--light-blue); /* Default background */
    width: 100%; /* ADDED to constrain body width */
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

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

ul {
    list-style: none;
}

h1, h2 {
    line-height: 1.2;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem; /* Adjusted padding */
    background-color: transparent;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

.logo h1 {
    display: none; /* Hide the text version */
}

.logo .peace-icon {
    font-size: 1.8rem; /* Adjusted size */
    margin-right: 0.5rem;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 1rem; /* Increased gap */
}

nav ul li {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: url('img/DOSMUCHOS-HERO.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Align overlay to bottom */
    padding-bottom: 3rem; /* Space for overlay */
    overflow: hidden;
}

/* Removed floating can styles */

/* Hero Overlay Element */
.hero-overlay-element {
    position: relative; /* Changed from absolute */
    max-width: 250px; /* Constrain width */
    width: 80%;
    z-index: 10;
}

.hero-overlay-element img {
    display: block;
    width: 100%;
    height: auto;
}

/* Product Intro Section */
.product-intro {
    display: flex;
    position: relative;
    background-color: var(--dark-blue);
}

.intro-text {
    flex: 1 1 40%; /* Use flex-basis */
    padding: 5rem 4rem; /* Increased padding */
    display: flex;
    align-items: center;
    background-color: var(--dark-blue);
}

.intro-text h2 {
    font-size: 2.2rem; /* Slightly larger */
    line-height: 1.4;
    font-weight: 900;
    text-transform: uppercase;
}

.intro-image {
    flex: 1 1 60%; /* Use flex-basis */
    background: url('img/dosmuchos-newbanner.jpg') no-repeat center center/cover;
    min-height: 65vh; /* Slightly taller */
}

/* Adios MF Overlay - 30% Smaller */
.adios-overlay {
    position: absolute;
    bottom: -150px; /* Adjusted position for smaller overlay */
    right: 0;
    width: 65%; 
    max-width: 1015px; /* 30% smaller than 1450px */
    z-index: 50;
    pointer-events: none;
}

.adios-overlay img {
    width: 100%;
    height: auto;
    transform: rotate(-4deg);
    filter: drop-shadow(5px 7px 7px rgba(0,0,0,0.4)); 
}

/* Featured Product Section - Adjust padding for smaller overlay */
.product-feature {
    padding: 180px 0 80px; /* Keep top padding for overlay */
    position: relative;
    overflow: hidden; 
}

/* Split Background - Light Blue Top, Dark Blue Bottom */
.product-feature::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 58%; 
    background-color: var(--light-blue); 
    z-index: 1;
}

.product-feature::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 42%; 
    background-color: var(--dark-blue); 
    z-index: 1;
}

/* Product Container - Remove max-width for full-width content feel */
.product-container {
    /* max-width: 1100px; <-- Removed */
    margin: 0 auto;
    padding: 0 3rem; /* Adjusted padding for screen edges */
    display: flex;
    align-items: center; /* RESTORED: Align items vertically center */
    position: relative;
    z-index: 5;
}

.product-image-container {
    flex: 0 0 45%; /* UPDATED basis */
    max-width: 500px; 
    display: flex;
    justify-content: center;
    align-items: flex-start; 
    position: relative;
    padding-right: 2rem; /* UPDATED spacing */
    margin-top: -3%;
}

.product-can-image {
    max-width: 100%;
    /* width: 450px; <-- Let container control width */
    height: auto;
    position: relative; 
    z-index: 6;
    margin-top: -12%;
}

.product-details {
    flex: 1 1 55%;
    padding: 2.5rem; /* UPDATED: Increase padding for card look */
    padding-top: 2.5rem; 
    background-color: var(--white); /* ADDED: Card background */
    color: var(--dark-blue); /* ADDED: Default text color for card */
    border-radius: 10px; /* ADDED: Rounded corners */
    box-shadow: 0 5px 15px rgba(0,0,0,0.15); /* ADDED: Subtle shadow */
}

/* Product Details - Adjust sizes for better side-by-side layout */
.product-description {
    font-size: 1.3rem; 
    line-height: 1.6;
    margin-bottom: 2.5rem; 
    color: var(--dark-blue); /* UPDATED: Text color */
    font-weight: 500;
}

.product-icons {
    display: flex;
    gap: 2.5rem; 
    margin-bottom: 0; 
    margin-top: 2.5rem; 
    flex-wrap: wrap;
    justify-content: flex-start; 
}

.product-details .icon {
    display: block;
    width: 70px; 
    height: 70px; 
    object-fit: contain;
    /* Use filter to make icons yellow */
    filter: brightness(0) saturate(100%) invert(93%) sepia(67%) saturate(5012%) hue-rotate(359deg) brightness(99%) contrast(92%); 
    /* Keep animation styles */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out, filter 0.3s ease;
}

/* Footer Styles */
footer {
    padding: 4rem 0 2.5rem; /* Adjusted padding, removed side padding */
    background-color: var(--secondary-color); /* UPDATED */
    text-align: center;
    overflow: hidden; /* Hide overflowing marquee */
    /* REMOVED incorrect filter from footer */
}

/* Marquee Container */
.peace-row-container {
    width: 100%;
    overflow: hidden;
    margin-bottom: 2.5rem; 
    padding: 0.5rem 0; /* Add a little vertical space */
}

.peace-row-marquee {
    display: flex;
    width: max-content; /* Allow content to determine width */
    animation: marquee 30s linear infinite;
    white-space: nowrap; /* ADDED to ensure no wrapping */
}

.peace-icon-img {
    height: 40px; /* Control icon size */
    width: auto;
    margin: 0 1.5rem; /* Spacing between icons */
    flex-shrink: 0; /* Prevent icons from shrinking */
    /* Optional: Apply cyan filter if PNG is not already cyan */
    /* filter: invert(69%) sepia(89%) saturate(2031%) hue-rotate(170deg) brightness(99%) contrast(101%); */ 
    /* filter: brightness(0) invert(1); */ /* Old white filter */
    filter: brightness(0) saturate(100%) invert(26%) sepia(70%) saturate(5659%) hue-rotate(194deg) brightness(96%) contrast(101%); /* UPDATED to dark blue */
}

/* Marquee Animation */
@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        /* Translate by half the width (since we duplicated the images) */
        transform: translateX(-50%); 
    }
}

/* Remove old peace-row styles */
.peace-row {
    display: none; 
}

.peace-row .peace-icon {
   /* Removed */
}

/* Footer Logo stays centered */
.footer-logo {
    /* Keep existing styles or adjust as needed */
    text-align: center;
}

#footer-logo {
    max-width: 400px; 
    width: 80%;
    height: auto;
    margin-bottom: 2rem; /* Add margin below logo */
    /* filter: brightness(0) saturate(100%) invert(26%) sepia(70%) saturate(5659%) hue-rotate(194deg) brightness(96%) contrast(101%); */ /* REMOVED incorrect dark blue filter */
}

.footer-nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem; 
}

.footer-nav ul li {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
}

/* Footer Nav Link Styling */
.footer-nav ul li a {
    color: var(--dark-blue); /* UPDATED dark blue color for links */
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none; 
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: var(--primary-color); /* Change text color to cyan on hover */
}

/* Logo Image Styling */
#header-logo {
    height: 45px; 
    width: auto;
}

/* Responsive Styles */
@media (max-width: 1200px) { /* Add breakpoint for large screens */
    .product-container {
        padding: 0 2rem;
    }
    .product-image-container {
        padding-right: 2rem;
    }
    .product-details {
        padding-left: 1rem;
    }
}

@media (max-width: 992px) {
    header { padding: 1.5rem 2rem; }
    .logo h1 { font-size: 2rem; }
    .logo .peace-icon { font-size: 1.5rem; }
    nav ul li { font-size: 0.9rem; }

    .hero-overlay-element { max-width: 200px; }

    .product-intro { flex-direction: column; }
    .intro-text { flex: 0 0 auto; padding: 4rem 2rem; text-align: center; }
    .intro-image { flex: 0 0 auto; min-height: 55vh; }
    .intro-text h2 { font-size: 1.8rem; }

    .adios-overlay { 
        width: 75%; 
        bottom: -110px; /* Adjusted responsive position */
        max-width: 800px; /* Adjusted responsive size */
    }

    .product-feature { 
        padding: 140px 0 50px; 
    }
    .product-container { 
        flex-direction: column; 
        max-width: 600px; /* Reintroduce max-width for stacked layout */
        align-items: center; 
        padding: 0 1.5rem; /* Adjust padding */
    }
    .product-image-container { 
        padding-right: 0; 
        margin-bottom: 0; 
        flex: 0 0 auto; 
        margin-top: 0; 
        max-width: none; /* Remove max-width when stacked */
    }
    .product-can-image { 
        width: 380px; 
        margin-top: -8%; 
    }
    .product-details { 
        flex: 0 0 auto; 
        padding-left: 0; 
        padding-top: 2.5rem; 
        text-align: center; 
    }
    /* Keep larger sizes from previous step for tablet */
    .product-description { font-size: 1.4rem; margin-bottom: 3rem; max-width: 100%; }
    .product-icons { gap: 3rem; margin-bottom: 3rem; justify-content: center; }
    .product-details .icon { width: 90px; height: 90px; }
    .product-stats p { font-size: 1.5rem; }

    .product-feature::before { height: 55%; } 
    .product-feature::after { height: 45%; }

    .footer-logo h1 { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    .adios-overlay {
        bottom: -100px; 
        max-width: 700px; 
    }

    .product-feature {
        padding-top: 120px; 
    }

    .product-description { font-size: 1.2rem; }
    .product-icons { gap: 2.5rem; }
    .product-details .icon { width: 80px; height: 80px; }
    .product-stats p { font-size: 1.3rem; }

    .footer-logo h1 { font-size: 3.5rem; }
    .footer-nav ul { flex-direction: column; gap: 0.6rem; }
    .footer-nav ul li:nth-child(even) { display: none; } /* Hide separators */
    .peace-row { gap: 0.8rem; margin-bottom: 2rem;}
    .peace-row .peace-icon { font-size: 1.8rem; }
}

@media (max-width: 576px) {
    header { flex-direction: column; gap: 0.8rem; padding: 1.5rem 1rem; }
    .logo h1 { font-size: 2rem; }
    nav ul { gap: 0.8rem; }
    nav ul li { font-size: 0.9rem; }

    .hero { padding-bottom: 2rem; }
    .hero-overlay-element { max-width: 180px; }

    .intro-text h2 { font-size: 1.6rem; }
    .intro-image { min-height: 45vh; }
    
    .adios-overlay { 
        width: 85%; 
        bottom: -60px; 
        max-width: 550px; 
     }
    
    .product-feature { 
        padding: 90px 0 30px; 
     }
    .product-can-image { width: 320px; margin-top: -10%; }
    .product-details { padding: 2rem 1rem 0; }
    .product-description { font-size: 1.1rem; margin-bottom: 2.5rem;}
    .product-icons { gap: 2rem; margin-bottom: 2.5rem; }
    .product-details .icon { width: 65px; height: 65px; }
    .product-stats p { font-size: 1.15rem; }

    .product-feature::before { height: 50%; } 
    .product-feature::after { height: 50%; }

    .footer-logo h1 { font-size: 3rem; }
    .footer-nav ul { flex-direction: column; gap: 0.6rem; }
    .footer-nav ul li:nth-child(even) { display: none; } /* Hide separators */
    .peace-row { gap: 0.8rem; margin-bottom: 2rem;}
    .peace-row .peace-icon { font-size: 1.8rem; }
}

/* --- Animation Styles --- */

/* Initial states for elements to be animated */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in {
    /* Only opacity transition needed */
}

.fade-in-up {
    transform: translateY(40px);
}

.slide-in-left {
    transform: translateX(-50px);
}

.slide-in-right {
    transform: translateX(50px);
}

/* Icons initial state for staggered animation */
.product-details .icon {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    /* transition-delay is set by JS */
}

/* In-view state (triggered by JS) */
.animate-on-scroll.in-view,
.product-details .icon.in-view {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* Delayed animations */
.fade-in-delay-1.in-view {
    transition-delay: 0.1s;
}

.fade-in-delay-2.in-view {
    transition-delay: 0.2s;
}

/* Remove animations if user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll,
  .product-details .icon {
    transition: none;
    opacity: 1; /* Make elements visible immediately */
    transform: none; /* Reset transforms */
  }
  .peace-row-marquee {
    animation: none; /* Disable marquee animation */
  }
}

/* --- Loading Screen Styles --- */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure it's on top */
    opacity: 1;
    transition: opacity 0.7s ease-out;
}

.loading-spinner {
    width: 80px; /* Adjust size as needed */
    height: 80px;
    animation: spin 1.5s linear infinite;
}

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

/* Class to hide the loading screen */
#loading-screen.loading-hidden {
    opacity: 0;
    pointer-events: none; /* Disable interaction after fade */
}

/* --- Store Locator / Map --- */
.store-locator {
    padding: 5rem 2rem;
    background-color: var(--dark-blue); /* Keep dark blue background */
}

.store-locator-container {
    max-width: 900px; /* Adjust max width */
    margin: 0 auto;
    text-align: center;
}

.store-locator h2 {
    font-size: 2.8rem;
    color: var(--secondary-color); /* Yellow heading */
    margin-bottom: 1rem;
    font-weight: 900;
    text-transform: uppercase;
}

.store-locator p {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 2.5rem; /* Space before map */
    max-width: 600px; /* Constrain paragraph width */
    margin-left: auto;
    margin-right: auto;
}

/* Map Container Styles Removed */

/* Remove old form styles */
.locator-form {
    display: none;
}

/* Responsive Store Locator */
@media (max-width: 768px) {
    .store-locator h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .store-locator {
        padding: 4rem 1rem;
    }
    .store-locator h2 {
        font-size: 1.8rem;
    }
    .locator-form {
        flex-direction: column;
        gap: 0.8rem;
        align-items: stretch; /* Make button full width */
    }
     .locator-form input[type="text"] {
        min-width: unset; /* Remove min-width */
        width: 100%; /* Make input full width */
    }
}

/* --- Social Icons --- */
.social-icons {
    margin-top: 2.5rem; /* Space above social icons */
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    height: 30px; /* Adjust size as needed */
    width: 30px;
    /* Apply dark blue color filter */
    filter: brightness(0) saturate(100%) invert(26%) sepia(70%) saturate(5659%) hue-rotate(194deg) brightness(96%) contrast(101%); /* UPDATED to dark blue */
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icons a:hover .social-icon {
    transform: scale(1.15); /* Slight scale on hover */
    /* Change to primary cyan on hover */
    filter: invert(69%) sepia(89%) saturate(2031%) hue-rotate(170deg) brightness(99%) contrast(101%); /* Primary cyan blue */
}

/* --- Copyright --- */
.copyright {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--dark-blue); /* UPDATED dark blue separator line */
}

.copyright p {
    font-size: 0.85rem;
    color: var(--dark-blue); /* UPDATED Dark blue color for copyright */
    font-weight: 500;
}

.drink-responsibly {
    font-size: 0.85rem; /* Match copyright size */
    color: var(--dark-blue); /* Match copyright color */
    font-weight: 500;
    margin-top: 0.5rem; /* Add a little space above */
}

/* Responsive Social/Copyright */
@media (max-width: 576px) {
    .social-icons {
        gap: 1.2rem;
        margin-top: 2rem;
    }
    .social-icon {
        height: 26px;
        width: 26px;
    }
    .copyright {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }
    .copyright p {
        font-size: 0.8rem;
    }
}

/* --- FAQ Section --- */
.faq-section {
    padding: 6rem 2rem;
    background-color: var(--white); /* White background for contrast */
}

.faq-container {
    max-width: 800px; /* Slightly wider container */
    margin: 0 auto;
}

.faq-container h2 {
    font-size: 2.8rem;
    color: var(--primary-color); /* Cyan heading */
    text-align: center;
    margin-bottom: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
}

.faq-item {
    border-bottom: 2px solid var(--primary-color); /* Cyan separator */
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    /* Base styles for animation */
    overflow: hidden; 
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item summary {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-blue); /* Dark blue question text */
    cursor: pointer;
    list-style: none; /* Remove default marker */
    position: relative;
    padding-right: 2rem; /* Space for marker */
    transition: color 0.3s ease;
}

.faq-item summary::marker, /* Remove default arrow in Firefox */
.faq-item summary::-webkit-details-marker /* Remove default arrow in Chrome/Safari */
{ 
    display: none;
}

/* Custom Marker */
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item[open] summary {
    color: var(--primary-color); /* Change question color when open */
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg); /* Rotate plus to 'x' */
}

.faq-answer {
    padding: 1rem 0 0 0;
    color: #333; /* Dark grey for answer */
    font-size: 1rem;
    line-height: 1.7;
    /* Simple fade-in for answer */
    animation: fadeInAnswer 0.5s ease-out forwards;
    opacity: 0; /* Start hidden for animation */
}

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

/* Add animation class to each faq-item */
.faq-item {
    opacity: 0; /* Start hidden */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transform: translateY(30px);
}

.faq-item.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger FAQ item animation */
.faq-item:nth-child(1).in-view { transition-delay: 0.1s; }
.faq-item:nth-child(2).in-view { transition-delay: 0.2s; }
.faq-item:nth-child(3).in-view { transition-delay: 0.3s; }
.faq-item:nth-child(4).in-view { transition-delay: 0.4s; }
/* Add more if needed */


/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-container h2 {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }
    .faq-item summary {
        font-size: 1.1rem;
    }
    .faq-answer {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
     .faq-section {
        padding: 4rem 1rem;
    }
     .faq-container h2 {
        font-size: 2rem;
    }
    .faq-item summary {
        padding-right: 1.5rem; /* Adjust marker space */
    }
    .faq-item summary::after {
        font-size: 1.5rem;
    }
}

/* --- About Section --- */
.about-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--light-blue) 100%); /* Diagonal gradient */
    overflow: hidden; /* Prevent graphic overflow */
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-content {
    flex: 1 1 55%;
    color: var(--white);
}

.about-content h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-transform: uppercase;
    color: var(--secondary-color); /* Yellow heading */
    line-height: 1.3;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-graphic {
    flex: 1 1 45%;
    text-align: center;
    transform: rotate(5deg); /* Slight tilt for fun */
}

.about-graphic img {
    max-width: 100%;
    width: 350px; /* Adjust size as needed */
    height: auto;
    filter: drop-shadow(5px 5px 10px rgba(0,0,0,0.2));
}

/* Responsive About Section */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    .about-content h2 {
        font-size: 2.5rem;
    }
    .about-graphic {
        transform: rotate(0deg); /* Straighten graphic */
        margin-top: 1rem;
    }
    .about-graphic img {
        width: 300px;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 4rem 1.5rem;
    }
    .about-content h2 {
        font-size: 2.2rem;
    }
     .about-content p {
        font-size: 1rem;
    }
     .about-graphic img {
        width: 250px;
    }
}

/* --- Tagline Section --- */
.tagline-section {
    padding: 3rem 2rem;
    background-color: var(--secondary-color); /* Vibrant yellow background */
    text-align: center;
}

.tagline-container h2 {
    font-size: 2.5rem;
    color: var(--dark-blue); /* Dark blue text */
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

.tagline-container .separator {
    color: var(--primary-color); /* Cyan separator */
    margin: 0 0.5em;
}

/* Responsive Tagline */
@media (max-width: 992px) {
    .tagline-container h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .tagline-section {
        padding: 2rem 1rem;
    }
    .tagline-container h2 {
        font-size: 1.5rem;
        line-height: 1.5;
    }
    .tagline-container .separator {
        display: block; /* Stack separators on mobile */
        margin: 0.2em 0;
        color: transparent; /* Hide pipe */
    }
     .tagline-container .separator::before {
        content: "•"; /* Use a dot or similar as separator */
        display: block;
        color: var(--primary-color);
        font-size: 1.2rem;
    }
}

/* Product Intro Section */
/* ... existing product intro styles ... */ 

/* --- Contact Section (Placeholder) --- */
.contact-section {
    padding: 5rem 2rem;
    background-color: var(--primary-color); /* Use primary cyan */
    color: var(--white);
    text-align: center;
}

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

.contact-container h2 {
    font-size: 2.8rem;
    color: var(--secondary-color); /* Yellow heading */
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-container p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-container a {
    color: var(--secondary-color);
    font-weight: 700;
    text-decoration: underline;
}

.contact-container a:hover {
    color: var(--white);
}

/* Responsive Contact Section */
@media (max-width: 768px) {
    .contact-container h2 { font-size: 2.2rem; }
    .contact-container p { font-size: 1rem; }
}

@media (max-width: 576px) {
    .contact-section { padding: 4rem 1.5rem; }
    .contact-container h2 { font-size: 2rem; }
}

/* --- Visually Hidden Class --- */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    white-space: nowrap; /* Added */
}

/* ... existing footer styles ... */ 

/* --- Legal Page Content Container --- */
.legal-content-container {
    max-width: 800px;
    margin: 4rem auto; /* Center container with top/bottom margin */
    padding: 3rem; /* Increased padding */
    background-color: var(--white); /* White background for readability */
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    color: #333; /* Dark text for content */
    line-height: 1.7;
}

.legal-content-container h1 {
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 900;
}

.legal-content-container p {
    margin-bottom: 1rem;
}

.legal-content-container em {
  font-style: italic;
  color: #555;
}

.legal-content-container hr {
    border: 0;
    height: 1px;
    background-color: #ddd;
    margin: 2rem 0;
}

.legal-content-container a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.legal-content-container a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-content-container .back-link {
    display: block;
    text-align: center;
    margin-top: 2rem;
}

/* --- Visually Hidden --- */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    white-space: nowrap; /* Added */
}

/* --- Utility: Hidden --- */
.hidden {
    display: none !important; /* Utility class to force hide */
}

/* --- Age Gate --- */
#age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-blue); /* Use dark blue background */
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ensure it's on top */
    text-align: center;
    padding: 2rem;
}

.age-gate-content {
    max-width: 500px;
}

.age-gate-logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 2rem;
}

.age-gate-content h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--white);
}

.age-gate-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.age-gate-buttons button {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0.8rem 2rem;
    margin: 0 0.5rem;
    border: 2px solid var(--white);
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#age-gate-yes {
    background-color: var(--secondary-color); /* Yellow */
    color: var(--dark-blue);
    border-color: var(--secondary-color);
}

#age-gate-yes:hover {
    background-color: var(--white);
    color: var(--secondary-color);
    border-color: var(--white);
}

#age-gate-no {
    background-color: transparent;
    color: var(--white);
}

#age-gate-no:hover {
    background-color: var(--white);
    color: var(--dark-blue);
}

#age-gate-error {
    color: var(--secondary-color); /* Yellow error text */
    margin-top: 1.5rem;
    font-weight: 700;
}

/* --- Product Extra Info (Nutrition/Packaging) --- */
.product-extra-info {
    margin-top: 2.5rem; 
    color: var(--dark-blue); /* UPDATED: Text color */
    border-top: 2px solid rgba(0, 111, 184, 0.2); /* UPDATED: Darker border */
    padding-top: 2.5rem; 
}

/* --- Quick Facts Box --- */
.product-quick-facts {
    display: flex;
    justify-content: space-around; 
    align-items: center;
    border: 2px solid var(--secondary-color); /* Keep yellow border */
    border-radius: 8px;
    padding: 1.2rem 1rem; 
    margin-bottom: 0; 
    text-align: center;
    background-color: var(--light-blue); /* Use light blue background */
}

.quick-fact:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1px; /* Position separator */
    top: 50%;
    transform: translateY(-50%);
    height: 60%; /* Adjust height */
    width: 2px;
    background-color: rgba(255, 255, 255, 0.3); /* Keep light separator */
}

.fact-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8); /* UPDATED: Text color */
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}

.fact-value {
    display: block;
    font-size: 1.3rem; 
    font-weight: 900;
    color: var(--white); /* UPDATED: Text color */
}

/* --- Quick Serving Suggestion --- */
.serving-suggestion-quick {
    margin-top: 2rem; 
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--dark-blue); /* UPDATED: Text color */
}

.serving-suggestion-quick strong {
    color: var(--primary-color); /* UPDATED: Cyan label */
    font-weight: 900;
    font-size: 1.05rem;
}

.serving-suggestion-quick em {
    display: block;
    margin-top: 0.5rem;
    font-style: italic;
    color: rgba(0, 111, 184, 0.7); /* UPDATED: Darker italic text */
}

/* About Section */
.about-section {
}

/* --- How to Drink Section --- */
#how-to-drink {
    padding: 6rem 0; 
    /* Updated animated gradient using only blues */
    /* background: linear-gradient(135deg, var(--light-blue), var(--primary-color), var(--dark-blue), var(--light-blue)); */ 
    /* background-size: 300% 300%; */ 
    background-color: var(--white); /* REVERTED to white background */
    color: var(--dark-blue); 
    overflow: hidden; 
    /* animation: animateGradient 25s ease infinite; */ /* REMOVED Animation */
}

.how-to-drink-container {
    max-width: 1200px; 
    margin: 0 auto;
    padding: 0 2rem; 
    text-align: center;
}

#how-to-drink h2 {
    font-size: 2.8rem;
    color: var(--dark-blue); /* REVERTED: Dark blue title */
    margin-bottom: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.3;
    border-bottom: 3px solid var(--primary-color); 
    display: inline-block; 
    padding-bottom: 0.5rem;
}

#how-to-drink .subtitle {
    font-size: 1.2rem;
    color: var(--primary-color); /* REVERTED: Cyan subtitle */
    font-weight: 700;
    text-transform: none;
    display: block;
    margin-top: 0.5rem; 
}

.recipe-cards-container {
    display: flex; 
    gap: 1.5rem;
    overflow-x: auto; 
    padding: 3.5rem 1rem; /* Increased vertical padding */
    margin: 0 -1rem; 
    -webkit-overflow-scrolling: touch; 
    scrollbar-width: none; 
}

.recipe-cards-container::-webkit-scrollbar {
    display: none; 
}

.recipe-card {
    flex: 0 0 280px; 
    background: linear-gradient(145deg, var(--light-blue), var(--primary-color)); 
    color: var(--white);
    border-radius: 15px; 
    padding: 2rem 1.5rem;
    text-align: center; 
    box-shadow: 0 6px 12px rgba(0, 111, 184, 0.2); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2); /* ADDED: Subtle white border */
}

.recipe-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 111, 184, 0.25);
}

/* Recipe Icon Styles Removed */

.recipe-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color); 
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.recipe-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Grid Layout for Desktop */
@media (min-width: 768px) {
    .recipe-cards-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); 
        overflow-x: visible;
        padding: 3.5rem 0; /* Reset horizontal padding */
        margin: 0; 
    }

    .recipe-card {
        flex: 1 1 auto; 
        padding: 2.5rem 2rem; /* Slightly more padding on desktop */
    }
}

@media (min-width: 992px) {
     #how-to-drink h2 { 
        font-size: 3rem; 
        padding-bottom: 0.7rem;
     }
     #how-to-drink .subtitle { 
        font-size: 1.3rem; 
        margin-top: 0.7rem;
     }
}

/* --- Keyframes for Background Animation --- */
@keyframes animateGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* --- Styles for Legal Pages (Privacy/Terms) --- */
.legal-page header {
    position: static; /* Override absolute positioning */
    background-color: var(--secondary-color); /* Accent Yellow */
    padding: 1rem 3rem; /* Adjust padding slightly if needed */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Optional subtle shadow */
}

/* Adjust link colors for visibility on yellow background */
.legal-page header nav ul li a {
    color: var(--dark-blue); /* Dark Blue for better contrast */
}

.legal-page header nav ul li a:hover {
    color: var(--primary-color); /* Cyan on hover */
}

/* Ensure header logo doesn't have conflicting filters if any were applied */
.legal-page header #header-logo {
    filter: none; /* Remove any filters if they interfere */
}

/* --- Fallback Font Style (if needed) --- */