/* =========================================
   CSS Variables & Reset
   ========================================= */
:root {
    --bg: #F7F1E5;
    --bg-light: #FFFEFB;
    --main: #231E52;
    --main-light: #3b338a;
    --red: #c62828;
    --green: #2e7d32;
    --badge-bg: #EEDFA3;
    --tan: #EBE1CB;
    --footer-bg: #DFD7C1;
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    font-family: var(--font-body);
    color: var(--main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    text-transform: uppercase;
    color: var(--main);
    line-height: 1.15;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.section-title.center { text-align: center; }

/* =========================================
   TOP BAR
   ========================================= */
.top-bar {
    background: #e5dfce;
    text-align: center;
    padding: 10px 16px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--main);
}

/* =========================================
   HEADER
   ========================================= */
.main-header {
    background: #fff;
    border-bottom: 1px solid #f0ebe0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    padding-bottom: 12px;
}

.header-spacer { flex: 1; }

.logo {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo img {
    height: 64px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 4px;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    color: var(--main);
}

.header-actions {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 18px;
    align-items: center;
    font-size: 1.2rem;
    color: var(--main);
}

#search-btn, #wishlist-btn {
    display: none; /* Hidden for now */
}

.cart-link { position: relative; }

.cart-badge {
    position: absolute;
    top: -5px;
    right: -9px;
    background: var(--main);
    color: #fff;
    font-size: 0.55rem;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Navigation */
.main-nav {
    border-top: 1px solid #f0ebe0;
    display: none; /* Hidden for the landing page for now */
}

.main-nav ul {
    display: flex;
    justify-content: center;
    gap: 28px;
    padding: 14px 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.3px;
}

.main-nav a {
    color: var(--main);
    padding-bottom: 3px;
    transition: border-color 0.2s;
    border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
    border-bottom-color: var(--main);
}

/* =========================================
   HERO SECTION  
   ========================================= */
.hero {
    overflow: hidden;
    position: relative;
    background: var(--bg);
    /* Maintain old natural hero dimensions purely off slider inner proportions */
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-vimeo-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 Aspect Ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 Aspect Ratio */
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none; /* Let clicks pass through to UI */
    overflow: hidden;
}

/* Swiper native overrides for full screen backgrounds */
.myHeroSwiper .swiper-wrapper {
    height: auto;
    min-height: 500px;
    display: flex;
    align-items: stretch;
}
.myHeroSwiper .swiper-slide {
    height: auto;
    min-height: 500px;
    display: flex;
    align-items: center;
}
.myHeroSwiper .swiper-pagination {
    bottom: 15px !important;
}
.myHeroSwiper .swiper-pagination-bullet-active {
    background: var(--main) !important;
}

.hero-vimeo-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Push to the right */
    gap: 20px;
    min-height: 340px;
    position: relative;
    z-index: 2;
    padding-bottom: 40px;
    width: 100%;
}

.hero-cans {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0;
    position: relative;
}

.can {
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.15));
}

.can-cola {
    height: 300px;
    z-index: 2;
    transform: translateX(20px);
}

.can-green {
    height: 330px;
    z-index: 3;
    position: relative;
}

.can-pineapple {
    height: 280px;
    z-index: 1;
    transform: translateX(-20px);
}

.hero-text {
    flex: 1;
    text-align: left;
    cursor: default; /* Keep default cursor for text */
}

.hero-text.right-aligned {
    text-align: left;
    max-width: 600px;
    margin-right: -200px; /* Pushes text 200px further to the right */
    padding-right: 0;
    margin-left: auto; /* Push it to the right within the container */
    position: relative; /* ensure it renders properly when shifted */
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(255,255,255,0.7);
}

.hero-sub {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.5;
    text-shadow: 0 1px 5px rgba(255,255,255,0.7);
}

.btn-shop {
    display: inline-block;
    background: var(--main);
    color: #fff;
    padding: 14px 40px;
    border-radius: 30px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-shop:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(62,41,31,0.3);
}

/* =========================================
   BENEFITS + VIDEOS SECTION
   ========================================= */
