/* ============================================================
   MIRACLE PARK GARDENS & HOTEL BUJUUKO - COFFEE BROWN & OFF-WHITE THEME
   Pages: Home | About | Contact
   ============================================================ */

/* ---------- COLOR VARIABLES ---------- */
:root {
    --coffee-dark: #3D2B1F;
    --coffee-medium: #5C3D2E;
    --coffee-light: #7A5C44;
    --coffee-cream: #D4C5A9;
    --off-white: #F5F0E8;
    --warm-white: #FAF6F0;
    --cream: #E8DDD0;
    --coffee-gold: #B8956A;
    --coffee-foam: #E8DDD0;
    --text-dark: #2D1F14;
    --text-light: #F5F0E8;
}

/* ---------- RESET & BASE ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
}

body {
    background: var(--off-white);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.8rem;
}

/* ============================================================
   UNIFIED INSTALL BANNER (BOTTOM FIXED POSITION)
   ============================================================ */

.install-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--coffee-dark);
    color: var(--off-white);
    padding: 14px 18px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    border-top: 4px solid var(--coffee-gold);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    animation: slideUpBanner 0.5s ease;
    transition: all 0.3s ease;
}

.install-banner.hidden {
    display: none;
}

@keyframes slideUpBanner {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1 1 240px;
}

.banner-icon {
    background: var(--coffee-gold);
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coffee-dark);
    font-weight: 700;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.banner-text {
    flex: 1;
}

.banner-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 2px;
}

.banner-text p {
    font-size: 0.8rem;
    color: var(--coffee-cream);
    margin: 2px 0;
    line-height: 1.3;
}

.banner-text .publisher {
    font-size: 0.7rem;
    color: var(--coffee-cream);
    background: rgba(255,255,255,0.1);
    display: inline-block;
    padding: 2px 10px;
    border-radius: 30px;
    margin-top: 3px;
}

.banner-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.btn-install {
    background: var(--coffee-gold);
    border: none;
    color: var(--coffee-dark);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 60px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.15s;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    letter-spacing: 0.3px;
}

.btn-install:hover {
    background: #d4b88a;
    transform: translateY(-2px);
}

.btn-not-now {
    background: transparent;
    border: 2px solid var(--coffee-cream);
    color: var(--coffee-cream);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 60px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.2s;
}

.btn-not-now:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--off-white);
    color: var(--off-white);
}

.banner-close {
    background: transparent;
    border: none;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--coffee-cream);
    cursor: pointer;
    padding: 0 6px;
    font-weight: 300;
    transition: 0.1s;
    align-self: flex-start;
    margin-top: -6px;
}

.banner-close:hover {
    color: var(--off-white);
    transform: scale(1.1);
}

/* Add padding to body to prevent content from being hidden behind the banner */
body {
    padding-bottom: 100px;
}

/* Responsive styles for banner */
@media (max-width: 600px) {
    .install-banner {
        padding: 12px 14px;
    }
    .banner-content {
        flex: 1 1 100%;
    }
    .banner-actions {
        width: 100%;
        justify-content: flex-start;
        margin-top: 8px;
    }
    .btn-install {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .btn-not-now {
        margin-left: auto;
    }
    .banner-close {
        align-self: center;
        margin-top: 0;
    }
    .banner-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .banner-text h4 {
        font-size: 0.85rem;
    }
    .banner-text p {
        font-size: 0.7rem;
    }
    body {
        padding-bottom: 140px;
    }
}

@media (max-width: 400px) {
    .install-banner {
        padding: 10px 12px;
    }
    .banner-content {
        gap: 8px;
    }
    .banner-icon {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }
    .banner-text h4 {
        font-size: 0.75rem;
    }
    .banner-text p {
        font-size: 0.65rem;
    }
    .btn-install {
        font-size: 0.75rem;
        padding: 6px 14px;
    }
    .btn-not-now {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
    body {
        padding-bottom: 130px;
    }
}

/* ---------- SLOGAN BANNER ---------- */
.slogan-banner {
    background: var(--coffee-dark);
    color: var(--off-white);
    text-align: center;
    padding: 0.6rem 1.2rem;
    border-radius: 60px;
    margin: 1rem 0 0.5rem;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    box-shadow: 0 4px 15px rgba(61, 43, 31, 0.15);
}

.slogan-banner i {
    color: var(--coffee-gold);
    font-size: 1rem;
}

.slogan-banner span {
    font-style: italic;
}

/* ---------- DELIVERY MESSAGE ---------- */
.delivery-message {
    background: var(--coffee-dark);
    color: var(--off-white);
    text-align: center;
    padding: 1rem 1.5rem;
    border-radius: 60px;
    margin: 1.5rem 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    box-shadow: 0 4px 20px rgba(61, 43, 31, 0.2);
    border: 2px solid var(--coffee-gold);
}

.delivery-message i {
    font-size: 1.5rem;
    color: var(--coffee-gold);
}

.delivery-message p {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

/* ---------- BOOKING BANNER ---------- */
.booking-banner {
    background: var(--coffee-cream);
    color: var(--coffee-dark);
    text-align: center;
    padding: 0.6rem 1.2rem;
    border-radius: 60px;
    margin: 1.2rem 0;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    border: 2px solid var(--coffee-gold);
}

.booking-banner i {
    color: var(--coffee-dark);
    font-size: 1.1rem;
}

.booking-banner strong {
    color: var(--coffee-dark);
}

/* ---------- QUICK BOOKING (Contact Page) ---------- */
.quick-booking {
    background: var(--warm-white);
    padding: 1.2rem;
    border-radius: 28px;
    margin: 1.2rem 0;
    border: 2px solid var(--coffee-cream);
    text-align: center;
}

.quick-booking h3 {
    color: var(--coffee-dark);
    margin-bottom: 0.4rem;
    font-size: 1.2rem;
}

.quick-booking h3 i {
    color: var(--coffee-dark);
    margin-right: 0.5rem;
}

.quick-booking p {
    color: var(--coffee-light);
    margin-bottom: 0.8rem;
}

.booking-buttons {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
}

.booking-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--coffee-dark);
    color: var(--off-white);
    padding: 0.5rem 1.2rem;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    font-size: 0.9rem;
}

.booking-btn:hover {
    background: var(--coffee-medium);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61, 43, 31, 0.2);
}

