/* =============================================
   Atlas Brew - Main Stylesheet
   ============================================= */

/* Reset & Variables */
* { margin: 0; padding: 0; box-sizing: border-box; }

*,
*::before,
*::after,
button,
input,
select,
textarea,
a {
    font-family: 'DM Sans', sans-serif;
}

:root {
    --primary: #3467b1;
    --primary-dark: #2b5594;
    --accent: #1ab2e8;
    --accent-dark: #1599c8;
    --black: #162d50;
    --white: #ffffff;
    --cream: #eef4fb;
    --peach: #dae8f7;
    --mint: #e4f5fc;
    --pink: #cddff2;
    --lilac: #d4eaf8;
    --text: #162d50;
    --text-light: #5a7394;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

/* Scroll offset for anchor links */
section[id] {
    scroll-margin-top: 120px;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* =============================================
   Age Gate
   ============================================= */
.age-gate {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(22, 45, 80, 0.95);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.age-gate.hidden {
    display: none;
}

.age-gate-box {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
}

.age-gate-logo {
    height: 56px;
    margin-bottom: 1.5rem;
}

.age-gate-box h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.age-gate-box > p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.age-gate-question {
    font-size: 1.05rem !important;
    font-weight: 700;
    color: var(--text) !important;
    margin-top: 1.5rem;
    margin-bottom: 1.25rem;
}

.age-gate-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.age-btn {
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.age-btn-yes {
    background: var(--primary);
    color: var(--white);
}

.age-btn-yes:hover {
    background: var(--primary-dark);
}

.age-btn-no {
    background: transparent;
    color: var(--text-light);
    border-color: #d0d8e4;
}

.age-btn-no:hover {
    border-color: var(--text-light);
    color: var(--text);
}

.age-gate-note {
    font-size: 0.75rem !important;
    color: var(--text-light) !important;
}

.age-gate-note a {
    color: var(--primary);
    text-decoration: none;
}

.age-gate-note a:hover {
    text-decoration: underline;
}

/* =============================================
   Navigation
   ============================================= */
nav {
    background: var(--white);
    padding: 1rem 4%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    border-bottom: 1px solid #e2ecf5;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-left a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.logo-center {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    text-decoration: none;
    color: inherit;
}

.logo-img {
    height: 72px;
    width: auto;
    object-fit: contain;
}

.logo-brand {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--primary);
}

.nav-right {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
    align-items: center;
}

.nav-right a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

/* Mobile Menu Button - Hidden on desktop */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 101;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation Menu - Hidden by default */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav a {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

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

/* =============================================
   Hero Carousel
   ============================================= */
.hero-carousel {
    position: relative;
    min-height: 80vh;
    overflow: hidden;
    background: var(--cream);
}

.hero-slides {
    position: relative;
    height: 80vh;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide .hero-left {
    background: linear-gradient(150deg, var(--mint) 0%, var(--peach) 40%, var(--lilac) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    position: relative;
    border-radius: 0 0 0 30px;
}

.segment-visual {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
}

.product-display {
    font-size: 5rem;
    background: var(--white);
    width: 140px;
    height: 180px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(52,103,177,0.15);
    transition: transform 0.3s ease;
}

.hero-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0 0 0 30px;
}

/* Crop watermark from alcoholic beverages hero image */
.hero-slide[data-segment="alcoholic-beverages"] .hero-product-img {
    object-position: top center;
    height: 108%;
}

/* Picture element support for responsive images */
.hero-slide .hero-left picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide .hero-left picture .hero-product-img {
    position: relative;
}

.hero-slide .hero-left:has(.hero-product-img),
.hero-slide .hero-left:has(picture) {
    padding: 0;
    position: relative;
}

.product-display:nth-child(2) {
    transform: translateY(-20px);
    font-size: 6rem;
    width: 160px;
    height: 200px;
}

.product-display:hover {
    transform: scale(1.05);
}

.product-display:nth-child(2):hover {
    transform: translateY(-20px) scale(1.05);
}

/* Professional Text Placeholders */
.display-text {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary);
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.icon-text {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary);
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

/* Background Gradients for Hero */
.hero-left.bg-gradient-mint {
    background: linear-gradient(150deg, var(--mint) 0%, #d0f0fa 50%, var(--cream) 100%);
}

.hero-left.bg-gradient-peach {
    background: linear-gradient(150deg, var(--peach) 0%, #f0e4d8 50%, var(--lilac) 100%);
}

.hero-slide .hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
}

.segment-label {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    width: fit-content;
}

.hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
}

.hero-right h1 {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}

.hero-right p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 380px;
    line-height: 1.7;
}

/* Hero Carousel Navigation */
.hero-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    z-index: 10;
}

.hero-dots {
    display: flex;
    gap: 0.5rem;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.15);
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.hero-dot.active,
.hero-dot:hover {
    background: var(--white);
    border-color: var(--white);
}

/* Nav segment active state */
.nav-segment {
    position: relative;
    transition: color 0.3s;
}

.nav-segment.active {
    color: var(--primary);
}

.nav-segment.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

/* =============================================
   Product Sections (Bold Layout)
   ============================================= */
.product-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
    align-items: stretch;
    padding: 3rem 0;
    background: var(--white);
}

.product-section.bg-cream {
    background: var(--cream);
}

.product-section.reverse {
    direction: rtl;
    grid-template-columns: 1fr 1fr;
}

.product-section.reverse > * {
    direction: ltr;
}

.product-section-image {
    background: var(--peach);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 0 30px 30px 0;
    min-height: 385px;
    max-width: 90%;
    /* Professional enhancements */
    box-shadow:
        0 25px 50px -12px rgba(52, 103, 177, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-right: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-section-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.4) 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.02) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.product-section-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    z-index: 2;
}

.product-section:hover .product-section-image {
    box-shadow:
        0 30px 60px -15px rgba(52, 103, 177, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.product-section.reverse .product-section-image {
    border-radius: 30px 0 0 30px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-left: none;
}

.product-section-image.bg-mint {
    background: linear-gradient(145deg, var(--mint) 0%, #d0f0fa 50%, #e8f8fc 100%);
}

.product-section-image.bg-peach {
    background: linear-gradient(145deg, var(--peach) 0%, #c8ddf0 50%, #e0ecf8 100%);
}

.product-section-image.bg-lilac {
    background: linear-gradient(145deg, var(--lilac) 0%, #c5e1f5 50%, #deeef9 100%);
}

.section-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: inherit;
}

/* Product Carousel */
.product-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.carousel-img {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: scale(0.98);
}

.carousel-img.active {
    opacity: 1;
    transform: scale(1);
}

.carousel-icon {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    background: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: scale(0.98);
}

.carousel-icon.active {
    opacity: 1;
    transform: scale(1);
}

/* Interactive Pills */
.tag-pills .pill {
    cursor: pointer;
    transition: all 0.3s ease;
}

.tag-pills .pill:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.tag-pills .pill.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.product-section-content {
    padding: 3rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
}

.section-label {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.product-section-content h2 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.product-section-content .section-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.product-section-content .section-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    max-width: 100%;
    line-height: 1.6;
}

.product-section-content p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 380px;
    line-height: 1.7;
}

/* =============================================
   Buttons
   ============================================= */
.btn-drink {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
    width: fit-content;
}

.btn-drink:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(52,103,177,0.3);
}

.btn-icon {
    width: 28px;
    height: 28px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.9rem;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    color: var(--black);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    width: fit-content;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255,255,255,0.2);
}

/* =============================================
   Ingredients Scroller
   ============================================= */
.ingredients {
    padding: 2rem 0;
    border-top: 1px solid #e2ecf5;
    border-bottom: 1px solid #e2ecf5;
    overflow: hidden;
}

.ingredients-track {
    display: flex;
    gap: 4rem;
    animation: scrollIngredients 25s linear infinite;
}

@keyframes scrollIngredients {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ingredient {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    min-width: 120px;
}

.ingredient-img {
    width: 80px;
    height: 80px;
    background: var(--cream);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.ing-letter {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.7;
}

.ingredient span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
}

/* =============================================
   Bold Typography Section
   ============================================= */
.bold-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.bold-text {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bold-text span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.bold-text h2 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 2rem;
}

.tag-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.pill {
    border: 2px solid var(--primary);
    border-radius: 30px;
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--black);
}

.pill.filled {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.bold-image {
    background: var(--peach);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 30px 0 0 30px;
}

.bold-image .product-pour {
    font-size: 12rem;
}

.pour-text {
    font-size: 6rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.15;
    letter-spacing: 8px;
}

/* =============================================
   Our Story
   ============================================= */
.ourstory {
    padding: 5rem 4%;
    background: var(--cream);
}

.ourstory-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.ourstory-label {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.ourstory-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.ourstory-intro {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.ourstory-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.ourstory-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid #e2ecf5;
    transition: box-shadow 0.3s, transform 0.3s;
}

.ourstory-card:hover {
    box-shadow: 0 15px 40px rgba(52, 103, 177, 0.12);
    transform: translateY(-4px);
}

.ourstory-card-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.ourstory-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.ourstory-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* =============================================
   Sustainability & Sourcing
   ============================================= */
.sustainability {
    padding: 5rem 4%;
    background: var(--white);
}

.sustainability-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.sustainability-label {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.sustainability-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.sustainability-intro {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.sustainability-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.sustainability-card {
    background: var(--cream);
    border-radius: 20px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}

.sustainability-card:hover {
    box-shadow: 0 15px 40px rgba(52, 103, 177, 0.12);
    transform: translateY(-4px);
}

.sustainability-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.sustainability-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.sustainability-card:hover .sustainability-card-image img {
    transform: scale(1.05);
}

.sustainability-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 1.5rem 1.5rem 0.75rem;
    color: var(--text);
}

.sustainability-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    padding: 0 1.5rem 1.5rem;
}

/* =============================================
   Products
   ============================================= */
.ourbrands {
    padding: 5rem 4%;
    background: var(--cream);
}

.ourbrands-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.ourbrands-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

.ourbrands-track {
    position: relative;
    overflow: hidden;
}

.ourbrands-card {
    display: none;
    grid-template-columns: 3fr 2fr;
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid #e2ecf5;
    transition: box-shadow 0.3s;
    height: 350px;
}

.ourbrands-card.active {
    display: grid;
}

.ourbrands-card:hover {
    box-shadow: 0 20px 40px rgba(52,103,177,0.18);
}

.ourbrands-card-image {
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.ourbrands-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ourbrands-card:hover .ourbrands-card-image img {
    transform: scale(1.05);
}

.ourbrands-card-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    min-width: 0;
}

.ourbrands-card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.ourbrands-card-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.ourbrands-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.ourbrands-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s;
}

.ourbrands-dot.active {
    background: var(--primary);
}

/* =============================================
   Distributors
   ============================================= */
.distributors {
    padding: 5rem 4%;
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.distributors-content {
    max-width: 540px;
}

.distributors-label {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.distributors-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.distributors-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.distributors-description:last-child {
    margin-bottom: 0;
}

.distributors-contact {
    background: var(--cream);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid #e2ecf5;
}

.distributors-contact h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.distributors-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.distributors-detail {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    font-weight: 600;
}

.distributors-detail a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
}

.distributors-detail a:hover {
    color: var(--primary-dark);
}

.distributors-detail p {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* =============================================
   Contact Us
   ============================================= */
.contactus {
    padding: 5rem 4%;
    background: var(--cream);
}

.contactus-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.contactus-label {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contactus-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    color: var(--text);
}

.contactus-intro {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contactus-body {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.contactus-offices h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.office-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    border: 1px solid #e2ecf5;
}

.office-card:last-child {
    margin-bottom: 0;
}

.office-type {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    background: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.office-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.office-address {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.office-contact {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.office-contact a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s;
}

.office-contact a:hover {
    color: var(--primary-dark);
}


.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.form-group label .required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 1.5px solid #d0dce8;
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9cb0c8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(52, 103, 177, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235a7394' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    padding: 0.9rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    margin-top: 0.5rem;
}

.btn-submit:hover {
    background: var(--primary-dark);
    box-shadow: 0 10px 30px rgba(52, 103, 177, 0.3);
    transform: translateY(-1px);
}

.form-status {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    min-height: 1.5em;
}

.form-status.success {
    color: #27ae60;
}

.form-status.error {
    color: #e74c3c;
}

/* =============================================
   CTA Banner
   ============================================= */
.cta-banner {
    margin: 3rem 4%;
    background: var(--black);
    border-radius: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    min-height: 450px;
}

.cta-content {
    padding: 4rem;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-content span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.cta-content p {
    opacity: 0.7;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 380px;
}

.cta-image {
    background: linear-gradient(135deg, #1ab2e8, #3467b1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10rem;
}

.cta-text {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    opacity: 0.3;
    letter-spacing: 6px;
}

/* =============================================
   Testimonial
   ============================================= */
.testimonial {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    min-height: 500px;
    background: var(--lilac);
}

.testimonial-image {
    background: var(--peach);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10rem;
    border-radius: 0 30px 30px 0;
}

.testimonial-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.testimonial-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-mark {
    font-size: 6rem;
    font-weight: 900;
    line-height: 0.6;
    margin-bottom: 1rem;
    color: var(--primary);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-content blockquote {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
}

.testimonial-author {
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-nav {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-nav button {
    width: 44px;
    height: 44px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
    color: var(--black);
}

.testimonial-nav button:hover {
    background: var(--primary);
    color: var(--white);
}

/* =============================================
   Instagram
   ============================================= */
.instagram {
    padding: 4rem 4%;
}

.instagram-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.instagram-header span {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.instagram-header strong {
    font-size: 1.1rem;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.insta-item {
    aspect-ratio: 1;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    transition: transform 0.3s;
    cursor: pointer;
}

.insta-item:hover { transform: scale(1.05); }
.insta-item:nth-child(1) { background: var(--peach); }
.insta-item:nth-child(2) { background: var(--mint); }
.insta-item:nth-child(3) { background: var(--pink); }
.insta-item:nth-child(4) { background: var(--lilac); }

.insta-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.3;
    letter-spacing: 3px;
}

/* =============================================
   Footer
   ============================================= */
footer {
    background: var(--black);
    color: var(--white);
    padding: 2.5rem 4% 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-social a {
    color: rgba(255,255,255,0.5);
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.footer-social a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-links-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.footer-links-label::after {
    content: '';
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-copyright {
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-copyright:hover {
    color: rgba(255,255,255,0.7);
}

/* Legal Pages */
.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 4%;
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
}

.legal-back {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.legal-back:hover {
    text-decoration: underline;
}

.legal-page h1 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.legal-updated {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.legal-page section {
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.legal-page p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.legal-page ul {
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

.legal-page li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.legal-page a {
    color: var(--primary);
}

/* =============================================
   404 Error Page
   ============================================= */
.error-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 2rem;
    font-family: 'DM Sans', sans-serif;
}

.error-page h1 {
    font-size: 8rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.error-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.error-text {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.error-btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.error-btn:hover {
    background: var(--primary-dark);
}

/* =============================================
   Cookie Consent
   ============================================= */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--black);
    color: var(--white);
    padding: 1rem 4%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.cookie-consent p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
    line-height: 1.5;
}

.cookie-consent a {
    color: var(--white);
    text-decoration: underline;
}

.cookie-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.3s;
}

.cookie-btn:hover {
    background: var(--primary-dark);
}

/* =============================================
   Responsive
   ============================================= */

/* Tablet - 992px */
@media (max-width: 992px) {
    /* Navigation */
    nav {
        padding: 0.75rem 4%;
        position: relative;
    }

    .nav-left,
    .nav-right {
        display: none;
    }

    nav {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .logo-img {
        height: 56px;
    }

    /* Mobile Menu */
    .mobile-menu-btn {
        display: flex;
    }

    .mobile-nav {
        display: flex;
    }

    /* Hero - Option 4: Minimal with Floating CTA */
    .hero-carousel {
        min-height: 70vh;
        overflow: hidden;
        background: var(--black);
    }

    .hero-slides {
        height: 70vh;
        min-height: 70vh;
    }

    .hero-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s ease, visibility 0.5s ease;
    }

    .hero-slide.active {
        opacity: 1;
        visibility: visible;
    }

    .hero-slide .hero-left {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
        margin: 0;
    }

    /* Dark gradient overlay at bottom for text readability */
    .hero-slide .hero-left::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 60%;
        background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
        pointer-events: none;
        z-index: 5;
    }

    .hero-product-img {
        border-radius: 0;
        object-fit: cover;
    }

    /* Floating text overlay at bottom */
    .hero-right {
        position: absolute;
        bottom: 3.5rem;
        left: 0;
        right: 0;
        padding: 1.5rem;
        background: transparent;
        text-align: center;
        z-index: 10;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .segment-label {
        background: rgba(255,255,255,0.15);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255,255,255,0.2);
        color: var(--white);
        font-size: 0.65rem;
        padding: 0.3rem 0.8rem;
        margin-bottom: 0.5rem;
    }

    .hero-right h1 {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
        color: var(--white);
        text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }

    .hero-right p {
        font-size: 0.85rem;
        color: rgba(255,255,255,0.85);
        max-width: 320px;
        margin: 0 auto 0.75rem;
        line-height: 1.5;
        text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    }

    .hero-slide .btn-drink {
        margin: 0;
        padding: 0.6rem 1.5rem;
        font-size: 0.75rem;
        background: var(--white);
        color: var(--primary);
    }

    .hero-slide .btn-drink:hover {
        background: var(--cream);
    }

    .hero-slide .btn-drink .btn-icon {
        background: var(--primary);
        color: var(--white);
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
    }

    .segment-visual {
        display: none;
    }

    /* Floating dots at bottom center */
    .hero-nav {
        position: absolute;
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%);
        padding: 0;
        z-index: 20;
        background: transparent;
    }

    .hero-dot {
        width: 8px;
        height: 8px;
        border-color: var(--white);
        background: transparent;
    }

    .hero-dot.active,
    .hero-dot:hover {
        background: var(--white);
        border-color: var(--white);
    }

    .hero-dots {
        background: rgba(0,0,0,0.3);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 0.5rem 1rem;
        border-radius: 20px;
        box-shadow: none;
        border: 1px solid rgba(255,255,255,0.1);
    }

    /* Product Sections */
    .product-section,
    .product-section.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        padding-top: 0;
    }

    .product-section-image {
        min-height: 280px;
        max-height: 320px;
        border-radius: 0 0 20px 20px;
        border: none;
        background: none;
        box-shadow: none;
        max-width: 100%;
        padding: 0;
    }

    .product-section-image::before,
    .product-section-image::after {
        display: none;
    }

    .product-section.reverse .product-section-image {
        border-radius: 0 0 20px 20px;
        border: none;
    }

    .product-section:hover .product-section-image {
        transform: none;
    }

    .product-section-content {
        padding: 2rem;
        text-align: center;
        align-items: center;
    }

    .product-section-content h2 {
        font-size: 2rem;
    }

    .product-section-content .section-subtitle {
        font-size: 1rem;
    }

    .product-section-content .section-description {
        font-size: 0.9rem;
        text-align: center;
    }

    .tag-pills {
        justify-content: center;
    }

    .carousel-img {
        width: calc(100% - 20px);
        height: calc(100% - 20px);
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    /* Bold Section */
    .bold-section {
        grid-template-columns: 1fr;
    }

    .bold-text {
        padding: 3rem 2rem;
        text-align: center;
        align-items: center;
    }

    .bold-text h2 {
        font-size: 2.5rem;
    }

    .bold-image {
        min-height: 250px;
        border-radius: 0;
    }

    /* Our Story */
    .ourstory {
        padding: 3rem 4%;
    }

    .ourstory-header h2 {
        font-size: 2rem;
    }

    .ourstory-intro {
        font-size: 0.9rem;
    }

    .ourstory-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .ourstory-card {
        padding: 2rem;
    }

    /* Sustainability */
    .sustainability {
        padding: 3rem 4%;
    }

    .sustainability-header h2 {
        font-size: 2rem;
    }

    .sustainability-intro {
        font-size: 0.9rem;
    }

    .sustainability-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .sustainability-card-image {
        height: 200px;
    }

    /* Our Brands */
    .ourbrands {
        padding: 3rem 4%;
    }

    .ourbrands-header h2 {
        font-size: 2rem;
    }

    .ourbrands-card {
        grid-template-columns: 1fr;
        height: auto;
    }

    .ourbrands-card-image {
        height: 220px;
        order: -1;
    }

    .ourbrands-card-content {
        padding: 2rem;
    }

    /* Distributors */
    .distributors {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 4%;
    }

    .distributors-content {
        text-align: center;
        max-width: 100%;
    }

    .distributors-content h2 {
        font-size: 2rem;
    }

    .distributors-description {
        font-size: 0.9rem;
    }

    .distributors-contact {
        padding: 2rem;
    }

    /* Contact Us */
    .contactus {
        padding: 3rem 4%;
    }

    .contactus-header h2 {
        font-size: 2rem;
    }

    .contactus-intro {
        font-size: 0.9rem;
    }

    .contactus-body {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

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

    /* CTA Banner */
    .cta-banner {
        grid-template-columns: 1fr;
        margin: 2rem 4%;
        min-height: auto;
    }

    .cta-content {
        padding: 3rem 2rem;
        text-align: center;
        align-items: center;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .cta-image {
        min-height: 200px;
    }

    /* Testimonial */
    .testimonial {
        grid-template-columns: 1fr;
    }

    .testimonial-image {
        min-height: 200px;
        border-radius: 0;
        order: -1;
    }

    .testimonial-content {
        padding: 2.5rem 2rem;
        text-align: center;
        align-items: center;
    }

    .testimonial-content blockquote {
        font-size: 1.1rem;
    }

    .testimonial-nav {
        justify-content: center;
    }

    /* Instagram */
    .instagram {
        padding: 3rem 4%;
    }

    .instagram-header {
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer */
    footer {
        padding: 2rem 4% 1.5rem;
    }

    .footer-top {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-logo-img {
        height: 40px;
    }

    /* Ingredients */
    .ingredients {
        padding: 1.5rem 0;
    }

    .ingredient-img {
        width: 60px;
        height: 60px;
    }

    .ing-letter {
        font-size: 1.5rem;
    }

    .ingredient span {
        font-size: 0.75rem;
    }
}

/* Mobile - 576px */
@media (max-width: 576px) {
    /* Scroll offset */
    html {
        scroll-padding-top: 80px;
    }

    section[id] {
        scroll-margin-top: 80px;
    }

    /* Navigation */
    nav {
        padding: 0.5rem 4%;
    }

    .logo-img {
        height: 48px;
    }

    .logo-brand {
        font-size: 1.2rem;
    }

    /* Hero - Mobile adjustments for Option 4 */
    .hero-carousel {
        min-height: 65vh;
    }

    .hero-slides {
        height: 65vh;
        min-height: 65vh;
    }

    .hero-right {
        bottom: 3rem;
        padding: 1rem;
    }

    .hero-right h1 {
        font-size: 1.3rem;
        letter-spacing: -0.5px;
        margin-bottom: 0.4rem;
    }

    .hero-right p {
        font-size: 0.75rem;
        max-width: 280px;
        margin-bottom: 0.6rem;
        line-height: 1.4;
    }

    .segment-label {
        font-size: 0.6rem;
        padding: 0.25rem 0.6rem;
        margin-bottom: 0.4rem;
    }

    .hero-slide .btn-drink {
        padding: 0.5rem 1.2rem;
        font-size: 0.7rem;
    }

    .hero-slide .btn-drink .btn-icon {
        width: 20px;
        height: 20px;
        font-size: 0.65rem;
    }

    .hero-nav {
        bottom: 0.75rem;
    }

    .hero-dot {
        width: 6px;
        height: 6px;
    }

    .product-display {
        font-size: 2rem;
        width: 70px;
        height: 90px;
        border-radius: 12px;
    }

    .product-display:nth-child(2) {
        font-size: 2.5rem;
        width: 80px;
        height: 105px;
        transform: translateY(-10px);
    }

    .display-text {
        font-size: 0.7rem;
    }

    /* Product Sections */
    .product-section-image {
        min-height: 220px;
        max-height: 250px;
        border-radius: 0 0 16px 16px;
        background: none;
        box-shadow: none;
        max-width: 100%;
        padding: 0;
    }

    .product-section-content {
        padding: 1.5rem;
    }

    .section-label {
        font-size: 0.85rem;
        letter-spacing: 2px;
        margin-bottom: 0.5rem;
    }

    .product-section-content h2 {
        font-size: 1.6rem;
        margin-bottom: 0.25rem;
    }

    .product-section-content .section-subtitle {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .product-section-content .section-description {
        font-size: 0.8rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .tag-pills {
        gap: 0.5rem;
    }

    .tag-pills .pill {
        font-size: 0.65rem;
        padding: 0.35rem 0.7rem;
        border-width: 1.5px;
    }

    .carousel-img {
        border-radius: 12px;
    }

    .carousel-icon {
        width: 100px;
        height: 100px;
        border-radius: 12px;
    }

    .icon-text {
        font-size: 0.7rem;
    }

    /* Bold Section */
    .bold-text {
        padding: 2rem 1.5rem;
    }

    .bold-text span {
        font-size: 0.7rem;
    }

    .bold-text h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .pill {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .bold-image {
        min-height: 180px;
    }

    .pour-text {
        font-size: 4rem;
    }

    /* Our Story */
    .ourstory {
        padding: 2rem 4%;
    }

    .ourstory-header {
        margin-bottom: 2rem;
    }

    .ourstory-header h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .ourstory-intro {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .ourstory-card {
        padding: 1.5rem;
    }

    .ourstory-card-icon {
        font-size: 1.5rem;
    }

    .ourstory-card h3 {
        font-size: 1.1rem;
    }

    .ourstory-card p {
        font-size: 0.85rem;
    }

    /* Sustainability */
    .sustainability {
        padding: 2rem 4%;
    }

    .sustainability-header {
        margin-bottom: 2rem;
    }

    .sustainability-header h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .sustainability-intro {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .sustainability-card-image {
        height: 180px;
    }

    .sustainability-card h3 {
        font-size: 1.05rem;
        margin: 1rem 1.2rem 0.5rem;
    }

    .sustainability-card p {
        font-size: 0.85rem;
        padding: 0 1.2rem 1.2rem;
    }

    /* Our Brands */
    .ourbrands {
        padding: 2rem 4%;
    }

    .ourbrands-header {
        margin-bottom: 2rem;
    }

    .ourbrands-header h2 {
        font-size: 1.6rem;
    }

    .ourbrands-card-image {
        height: 180px;
    }

    .ourbrands-card-content {
        padding: 1.2rem 1.5rem;
    }

    .ourbrands-card-content h3 {
        font-size: 1rem;
    }

    .ourbrands-card-content p {
        font-size: 0.85rem;
    }

    /* Distributors */
    .distributors {
        padding: 2rem 4%;
        gap: 1.5rem;
    }

    .distributors-content h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .distributors-description {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .distributors-contact {
        padding: 1.5rem;
    }

    .distributors-contact h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .distributors-detail a,
    .distributors-detail p {
        font-size: 0.9rem;
    }

    /* Contact Us */
    .contactus {
        padding: 2rem 4%;
    }

    .contactus-header {
        margin-bottom: 2rem;
    }

    .contactus-header h2 {
        font-size: 1.6rem;
        margin-bottom: 0.75rem;
    }

    .contactus-intro {
        font-size: 0.85rem;
    }

    .contactus-offices h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .office-card {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }

    .office-name {
        font-size: 0.9rem;
    }

    .office-address {
        font-size: 0.85rem;
    }

    .office-contact a {
        font-size: 0.85rem;
    }

    .form-group label {
        font-size: 0.8rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem 0.9rem;
        font-size: 0.85rem;
    }

    .btn-submit {
        padding: 0.8rem 2rem;
        font-size: 0.85rem;
    }

    /* CTA Banner */
    .cta-banner {
        margin: 1.5rem 4%;
        border-radius: 20px;
    }

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

    .cta-content span {
        font-size: 0.65rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .cta-content p {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .btn-cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }

    .cta-image {
        min-height: 150px;
    }

    .cta-text {
        font-size: 2.5rem;
    }

    /* Testimonial */
    .testimonial-image {
        min-height: 150px;
    }

    .testimonial-avatar {
        width: 80px;
        height: 80px;
        font-size: 1.8rem;
    }

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

    .quote-mark {
        font-size: 4rem;
    }

    .testimonial-content blockquote {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .testimonial-author {
        font-size: 0.9rem;
    }

    .testimonial-nav button {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    /* Instagram */
    .instagram {
        padding: 2rem 4%;
    }

    .instagram-header span {
        font-size: 0.75rem;
    }

    .instagram-header strong {
        font-size: 1rem;
    }

    .insta-text {
        font-size: 1.2rem;
    }

    /* Footer */
    footer {
        padding: 1.5rem 4% 1rem;
    }

    .footer-top {
        padding-bottom: 1rem;
    }

    .footer-logo-img {
        height: 36px;
    }

    .footer-links {
        gap: 0.3rem;
    }

    .footer-links-label {
        font-size: 0.75rem;
    }

    .footer-links a {
        font-size: 0.7rem;
    }

    .footer-copyright {
        font-size: 0.7rem;
    }

    /* Ingredients */
    .ingredient {
        min-width: 80px;
        gap: 0.5rem;
    }

    .ingredient-img {
        width: 50px;
        height: 50px;
        border-radius: 8px;
    }

    .ing-letter {
        font-size: 1.2rem;
    }

    .ingredient span {
        font-size: 0.65rem;
    }

    .ingredients-track {
        gap: 2rem;
    }
}