.benefits-videos-section {
    display: flex;
    gap: 50px;
    padding: 50px 24px;
}

.benefits-col {
    flex: 0 0 45%;
    position: relative;
}
.benefits-col .section-title {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Remove old CSS pseudo-element decorations - now using real images */

.videos-col {
    flex: 1;
}

/* Benefits Diagram */
.benefits-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    padding: 20px 0;
    margin-top: 45px;
}

.benefits-left,
.benefits-right {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.benefits-left {
    align-items: flex-end;
    text-align: right;
}

.benefits-right {
    align-items: flex-start;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.25;
    color: var(--main);
    cursor: default;
}

/* Arrow image styling */
.arrow-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
    transition: transform 0.3s, filter 0.3s;
}

.benefit-item:hover .arrow-img {
    filter: brightness(0.6);
}

/* Panel fruit decorations */
.panel-fruit {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}
/* Lemon slice - BOTTOM-LEFT, below the text items */
.panel-fruit-bottomleft {
    bottom: -10px;
    left: 0;
    width: 80px;
}
/* Lemon slice - TOP-RIGHT corner */
.panel-fruit-topright {
    top: 0;
    right: 0;
    width: 80px;
}
/* Mint leaf - moved UP, close to bottom-right text area */
.panel-fruit-midright {
    bottom: 60px;
    right: 10px;
    width: 50px;
}

.benefits-center img {
    height: 280px;
    object-fit: contain;
}

/* Videos Grid - uniform 2x2 grid */
.videos-col {
    flex: 1;
    position: relative;
}

/* Lime wedge fruit - top right of videos column */
.videos-fruit {
    position: absolute;
    top: -10px;
    right: -15px;
    width: 80px;
    pointer-events: none;
    z-index: 2;
}

.videos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
}

.video-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
}

.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 12px;
    transition: background 0.3s;
}

.video-card:hover .video-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 100%);
}

.play-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.3);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    transition: transform 0.3s, background 0.3s;
}

.video-card:hover .play-circle {
    transform: translate(-50%, -50%) scale(1.15);
    background: rgba(255,255,255,0.45);
}

.video-overlay h3 {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}

/* Video Lightbox Modal */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.85);
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
}

.video-modal-player {
    width: 100%;
    height: 100%;
}

.video-modal-player iframe,
.video-modal-player video {
    width: 100%;
    height: 100%;
    border: none;
}

/* =========================================
   BUNDLES SECTION
   ========================================= */
.bundles-section {
    padding: 20px 24px 60px;
}

.bundles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.bundle-card {
    background: #fff;
    border: 1px solid #EBE1D0;
    border-radius: 16px;
    padding: 12px 12px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.03);
    position: relative;
}

.bundle-img {
    width: 100%;
    height: 160px;
    background: #F4ECDC;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    border-radius: 12px;
    padding: 10px;
}

.bundle-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.bundle-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--main);
    margin-bottom: 4px;
}

.bundle-bonus {
    color: var(--red);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 12px;
    font-family: var(--font-display);
}