.booking-btn i {
    color: var(--coffee-gold);
}

/* ---------- HEADER / NAV LAYOUT ---------- */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.6rem 0 0.4rem;
    border-bottom: 3px solid var(--coffee-cream);
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--coffee-dark);
    letter-spacing: -0.5px;
}

.logo span {
    font-weight: 300;
    color: var(--coffee-light);
    font-size: 0.75rem;
    display: block;
    margin-top: -4px;
}

/* ---------- LOGO IMAGE ---------- */
.logo-img {
    height: 42px;
    width: auto;
    border-radius: 6px;
    display: block;
}

/* ---------- FLOATING WHATSAPP ICON ---------- */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: 0.3s ease;
    z-index: 1000;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
    color: #fff;
}

/* ---------- CART TOAST NOTIFICATION ---------- */
.cart-toast {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: var(--coffee-dark);
    color: var(--off-white);
    padding: 0.8rem 1.5rem;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 999;
    font-size: 0.95rem;
}

.cart-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.cart-toast i {
    color: #4CAF50;
    font-size: 1.2rem;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: var(--coffee-dark);
    color: var(--off-white);
    padding: 0.7rem 1.8rem;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 1rem;
}

.btn-primary:hover {
    background: var(--coffee-medium);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(61, 43, 31, 0.3);
}

/* ---------- HERO ---------- */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 2.2rem 0 2rem;
    gap: 2rem;
}

.hero-text {
    flex: 1 1 380px;
}

.hero-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--coffee-dark);
    line-height: 1.2;
}

.highlight-town {
    background: var(--coffee-cream);
    padding: 0 0.3rem;
    border-radius: 4px;
}

.hero-text .highlight {
    background: var(--coffee-cream);
    padding: 0.1rem 0.6rem;
    display: inline-block;
    border-radius: 30px;
    font-weight: 300;
    font-size: 1rem;
    margin-top: 0.4rem;
}

.hero-text p {
    font-size: 1.1rem;
    margin: 1rem 0 0.6rem;
    color: var(--coffee-light);
}

/* ---------- HERO IMAGE WITH OVERLAY ---------- */
.hero-image {
    flex: 1 1 380px;
    max-width: 580px;
    border-radius: 60px 20px 60px 20px;
    padding: 0;
    box-shadow: 0 20px 30px -10px rgba(61, 43, 31, 0.2);
    text-align: center;
    min-height: 280px;
    max-height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 280px;
    max-height: 380px;
    display: block;
}

/* Dark overlay to make text readable */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    pointer-events: none;
    z-index: 1;
}

.hero-image .garden-label {
    position: absolute;
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: #FFFFFF;
    background: rgba(0, 0, 0, 0.45);
    padding: 0.2rem 1.4rem;
    border-radius: 60px;
    backdrop-filter: blur(2px);
    bottom: 60px;
    z-index: 2;
}

.hero-location {
    position: absolute;
    font-size: 0.75rem;
    color: #FFFFFF;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.2rem 1rem;
    border-radius: 40px;
    bottom: 18px;
    z-index: 2;
}

/* ---------- FEATURES GRID ---------- */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.8rem;
    margin: 2.5rem 0 3rem;
}

.feature-card {
    background: var(--warm-white);
    padding: 1.5rem 1.2rem;
    border-radius: 36px;
    box-shadow: 0 12px 22px -8px rgba(61, 43, 31, 0.06);
    transition: all 0.15s;
    border: 1px solid var(--coffee-cream);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--coffee-gold);
    box-shadow: 0 20px 28px -12px var(--coffee-light);
}

.feature-card i {
    font-size: 2.2rem;
    color: var(--coffee-dark);
    background: var(--coffee-cream);
    padding: 0.6rem;
    border-radius: 60px;
    margin-bottom: 0.8rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--coffee-dark);
}

.feature-card p {
    color: var(--coffee-light);
    margin-top: 0.4rem;
    font-size: 0.95rem;
}

/* ---------- COMING SOON SECTION ---------- */
.coming-soon {
    margin: 3rem 0 2rem;
}

.coming-soon-intro {
    text-align: center;
    color: var(--coffee-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.coming-soon-card {
    background: var(--warm-white);
    padding: 2rem 1.5rem;
    border-radius: 28px;
    text-align: center;
    border: 2px dashed var(--coffee-gold);
    transition: 0.3s;
}

.coming-soon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(61, 43, 31, 0.08);
}

.coming-soon-card i {
    font-size: 3rem;
    color: var(--coffee-gold);
    margin-bottom: 1rem;
}

.coming-soon-card h3 {
    font-size: 1.3rem;
    color: var(--coffee-dark);
    margin-bottom: 0.5rem;
}

.coming-soon-card p {
    color: var(--coffee-light);
}

/* ---------- LOCATION SECTION ---------- */
.location-section {
    background: var(--coffee-cream);
    border-radius: 50px;
    padding: 1.5rem 2rem;
    margin: 2rem 0 2.2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
}

.location-text {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.location-text i {
    font-size: 2.4rem;
    color: var(--coffee-dark);
}

.location-text div {
    font-size: 1.1rem;
}

.location-text .town {
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--coffee-dark);
}

.location-cta {
    background: var(--coffee-dark);
    color: var(--off-white);
    padding: 0.5rem 1.8rem;
    border-radius: 60px;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: 0.2s;
    cursor: default;
    border: none;
    font-size: 0.95rem;
}

.location-cta i {
    font-size: 1.1rem;
}

/* ---------- GREETING MESSAGE ---------- */
.greeting-message {
    text-align: center;
    background: var(--warm-white);
    border-radius: 60px;
    padding: 0.6rem 1rem;
    margin: 0.6rem 0 1rem;
    border: 1px solid var(--coffee-cream);
}

.greeting-message i {
    color: var(--coffee-dark);
    margin-right: 10px;
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(61, 43, 31, 0.92);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox.show {
    display: flex;
}

.lightbox-content {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    border-radius: 12px;
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 50px;
    color: var(--off-white);
    font-size: 3.5rem;
    font-weight: 300;
    cursor: pointer;
    transition: 0.2s;
}

.close-lightbox:hover {
    color: var(--coffee-cream);
}

.lightbox-caption {
    color: var(--off-white);
    margin-top: 1.2rem;
    font-size: 1.1rem;
    background: rgba(61, 43, 31, 0.7);
    padding: 0.5rem 2rem;
    border-radius: 40px;
}

/* ---------- FOOTER ---------- */
.footer {
    border-top: 3px solid var(--coffee-cream);
    padding: 1.5rem 0 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    color: var(--coffee-light);
    font-size: 0.95rem;
}

.footer i {
    margin: 0 0.2rem;
    color: var(--coffee-dark);
}

.footer .credit {
    font-size: 0.9rem;
}

.footer .fa-heart {
    color: #8B5A2B;
}

/* ============================================================
   VERTICAL NAVIGATION (BOTTOM - STACKED VERTICALLY)
   ============================================================ */

.nav-wrapper-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0 0.5rem;
    margin-top: 0.5rem;
}

.vertical-nav-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: var(--warm-white);
    padding: 1rem 1.5rem;
    border-radius: 20px;
    border: 2px solid var(--coffee-cream);
    box-shadow: 0 4px 15px rgba(61, 43, 31, 0.06);
    width: 100%;
    max-width: 350px;
}

.vertical-nav-bottom .nav-item-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    border-radius: 60px;
    text-decoration: none;
    color: var(--coffee-dark);
    font-size: 0.95rem;
    font-weight: 500;
    transition: 0.3s ease;
    border: 2px solid transparent;
    background: var(--off-white);
    width: 100%;
    max-width: 250px;
}

.vertical-nav-bottom .nav-item-bottom:hover {
    background: var(--coffee-cream);
    border-color: var(--coffee-gold);
}

.vertical-nav-bottom .nav-item-bottom.active {
    background: var(--coffee-dark);
    color: var(--off-white);
    border-color: var(--coffee-dark);
    box-shadow: 0 4px 15px rgba(61, 43, 31, 0.2);
}

.vertical-nav-bottom .nav-item-bottom i {
    font-size: 1.1rem;
    width: 22px;
    text-align: center;
    color: var(--coffee-gold);
}

.vertical-nav-bottom .nav-item-bottom.active i {
    color: var(--off-white);
}