.bundle-badge {
    display: inline-block;
    background: #F3E7D3;
    color: var(--main);
    padding: 3px 14px;
    border-radius: 12px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.bundle-shipping {
    color: var(--main);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.bundle-btn {
    display: block;
    width: 100%;
    background: var(--main);
    color: #fff;
    padding: 12px 0;
    border-radius: 20px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(35,30,82,0.2);
}

.bundle-btn:hover {
    background: #151130;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(35,30,82,0.3);
}

.flavor-select {
    width: 100%;
    padding: 10px 14px;
    border-radius: 8px;
    border: 2px solid #EBE1D0;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23231e52' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--main);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.flavor-select:hover {
    border-color: var(--main);
}

.flavor-select:focus {
    outline: none;
    border-color: var(--main);
    box-shadow: 0 0 0 3px rgba(35,30,82,0.1);
}

/* =========================================
   FEATURES STRIP
   ========================================= */
.features-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    padding-bottom: 40px;
}

.feature-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 18px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.feature-icon {
    font-size: 2rem;
    color: var(--main);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon .big-zero {
    font-size: 2.8rem;
    font-weight: 900;
    font-family: var(--font-display);
    line-height: 1;
}

.feature-item p {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    line-height: 1.2;
}



/* =========================================
   PARTNERS
   ========================================= */
.partners-section {
    padding-bottom: 50px;
}

.partners-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    padding: 20px 0;
    cursor: grab;
    user-select: none; /* Prevent selection while dragging */
}

.partners-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.partners-carousel:active {
    cursor: grabbing;
}

.partner-logo {
    flex: 0 0 auto;
    background: #ffffff !important;
    padding: 15px 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    height: 100px;
}

.partner-logo img {
    max-height: 70px;
    max-width: 130px;
    object-fit: contain;
    -webkit-user-drag: none; /* Crucial for smooth JS dragging of images */
    user-drag: none;
    pointer-events: none;
}

/* =========================================
   FOOTER
   ========================================= */
.main-footer {
    background: var(--footer-bg);
    padding: 45px 0 0;
    color: #432b23;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 24px;
}

.footer-col {
    flex: 1;
    min-width: 120px;
}

.footer-brand {
    flex: 1.4;
    min-width: 260px;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-logo {
    height: 60px; /* Increased by 1.5x from 38px */
    object-fit: contain;
}

.footer-brand-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--main);
    line-height: 1.15;
}

.footer-tagline {
    font-size: 0.82rem;
    line-height: 1.5;
    color: #5a4a3a;
}

.footer-col h4 {
    font-size: 0.9rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.footer-col li {
    margin-bottom: 6px;
}

.footer-col a {
    color: #6a5a4a;
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--main); }