.vertical-nav-bottom .nav-item-bottom .cart-count {
    background: var(--coffee-gold);
    color: var(--coffee-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.1rem 0.5rem;
    border-radius: 50%;
    min-width: 20px;
    text-align: center;
    line-height: 1.4;
    display: inline-block;
    margin-left: 0.2rem;
}

.vertical-nav-bottom .nav-item-bottom.active .cart-count {
    background: var(--off-white);
    color: var(--coffee-dark);
}

/* ============================================================
   ABOUT PAGE STYLES
   ============================================================ */

/* ---------- PAGE HERO ---------- */
.page-hero {
    text-align: center;
    padding: 2rem 0 1.2rem;
    border-bottom: 2px solid var(--coffee-cream);
    margin-bottom: 2rem;
}

.page-hero h1 {
    font-size: 2.5rem;
    color: var(--coffee-dark);
    font-weight: 600;
}

.page-hero h1 i {
    color: var(--coffee-dark);
    margin-right: 0.8rem;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--coffee-light);
    margin-top: 0.3rem;
}

/* ---------- ABOUT GRID ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin: 1.5rem 0 2.5rem;
    align-items: start;
}

.about-text h2 {
    font-size: 1.8rem;
    color: var(--coffee-dark);
    margin-bottom: 1rem;
}

.about-text h2 i {
    color: var(--coffee-dark);
    margin-right: 0.6rem;
}

.about-text p {
    font-size: 1rem;
    color: var(--coffee-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: var(--coffee-cream);
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    flex: 1;
    min-width: 80px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--coffee-dark);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--coffee-light);
}

.about-image {
    background: var(--coffee-cream);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(61, 43, 31, 0.08);
    max-height: 360px;
}

.about-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.image-caption {
    padding: 0.6rem;
    text-align: center;
    color: var(--coffee-light);
    font-style: italic;
    font-size: 0.9rem;
}

/* ---------- OFFER SECTION ---------- */
.offer-section {
    margin: 2.5rem 0;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.2rem;
}

.offer-card {
    background: var(--warm-white);
    padding: 1.5rem;
    border-radius: 28px;
    text-align: center;
    border: 1px solid var(--coffee-cream);
    transition: 0.3s;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(61, 43, 31, 0.08);
}

.offer-card i {
    font-size: 2.2rem;
    color: var(--coffee-dark);
    background: var(--coffee-cream);
    padding: 0.6rem;
    border-radius: 60px;
    margin-bottom: 0.8rem;
}

.offer-card h3 {
    font-size: 1.1rem;
    color: var(--coffee-dark);
    margin-bottom: 0.4rem;
}

.offer-card p {
    color: var(--coffee-light);
    font-size: 0.9rem;
}

/* ---------- WHY CHOOSE SECTION ---------- */
.why-choose {
    margin: 3rem 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.8rem 2rem;
    background: var(--warm-white);
    padding: 2rem;
    border-radius: 28px;
    border: 1px solid var(--coffee-cream);
}

.why-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    color: var(--coffee-dark);
    font-size: 1rem;
}

.why-item i {
    color: var(--coffee-gold);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

/* ---------- EXPERIENCE SECTION ---------- */
.experience-section {
    background: var(--coffee-dark);
    color: var(--off-white);
    border-radius: 50px;
    padding: 3rem 2.5rem;
    margin: 2.5rem 0 2.8rem;
    text-align: center;
}

.experience-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.experience-content h2 i {
    color: var(--coffee-gold);
    margin-right: 0.5rem;
}

.experience-content p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 1.5rem;
    opacity: 0.9;
}

.experience-content .btn-primary {
    background: var(--coffee-gold);
    color: var(--coffee-dark);
}

.experience-content .btn-primary:hover {
    background: var(--off-white);
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
    margin: 2.5rem 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--warm-white);
    padding: 1.5rem;
    border-radius: 28px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--coffee-cream);
}

.testimonial-card .stars {
    color: #B8956A;
    margin-bottom: 0.6rem;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: var(--coffee-light);
    font-style: italic;
    margin-bottom: 0.8rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--coffee-dark);
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--coffee-light);
}

/* ============================================================
   CONTACT PAGE STYLES
   ============================================================ */

/* ---------- CONTACT GRID ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2.5rem;
    margin: 1.5rem 0 2.5rem;
}

/* ---------- CONTACT FORM ---------- */
.contact-form-wrapper h2 {
    font-size: 1.6rem;
    color: var(--coffee-dark);
    margin-bottom: 1.2rem;
}

.contact-form-wrapper h2 i {
    color: var(--coffee-dark);
    margin-right: 0.6rem;
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form label {
    display: block;
    font-weight: 500;
    color: var(--coffee-dark);
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.contact-form label i {
    color: var(--coffee-dark);
    margin-right: 0.4rem;
    width: 1.2rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 2px solid var(--coffee-cream);
    border-radius: 16px;
    font-size: 0.95rem;
    background: var(--warm-white);
    transition: 0.2s;
    color: var(--text-dark);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--coffee-dark);
    box-shadow: 0 0 0 4px rgba(61, 43, 31, 0.1);
}

.contact-form textarea {
    resize: vertical;
}

.form-status {
    margin-top: 0.8rem;
    padding: 0.6rem;
    border-radius: 16px;
    display: none;
}

.form-status.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ---------- CONTACT INFO ---------- */
.contact-info h2 {
    font-size: 1.6rem;
    color: var(--coffee-dark);
    margin-bottom: 1.2rem;
}

.contact-info h2 i {
    color: var(--coffee-dark);
    margin-right: 0.6rem;
}

.info-item {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.info-item i {
    font-size: 1.2rem;
    color: var(--coffee-dark);
    width: 1.8rem;
    padding-top: 0.2rem;
}

.info-item strong {
    display: block;
    color: var(--coffee-dark);
    font-size: 0.95rem;
}

.info-item p {
    color: var(--coffee-light);
    margin: 0.2rem 0;
    font-size: 0.95rem;
}

/* ---------- DIRECTIONS BOX ---------- */
.directions-box {
    background: var(--coffee-cream);
    padding: 1.2rem;
    border-radius: 28px;
    margin: 1.2rem 0;
}

.directions-box h3 {
    color: var(--coffee-dark);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.directions-box h3 i {
    color: var(--coffee-dark);
    margin-right: 0.5rem;
}

.direction-step {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
}

.step-number {
    background: var(--coffee-dark);
    color: var(--off-white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.direction-step p {
    color: var(--coffee-dark);
    font-size: 0.95rem;
}

/* ---------- SOCIAL LINKS ---------- */
.social-links h3 {
    color: var(--coffee-dark);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.social-links h3 i {
    color: var(--coffee-dark);
    margin-right: 0.5rem;
}

.social-icons {
    display: flex;
    gap: 0.8rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--coffee-cream);
    border-radius: 50%;
    color: var(--coffee-dark);
    font-size: 1.1rem;
    transition: 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--coffee-dark);
    color: var(--off-white);
    transform: translateY(-3px);
}

/* ---------- MAP SECTION ---------- */
.map-section {
    margin: 2.5rem 0;
}

.map-placeholder {
    background: var(--coffee-cream);
    border-radius: 40px;
    padding: 2.5rem 1.8rem;
    text-align: center;
    border: 2px dashed var(--coffee-gold);
}

.map-placeholder i {
    font-size: 3.5rem;
    color: var(--coffee-dark);
    margin-bottom: 0.8rem;
}

.map-placeholder p {
    font-size: 1rem;
    color: var(--coffee-dark);
}

.map-placeholder .map-directions {
    color: var(--coffee-light);
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

.map-badge {
    display: inline-block;
    background: var(--coffee-dark);
    color: var(--off-white);
    padding: 0.3rem 1.5rem;
    border-radius: 60px;
    margin-top: 0.8rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.map-badge i {
    font-size: 0.9rem;
    margin-right: 0.4rem;
}

/* ---------- MAP LINK STYLES ---------- */
.map-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
    cursor: pointer;
}

.map-link:hover {
    transform: scale(1.01);
}

.map-link:hover .map-click-hint {
    color: var(--coffee-dark);
    background: var(--coffee-cream);
}

.map-click-hint {
    display: inline-block;
    margin-top: 0.8rem;
    padding: 0.4rem 1.2rem;
    background: var(--warm-white);
    border-radius: 60px;
    font-size: 0.85rem;
    color: var(--coffee-light);
    transition: 0.3s ease;
    border: 1px solid var(--coffee-cream);
}

.map-click-hint i {
    margin-right: 0.4rem;
}

/* ============================================================
   MENU IMAGE SLIDESHOW STYLES
   ============================================================ */

.menu-section {
    margin: 2rem 0 1.5rem;
    padding: 1.2rem 0.8rem;
    background: var(--warm-white);
    border-radius: 30px;
    border: 1px solid var(--coffee-cream);
}

.menu-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: var(--off-white);
    padding: 0.3rem;
    min-height: 180px;
    max-width: 650px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-slide {
    display: none;
    width: 100%;
    animation: fadeSlide 0.5s ease;
}

.menu-slide.active {
    display: block;
}

.menu-slide-img {
    width: 100%;
    height: auto;
    max-height: 340px;
    object-fit: contain;
    border-radius: 12px;
    display: block;
    background: var(--warm-white);
}

@keyframes fadeSlide {
    0% {
        opacity: 0;
        transform: scale(0.98);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--coffee-dark);
    color: var(--off-white);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 0.7rem;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(61, 43, 31, 0.2);
}

.carousel-btn:hover {
    background: var(--coffee-medium);
    transform: translateY(-50%) scale(1.05);
}

.prev-btn {
    left: 6px;
}

.next-btn {
    right: 6px;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.6rem;
    flex-wrap: wrap;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--coffee-cream);
    border: none;
    cursor: pointer;
    transition: 0.3s;
    padding: 0;
}

.dot:hover {
    background: var(--coffee-light);
}

.dot.active {
    background: var(--coffee-dark);
    transform: scale(1.2);
}

/* ============================================================
   MENU GRID STYLES
   ============================================================ */

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.menu-card {
    background: var(--warm-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--coffee-cream);
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(61, 43, 31, 0.12);
}

.menu-card-image {
    width: 100%;
    height: 140px;
    object-fit: cover;
    background: var(--coffee-cream);
}

.menu-card-body {
    padding: 0.8rem 1rem 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu-card-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--coffee-dark);
    margin-bottom: 0.2rem;
}

.menu-card-desc {
    font-size: 0.75rem;
    color: var(--coffee-light);
    margin-bottom: 0.4rem;
    flex: 1;
    line-height: 1.3;
}

.menu-card-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--coffee-dark);
    margin-bottom: 0.6rem;
}

.menu-card .btn-add-cart {
    background: var(--coffee-dark);
    color: var(--off-white);
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
}

.menu-card .btn-add-cart:hover {
    background: var(--coffee-medium);
    transform: scale(1.02);
}

.menu-card .btn-add-cart:active {
    transform: scale(0.95);
}

.menu-card .btn-add-cart i {
    font-size: 0.8rem;
}

/* ============================================================
   MENU TABS
   ============================================================ */

.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1.5rem 0 2rem;
    justify-content: center;
}