.footer-contact p {
    font-size: 0.82rem;
    margin-bottom: 6px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.social-icons {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 12px;
}

.social-icons a {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: var(--main);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: transform 0.2s, background 0.3s;
}

.social-icons a:nth-child(1):hover { background: #E1306C; } /* Instagram */
.social-icons a:nth-child(2):hover { background: #1877F2; } /* Facebook */
.social-icons a:nth-child(3):hover { background: #0077b5; } /* LinkedIn */
.social-icons a:nth-child(4):hover { background: #ff0050; color: #fff; } /* TikTok */
.social-icons a:nth-child(5):hover { background: #FFFC00; color: #000; } /* Snapchat */

.social-icons a:hover { transform: translateY(-2px); }

.footer-newsletter {
    min-width: 250px;
}

.newsletter-form {
    display: flex;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    padding: 3px;
    border: 1px solid #EBE1D0;
}

.newsletter-form input {
    flex: 1;
    min-width: 0; /* Prevents input pushing button out */
    padding: 9px 12px;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.85rem;
}

.newsletter-form button {
    padding: 9px 18px;
    background: var(--main);
    color: #fff;
    border: none;
    border-radius: 18px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s;
}

.newsletter-form button:hover { background: #2a1b16; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding: 16px 0;
    font-size: 0.78rem;
    color: #6a5a4a;
}

/* =========================================
   FLYING FRUIT DECORATIONS
   ========================================= */
.flying-fruits {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.fruit {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

/* 04 = Mint leaf - left mid page */
.fruit-04 {
    top: 1800px;
    left: 30px;
    width: 55px;
    opacity: 0.5;
    transform: rotate(15deg);
}

/* 05 = Lime half - right side near benefits */
.fruit-05 {
    top: 500px;
    right: 30px;
    width: 80px;
    opacity: 0.4;
}

/* 07 = Blueberries - left side near bundles */
.fruit-07 {
    top: 1200px;
    left: 20px;
    width: 60px;
    opacity: 0.45;
}

/* 08 = Mint leaves cluster - right side near features */
.fruit-08 {
    top: 2200px;
    right: 25px;
    width: 70px;
    opacity: 0.4;
    transform: rotate(-10deg);
}

/* 09 = Lemon outline - left side near partners */
.fruit-09 {
    top: 2600px;
    left: 20px;
    width: 60px;
    opacity: 0.35;
}

/* =========================================
   ANIMATIONS (INTERACTIONS)
   ========================================= */
@keyframes vibrate {
    0% { transform: translate(0); }
    20% { transform: translate(-3px, 2px); }
    40% { transform: translate(-3px, -2px); }
    60% { transform: translate(3px, 2px); }
    80% { transform: translate(3px, -2px); }
    100% { transform: translate(0); }
}

.anim-vibrate {
    animation: vibrate 0.3s ease-in-out;
}

@keyframes arrow-shoot {
    0% { transform: rotate(var(--r)) scale(1) translateX(0); opacity: 1; }
    50% { transform: rotate(var(--r)) scale(1.2) translateX(-10px); opacity: 0.8; }
    100% { transform: rotate(var(--r)) scale(1) translateX(0); opacity: 1; }
}

.anim-arrow-shoot {
    animation: arrow-shoot 0.4s ease-out;
}

/* =========================================
   FLOATING WHATSAPP
   ========================================= */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    background-color: #20b858;
    transform: scale(1.1) translateY(-2px);
    color: #fff;
    box-shadow: 0 6px 14px rgba(0,0,0,0.4);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1100px) {
    .benefits-videos-section,
    .blog-testimonials-section {
        flex-direction: column;
    }

    .benefits-col, .videos-col,
    .blog-col, .testimonials-col {
        flex: 1 1 100%;
    }

    .bundles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-strip {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .flying-fruits { display: none; }

    .header-inner {
        flex-direction: column;
        gap: 10px;
    }
    .header-spacer { display: none; }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-cans {
        margin-bottom: 20px;
    }

    .hero-text {
        text-align: center;
    }

    .hero h1 { font-size: 2.2rem; }

    .hero-iframe-bg {
        /* Move the video contents to the right by 200px strictly */
        transform: translate(calc(-50% + 200px), -50%) !important;
    }

    .hero-text.right-aligned {
        text-align: center;
        margin: 0 auto;
        padding-right: 0;
    }

    /* RTL Mobile: center the hero text, remove desktop shift */
    [dir="rtl"] .hero-text-shift {
        transform: none !important;
    }
    [dir="rtl"] .hero-text,
    [dir="rtl"] .hero-text.right-aligned {
        text-align: center !important;
        margin: 0 auto;
        padding: 0 16px;
    }

    /* RTL Mobile: reset benefits-videos to normal column flow */
    [dir="rtl"] .benefits-videos-section {
        flex-direction: column !important;
    }

    .can-cola { height: 200px; }
    .can-green { height: 230px; }
    .can-pineapple { height: 190px; }

    .benefits-diagram {
        flex-direction: column !important;
        gap: 10px;
        align-items: center;
        margin-top: 0;
    }

    .benefits-center {
        order: -1;
    }

    .benefits-center img {
        width: 120px !important;
        height: auto !important;
        max-height: 220px;
        object-fit: contain;
    }

    .benefits-left, .benefits-right {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
        width: 100%;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
        font-size: 0.75rem;
    }

    .arrow-img {
        width: 22px !important;
        height: 22px !important;
    }

    /* On mobile, all left arrows point down (from can above) */
    .benefits-left .arrow-img {
        transform: rotate(180deg) !important;
        order: -1;
    }

    /* On mobile, all right arrows point down (from can above) */
    .benefits-right .arrow-img {
        transform: rotate(180deg) !important;
        order: -1;
    }

    /* Hide all decorative fruit overlays on mobile to prevent overlap */
    .panel-fruit { display: none; }
    .videos-fruit { display: none; }

    .videos-grid { grid-template-columns: 1fr; }
    .bundles-grid { grid-template-columns: 1fr !important; }
    .features-strip { grid-template-columns: repeat(2, 1fr); }
    .partners-row { flex-direction: column; align-items: center; }

    .footer-grid { flex-direction: column; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .section-title { font-size: 1.4rem; }
    .features-strip { grid-template-columns: 1fr 1fr; }
    .main-nav ul { gap: 14px; font-size: 0.8rem; flex-wrap: wrap; justify-content: center; }
}
 
 
/* =========================================
   RTL Styles & Arabic Typography (Cairo)
   ========================================= */

[dir="rtl"] {
    text-align: right;
}

/* Force Cairo on ALL headings and titles in Arabic mode */
[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4,
[dir="rtl"] h5,
[dir="rtl"] h6,
[dir="rtl"] .section-title,
[dir="rtl"] .hero h1,
[dir="rtl"] .hero-text h1,
[dir="rtl"] .bundle-title,
[dir="rtl"] .footer-col h4,
[dir="rtl"] .logo-text,
[dir="rtl"] .top-bar,
[dir="rtl"] .main-nav ul a,
[dir="rtl"] .btn-shop,
[dir="rtl"] .bundle-btn {
    font-family: 'Cairo', sans-serif !important;
}

/* Force Tajawal on body text in Arabic mode */
[dir="rtl"] body,
[dir="rtl"] p,
[dir="rtl"] span,
[dir="rtl"] a,
[dir="rtl"] li,
[dir="rtl"] label,
[dir="rtl"] input,
[dir="rtl"] select,
[dir="rtl"] textarea,
[dir="rtl"] .hero-sub,
[dir="rtl"] .benefit-item span,
[dir="rtl"] .footer-tagline,
[dir="rtl"] .bundle-bonus,
[dir="rtl"] .bundle-shipping,
[dir="rtl"] .feature-item p {
    font-family: 'Tajawal', sans-serif !important;
}

[dir="rtl"] .hero-text,
[dir="rtl"] .hero-text.right-aligned {
    text-align: right;
}
[dir="rtl"] .hero-text-shift {
    transform: translateX(-250px);
}

/* Adjust navigation mapping */
[dir="rtl"] .main-nav ul {
    flex-direction: row-reverse;
}

/* Specific left to right spacing inside inputs/buttons */
[dir="rtl"] .cart-header button {
    margin-right: auto;
    margin-left: 0;
}
[dir="rtl"] .cart-table th, [dir="rtl"] .cart-table td {
    text-align: right;
}
[dir="rtl"] .summary-row, [dir="rtl"] .total-row {
    flex-direction: row;
}

/* Arrow Directions in RTL:
   flex-direction:row-reverse on benefits-diagram swaps left/center/right columns.
   row-reverse on benefit-items swaps arrowâ†”text within each item. */
[dir="rtl"] .benefits-diagram {
    flex-direction: row-reverse;
}
[dir="rtl"] .benefits-left .benefit-item {
    flex-direction: row-reverse;
}
[dir="rtl"] .benefits-right .benefit-item {
    flex-direction: row-reverse;
}
[dir="rtl"] .benefits-left {
    align-items: flex-start;
    text-align: left;
}
[dir="rtl"] .benefits-right {
    align-items: flex-end;
    text-align: right;
}
[dir="rtl"] .benefit-item span {
    text-align: right;
}

/* Swap the benefits-videos columns: benefitsâ†’right, videosâ†’left in Arabic */
[dir="rtl"] .benefits-videos-section {
    flex-direction: row-reverse;
}

/* Move lime-wedge fruit to the left side of videos panel in RTL */
[dir="rtl"] .videos-fruit {
    right: auto;
    left: -15px;
}

/* Header: in RTL, actions go to the left side */
[dir="rtl"] .header-actions {
    flex-direction: row-reverse;
    justify-content: flex-start;
}
[dir="rtl"] .footer-grid {
    direction: rtl;
}

[dir="rtl"] .feature-item {
    text-align: center;
}

/* WhatsApp button: move to left side in RTL */
[dir="rtl"] .floating-whatsapp {
    right: auto;
    left: 25px;
}

/* Footer newsletter: keep LTR input direction for email */
[dir="rtl"] .newsletter-form {
    flex-direction: row-reverse;
}

/* Dropdown arrow on LEFT in Arabic */
[dir="rtl"] .flavor-select,
[dir="rtl"] select {
    direction: rtl;
    text-align: right;
    padding-left: 36px !important;
    padding-right: 14px !important;
    background-position: left 12px center !important;
}