.tab-btn {
    background: var(--warm-white);
    color: var(--coffee-medium);
    border: 2px solid var(--coffee-cream);
    padding: 0.4rem 1rem;
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

.tab-btn:hover {
    border-color: var(--coffee-gold);
    color: var(--coffee-dark);
}

.tab-btn.active {
    background: var(--coffee-dark);
    color: var(--off-white);
    border-color: var(--coffee-dark);
}

/* ============================================================
   CART PAGE STYLES
   ============================================================ */

.cart-page {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin: 2rem 0 3rem;
}

.cart-items-empty {
    text-align: center;
    padding: 3rem 1rem;
    background: var(--warm-white);
    border-radius: 30px;
    border: 2px dashed var(--coffee-cream);
}

.cart-items-empty i {
    font-size: 3rem;
    color: var(--coffee-cream);
    margin-bottom: 1rem;
}

.cart-items-empty h3 {
    color: var(--coffee-light);
    margin-bottom: 0.5rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--coffee-cream);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 12px;
    background: var(--coffee-cream);
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    font-size: 0.95rem;
    color: var(--coffee-dark);
}

.cart-item-info p {
    font-size: 0.85rem;
    color: var(--coffee-light);
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-item-qty button {
    background: var(--coffee-cream);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    color: var(--coffee-dark);
    font-weight: 700;
}

.cart-item-qty button:hover {
    background: var(--coffee-gold);
}

.cart-item-qty span {
    font-weight: 600;
    min-width: 24px;
    text-align: center;
    color: var(--coffee-dark);
}

.cart-item-remove {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    font-size: 1.1rem;
    transition: 0.3s;
    padding: 0.3rem;
}

.cart-item-remove:hover {
    transform: scale(1.2);
}

/* ---------- CART SUMMARY ---------- */
.cart-summary {
    background: var(--warm-white);
    padding: 1.5rem;
    border-radius: 28px;
    border: 1px solid var(--coffee-cream);
    align-self: start;
    position: sticky;
    top: 20px;
}

.cart-summary h3 {
    font-size: 1.3rem;
    color: var(--coffee-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--coffee-cream);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    color: var(--coffee-light);
    font-size: 0.95rem;
}

.cart-summary-row.total {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--coffee-dark);
    border-top: 2px solid var(--coffee-cream);
    padding-top: 0.8rem;
    margin-top: 0.5rem;
}

.btn-place-order {
    width: 100%;
    background: var(--coffee-dark);
    color: var(--off-white);
    border: none;
    padding: 0.8rem;
    border-radius: 60px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.btn-place-order:hover {
    background: var(--coffee-medium);
    transform: scale(1.02);
}

.btn-place-order:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* ============================================================
   RESPONSIVE STYLES
   ============================================================ */

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-image img {
        height: 250px;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .slogan-banner {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }

    .coming-soon-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
        padding: 1.2rem;
    }

    .experience-section {
        padding: 2rem 1.2rem;
        border-radius: 30px;
    }

    .experience-content h2 {
        font-size: 1.5rem;
    }

    .experience-content p {
        font-size: 1rem;
    }

    .delivery-message {
        padding: 0.8rem 1.2rem;
    }

    .delivery-message p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .vertical-nav-bottom {
        padding: 0.8rem 1rem;
        gap: 0.4rem;
        max-width: 280px;
        border-radius: 16px;
    }

    .vertical-nav-bottom .nav-item-bottom {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        max-width: 200px;
    }

    .vertical-nav-bottom .nav-item-bottom i {
        font-size: 1rem;
        width: 20px;
    }

    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1rem;
    }

    .menu-card-image {
        height: 110px;
    }

    .menu-card-body {
        padding: 0.6rem 0.8rem 0.8rem;
    }

    .menu-card-title {
        font-size: 0.85rem;
    }

    .menu-card-price {
        font-size: 0.9rem;
    }

    .menu-card .btn-add-cart {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }

    .menu-carousel {
        min-height: 150px;
        max-width: 100%;
        padding: 0.2rem;
    }

    .menu-slide-img {
        max-height: 250px;
    }

    .carousel-btn {
        width: 26px;
        height: 26px;
        font-size: 0.6rem;
    }

    .menu-section {
        padding: 0.8rem 0.5rem;
        border-radius: 20px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .cart-page {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }

    .menu-tabs {
        gap: 0.4rem;
    }

    .tab-btn {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }

    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
        bottom: 20px;
        right: 20px;
    }

    .coming-soon-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
        padding: 1.2rem;
    }

    .experience-section {
        padding: 2rem 1.2rem;
        border-radius: 30px;
    }

    .experience-content h2 {
        font-size: 1.5rem;
    }

    .experience-content p {
        font-size: 1rem;
    }

    .delivery-message {
        padding: 0.6rem 1rem;
        gap: 0.6rem;
        border-radius: 40px;
        margin: 1rem 0 1.5rem;
    }

    .delivery-message i {
        font-size: 1.2rem;
    }

    .delivery-message p {
        font-size: 0.9rem;
    }
}

@media (max-width: 650px) {
    .navbar {
        flex-direction: column;
        align-items: center;
        gap: 0.4rem;
        padding: 0.5rem 0 0.3rem;
    }

    .logo a {
        justify-content: center;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .logo span {
        font-size: 0.65rem;
        margin-top: -3px;
    }

    .logo-img {
        height: 34px;
    }

    .vertical-nav-bottom {
        padding: 0.6rem 0.8rem;
        gap: 0.4rem;
        max-width: 240px;
        border-radius: 14px;
    }

    .vertical-nav-bottom .nav-item-bottom {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        max-width: 180px;
    }

    .vertical-nav-bottom .nav-item-bottom i {
        font-size: 0.9rem;
        width: 18px;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .hero-image {
        min-height: 200px;
        max-height: 280px;
    }

    .hero-img {
        min-height: 200px;
        max-height: 280px;
    }

    .hero-image .garden-label {
        font-size: 1rem;
        padding: 0.1rem 0.8rem;
        bottom: 45px;
    }

    .hero-location {
        font-size: 0.6rem;
        padding: 0.1rem 0.6rem;
        bottom: 12px;
    }

    .location-section {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.2rem 1.5rem;
    }

    .page-hero h1 {
        font-size: 1.6rem;
    }

    .page-subtitle {
        font-size: 0.95rem;
    }

    .about-image img {
        height: 200px;
    }

    .slogan-banner {
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
        gap: 0.4rem;
        border-radius: 40px;
    }

    .slogan-banner i {
        font-size: 0.7rem;
    }

    .booking-banner {
        font-size: 0.85rem;
        padding: 0.5rem 0.8rem;
    }

    .booking-buttons {
        flex-direction: column;
        align-items: center;
    }

    .booking-btn {
        width: 100%;
        justify-content: center;
        font-size: 0.85rem;
    }

    .floating-whatsapp {
        width: 45px;
        height: 45px;
        font-size: 1.6rem;
        bottom: 15px;
        right: 15px;
    }

    .delivery-message {
        padding: 0.5rem 0.8rem;
        gap: 0.5rem;
        border-radius: 30px;
        margin: 0.8rem 0 1rem;
    }

    .delivery-message i {
        font-size: 1rem;
    }

    .delivery-message p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.8rem;
    }

    .logo a {
        gap: 0.4rem;
        justify-content: center;
    }

    .logo h1 {
        font-size: 1rem;
    }

    .logo span {
        font-size: 0.55rem;
        margin-top: -2px;
    }

    .logo-img {
        height: 28px;
    }

    .vertical-nav-bottom {
        padding: 0.5rem 0.6rem;
        gap: 0.3rem;
        max-width: 200px;
        border-radius: 12px;
    }

    .vertical-nav-bottom .nav-item-bottom {
        font-size: 0.7rem;
        padding: 0.35rem 0.6rem;
        max-width: 160px;
        gap: 0.3rem;
        border-radius: 30px;
    }

    .vertical-nav-bottom .nav-item-bottom i {
        font-size: 0.8rem;
        width: 16px;
    }

    .vertical-nav-bottom .nav-item-bottom .cart-count {
        font-size: 0.6rem;
        min-width: 16px;
        padding: 0.05rem 0.3rem;
    }

    .hero-text h2 {
        font-size: 1.6rem;
    }

    .hero-image {
        min-height: 160px;
        max-height: 220px;
    }

    .hero-img {
        min-height: 160px;
        max-height: 220px;
    }

    .hero-image .garden-label {
        font-size: 0.8rem;
        padding: 0.1rem 0.6rem;
        bottom: 35px;
    }

    .hero-location {
        font-size: 0.5rem;
        padding: 0.1rem 0.5rem;
        bottom: 10px;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .feature-card {
        padding: 1rem;
    }

    .footer {
        flex-direction: column;
        text-align: center;
        gap: 0.4rem;
        font-size: 0.8rem;
    }

    .slogan-banner {
        font-size: 0.7rem;
        padding: 0.3rem 0.5rem;
        gap: 0.2rem;
        border-radius: 30px;
    }

    .slogan-banner i {
        font-size: 0.6rem;
    }

    .booking-banner {
        font-size: 0.7rem;
        padding: 0.4rem 0.6rem;
        gap: 0.3rem;
    }

    .booking-banner i {
        font-size: 0.7rem;
    }

    .menu-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
    }

    .menu-card-image {
        height: 90px;
    }

    .menu-card-body {
        padding: 0.4rem 0.5rem 0.6rem;
    }

    .menu-card-title {
        font-size: 0.75rem;
    }

    .menu-card-desc {
        font-size: 0.65rem;
        display: none;
    }

    .menu-card-price {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }

    .menu-card .btn-add-cart {
        font-size: 0.65rem;
        padding: 0.3rem 0.4rem;
    }

    .menu-card .btn-add-cart i {
        font-size: 0.7rem;
    }

    .menu-carousel {
        min-height: 120px;
        padding: 0.15rem;
    }

    .menu-slide-img {
        max-height: 200px;
    }

    .carousel-btn {
        width: 22px;
        height: 22px;
        font-size: 0.5rem;
    }

    .prev-btn {
        left: 4px;
    }

    .next-btn {
        right: 4px;
    }

    .dot {
        width: 6px;
        height: 6px;
    }

    .menu-section {
        padding: 0.5rem 0.3rem;
        border-radius: 16px;
        margin: 0.8rem 0;
    }

    .location-text .town {
        font-size: 1.1rem;
    }

    .location-text div {
        font-size: 0.9rem;
    }

    .location-cta {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }

    .map-placeholder i {
        font-size: 2.5rem;
    }

    .map-placeholder p {
        font-size: 0.85rem;
    }

    .map-badge {
        font-size: 0.75rem;
        padding: 0.2rem 1rem;
    }

    .map-click-hint {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }

    .cart-item {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .cart-item-img {
        width: 50px;
        height: 50px;
    }

    .floating-whatsapp {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
        bottom: 12px;
        right: 12px;
    }

    .cart-toast {
        bottom: 70px;
        right: 15px;
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
        max-width: 200px;
    }

    .coming-soon-grid {
        grid-template-columns: 1fr;
    }

    .coming-soon-card {
        padding: 1.2rem;
    }

    .coming-soon-card i {
        font-size: 2.2rem;
    }

    .coming-soon-card h3 {
        font-size: 1.1rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
        padding: 0.8rem;
        gap: 0.3rem;
    }

    .why-item {
        font-size: 0.9rem;
        padding: 0.3rem 0;
    }

    .experience-section {
        padding: 1.2rem 0.8rem;
        border-radius: 20px;
    }

    .experience-content h2 {
        font-size: 1.1rem;
    }

    .experience-content p {
        font-size: 0.85rem;
    }

    .about-stats {
        gap: 0.5rem;
    }

    .stat-item {
        min-width: 60px;
        padding: 0.5rem 0.8rem;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .install-banner {
        padding: 12px 14px;
    }

    .banner-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .banner-text h4 {
        font-size: 0.8rem;
    }

    .banner-text p {
        font-size: 0.7rem;
    }

    .btn-install {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .btn-not-now {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .banner-close {
        font-size: 1.3rem;
    }

    body {
        padding-bottom: 150px;
    }

    .delivery-message {
        padding: 0.4rem 0.6rem;
        gap: 0.3rem;
        border-radius: 25px;
        margin: 0.6rem 0 0.8rem;
    }

    .delivery-message i {
        font-size: 0.9rem;
    }

    .delivery-message p {
        font-size: 0.7rem;
    }
}

@media (max-width: 400px) {
    .install-banner {
        padding: 10px 12px;
    }

    .banner-content {
        gap: 8px;
    }

    .banner-icon {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .banner-text h4 {
        font-size: 0.7rem;
    }

    .banner-text p {
        font-size: 0.6rem;
    }

    .btn-install {
        font-size: 0.7rem;
        padding: 5px 12px;
    }

    .btn-not-now {
        font-size: 0.65rem;
        padding: 4px 8px;
    }

    body {
        padding-bottom: 140px;
    }
}
