/* =========================================
   1. RESET & ASAS
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
    overflow-x: hidden; /* Elak scroll tepi */
}

/* =========================================
   BOTTOM BAR (VERSI FIX - STABIL DI MOBILE)
   ========================================= */
.bottom-bar {
    position: fixed !important;
    bottom: 20px !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important; /* Centerkan secara automatik tanpa transform */
    width: 90% !important;
    max-width: 400px !important;
    height: 62px !important;
    background: #d60000 !important;
    border-radius: 50px !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    align-items: center !important;
    z-index: 10000 !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3) !important;
    transform: none !important; /* FIX: Padam transform supaya tak lari ke tepi */
    opacity: 1 !important;
    padding: 0 10px !important;
}

.bottom-bar__btn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    height: 100%;
}

.bb-icon svg { width: 22px; height: 22px; stroke: #fff; }
.bb-label { font-size: 10px; font-weight: 700; text-transform: uppercase; margin-top: 2px; }

.bb-badge {
    position: absolute;
    top: 5px;
    right: 15%;
    background: #ffffff;
    color: #d60000;
    font-size: 10px;
    font-weight: 900;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FIX KATEGORI STICKY */
.menu-top {
    position: sticky !important;
    top: 0 !important;
    z-index: 999 !important;
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(0,0,0,0.05) !important;
}

/* FIX OVERLAY MENU */
.menu-sheet {
    position: fixed !important;
    inset: 0 !important;
    z-index: 20000 !important; /* Atas daripada bar */
}

.menu-sheet__panel {
    z-index: 20001 !important;
}

.ms-chip.is-active {
    background: #d60000 !important;
    color: #fff !important;
    border-color: #d60000 !important;
}



.menu-chips {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    white-space: nowrap;
    padding: 5px 15px;
    scrollbar-width: none;
}
.menu-chips::-webkit-scrollbar { display: none; }

.menu-chip {
    flex: 0 0 auto;
    background: #fff;
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    color: #444;
    cursor: pointer;
}

/* Highlight Kategori yang sedang dilihat */
.menu-chip.is-active {
    background: #d60000 !important;
    color: #fff !important;
    border-color: #d60000 !important;
    transform: scale(1.05);
}

/* Ruang bawah tambahan untuk mobile */
@media (max-width: 768px) {
    body { padding-bottom: 100px; }
}

html {
    scroll-behavior: smooth;
}

/* =========================================
   2. HEADER & NAVIGATION
   ========================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0; 
    transition: all 0.4s ease;
    background: transparent !important;
    box-shadow: none !important;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- LOGO STYLE (SWAP LOGIC) --- */
.brand {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.brand .logo-img {
    height: 50px; /* Saiz logo */
    width: auto;
    display: block;
    object-fit: contain;
}

/* Logic tukar logo bila scroll */
.logo-scrolled { display: none !important; }

header.scrolled .logo-initial { display: none !important; }
header.scrolled .logo-scrolled { display: block !important; }

/* Sembunyikan Header bila scroll (Optional - supaya kategori tak bertindan) */
header.scrolled {
    transform: translateY(-100%); /* Sembunyi navbar asal supaya kategori ada ruang */
}



/* --- DESKTOP MENU --- */
.desktop-menu ul {
    list-style: none;
    display: flex;
}

.desktop-menu ul li { margin: 0 20px; }

.desktop-menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: 0.3s;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    text-transform: uppercase;
}

.desktop-menu a:hover {
    color: #ff9f43;
    opacity: 1;
}

/* --- HAMBURGER MENU (MOBILE) --- */
.nav-extras {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hamburger {
    cursor: pointer;
    display: none; /* Hidden di PC */
    flex-direction: column;
    gap: 6px;
}

.bar {
    width: 30px;
    height: 4px;
    background-color: #d60000;
    border-radius: 5px;
    transition: 0.3s;
    box-shadow: 0 1px 2px rgba(255,255,255,0.8);
}

/* --- MOBILE MENU OVERLAY --- */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #1a1a1a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out;
}

.mobile-menu-overlay.active { transform: translateY(0); }

.mobile-menu-overlay ul { list-style: none; text-align: center; }
.mobile-menu-overlay li { margin: 25px 0; }

.mobile-menu-overlay a {
    color: white;
    font-size: 1.8rem;
    font-family: 'Montserrat', sans-serif; 
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: 0.3s;
}

.mobile-menu-overlay a:hover { color: #d3a971; }

.close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
}

/* =========================================
   3. HERO SLIDER SECTION
   ========================================= */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slider-container {
    display: flex;
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 5;
    width: 90%;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 400;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3);
    color: white;
    border: none;
    padding: 20px 15px;
    cursor: pointer;
    font-size: 24px;
    transition: 0.3s;
    z-index: 10;
    border-radius: 5px;
}

.prev { left: 20px; }
.next { right: 20px; }
.prev:hover, .next:hover { background: rgba(0,0,0,0.8); }

/* =========================================
   4. MENU PREVIEW SECTION
   ========================================= */
.menu-preview {
    background-color: white;
    color: black;
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.retro-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
    line-height: 1;
}

.retro-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 50px;
    color: #333;
}

.btn-retro-red {
    display: inline-block;
    background-color: #d60000;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    padding: 18px 40px;
    letter-spacing: 2px;
    border: 2px solid black;
    box-shadow: 6px 6px 0px black; 
    transition: all 0.2s ease;
}

.btn-retro-red:hover {
    background-color: #ff1f1f;
    transform: translateY(-2px);
    box-shadow: 8px 8px 0px black;
}

.btn-retro-red:active {
    transform: translate(4px, 4px);
    box-shadow: 2px 2px 0px black; 
}

.deco-icon {
    position: absolute;
    bottom: 30px;
    left: 30px;
    transform: rotate(-10deg);
}

/* =========================================
   5. FEATURED FOOD (ACCORDION)
   ========================================= */
.featured-food-section {
    background-color: #0c0a09;
    color: #f5f5f4;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header { text-align: center; margin-bottom: 50px; }

.elegant-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 3rem;
    margin-bottom: 15px;
    color: white;
}

.elegant-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #a8a29e;
    letter-spacing: 1px;
    font-weight: 300;
}

.accordion-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    height: 500px;
    gap: 10px;
}

.accordion-item {
    flex: 1;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    cursor: pointer;
    transition: flex 0.5s ease-in-out;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,0.4); 
}

.accordion-item.active, .accordion-item:hover {
    flex: 4;
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,0.1);
}

.accordion-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    opacity: 0;
    transition: opacity 0.3s ease 0.2s;
    color: white;
    text-align: left;
}

.accordion-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 2rem;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.accordion-item.active .accordion-content, 
.accordion-item:hover .accordion-content { opacity: 1; }

.accordion-label {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: rgba(255,255,255,0.7);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.accordion-item.active .accordion-label,
.accordion-item:hover .accordion-label { opacity: 0; }

/* =========================================
   6. CATERING SECTION
   ========================================= */
.catering-section {
    /* Pastikan path ini betul ikut folder anda */
    background-image: url('../assets/images/lebak-pattern.jpg');
    background-size: cover; 
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding: 150px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.catering-box {
    background-color: #d60000;
    padding: 60px 40px;
    max-width: 800px;
    width: 100%;
    text-align: center;
    color: white;
    border: 3px solid black;
    box-shadow: 10px 10px 0px black; 
    position: relative;
}

.catering-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 0px black;
}

.catering-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 40px;
}

.btn-retro-white {
    display: inline-block;
    background-color: white;
    color: #d60000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    padding: 18px 40px;
    letter-spacing: 1px;
    border: 2px solid black;
    box-shadow: 5px 5px 0px black;
    transition: all 0.2s ease;
}

.btn-retro-white:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 7px 7px 0px black;
}

.btn-retro-white:active {
    transform: translate(3px, 3px);
    box-shadow: 2px 2px 0px black;
}

/* =========================================
   7. 3D MARQUEE REVIEWS SECTION
   ========================================= */
.marquee-section {
    background-color: white; /* Background Putih (Ikut Prompt) */
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.section-header-dark {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.marquee-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a; /* Tajuk Gelap sebab background putih */
    text-transform: uppercase;
    margin-bottom: 10px;
}

.marquee-subtitle {
    font-family: 'Montserrat', sans-serif;
    color: #666;
    font-size: 1.1rem;
}

/* CONTAINER UTAMA */
.marquee-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    height: 600px; /* Tinggi kawasan review */
    overflow: hidden;
    position: relative;
    
    /* Efek 3D sikit */
    perspective: 1000px; 
}

/* GRADIENT PUDAR ATAS & BAWAH */
.fade-overlay-top {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 100px;
    background: linear-gradient(to bottom, white, transparent);
    z-index: 10;
}

.fade-overlay-bottom {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 100px;
    background: linear-gradient(to top, white, transparent);
    z-index: 10;
}

/* LAJUR (COLUMN) */
.marquee-column {
    flex: 1;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* Mulakan animasi */
}

/* ANIMASI GERAK */
.scroll-up {
    animation: scrollVertical 40s linear infinite;
}

.scroll-down {
    animation: scrollVerticalReverse 40s linear infinite;
}

/* =========================================
   KAD REVIEW (VERSI CERAH / OFF-WHITE)
   ========================================= */
.review-card-dark {
    /* Background: Putih kelabu sikit supaya beza dengan background belakang */
    background-color: #f8fafc; 
    border: 1px solid #e2e8f0; /* Border kelabu nipis */
    border-radius: 12px;
    padding: 25px;
    
    /* Tulisan jadi GELAP */
    color: #1a1a1a; 
    
    /* Bayang lembut supaya kad nampak timbul */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card-dark:hover {
    border-color: #d60000; /* Border jadi merah bila mouse lalu */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px); /* Naik sikit */
}

/* HEADER DALAM KAD */
.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee; /* Garis pemisah nipis */
    padding-bottom: 15px;
}

.avatar-small {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #d60000; /* Kekalkan border merah pada gambar */
}

/* NAMA & BINTANG */
.review-meta h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin: 0;
    color: #1a1a1a; /* Nama warna hitam */
    font-weight: 700;
}

.review-meta .stars {
    color: #f59e0b; /* Warna Emas/Oren sikit */
    font-size: 0.9rem;
    margin: 0;
    letter-spacing: 1px;
}

/* ISI TEXT REVIEW */
.review-body {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #4b5563; /* Warna kelabu gelap (Dark Grey) supaya selesa baca */
    line-height: 1.6;
    font-style: italic;
    font-weight: 500;
}

/* DEFINISI ANIMASI */
@keyframes scrollVertical {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); } /* Gerak separuh (sebab ada clone) */
}

@keyframes scrollVerticalReverse {
    0% { transform: translateY(-50%); }
    100% { transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .marquee-wrapper {
        gap: 10px;
        padding: 0 10px;
    }
    .desktop-only {
        display: none; /* Sorok kolum ke-3 di phone */
    }
}

/* =========================================
   8. FOOTER
   ========================================= */
footer {
    background: #111;
    color: #aaa;
    padding: 60px 20px 20px;
    margin-top: 50px;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-col h3, .footer-col h4 {
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.8rem;
}

/* =========================================
   9. GLOBAL RESPONSIVE (MOBILE ADJUSTMENTS)
   ========================================= */
@media (max-width: 900px) {
    /* Review Cards: 1 column */
    .review-card {
        min-width: 100%;
        margin: 0;
    }
    .nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0,0,0,0.5);
        border: none;
    }
    .prev-btn { left: 10px; }
    .next-btn { right: 10px; }
}

@media (max-width: 768px) {
    /* Menu & Nav */
    .desktop-menu { display: none; }
    .hamburger { display: flex; }
    
    /* Hero */
    .hero-slider { height: 80vh; }
    .hero-content h1 { font-size: 2.2rem; }
    
    /* Fonts Adjustments */
    .retro-title { font-size: 3rem; letter-spacing: 2px; }
    .elegant-title { font-size: 2.2rem; }
    .catering-title { font-size: 2rem; }
    .review-title { font-size: 2rem; }
    
    /* Catering */
    .catering-section { background-attachment: scroll; padding: 80px 20px; }
    .catering-box { padding: 40px 20px; }
    .btn-retro-white { width: 100%; font-size: 0.9rem; }
    
    /* Accordion */
    .accordion-container { flex-direction: column; height: 600px; }
    .accordion-item { width: 100%; }
    .accordion-item.active, .accordion-item:hover { flex: 3; }
    .accordion-label {
        writing-mode: horizontal-tb;
        left: 20px;
        bottom: 10px;
        transform: none;
    }
}


/* ===== bila cart open, bottom bar hilang & tak ganggu tap ===== */
body.lebak-cart-open #bottomBar{
  display: none !important;
}

#cartSheet{ z-index: 9999; }


/* ================================
   FIX: Warna Butang Cart Konsisten
   (Index Page Issue)
================================ */

/* Pastikan semua state warna sama */
.cart-btn,
.cart-btn:visited,
.cart-btn:hover,
.cart-btn:active,
.cart-btn:focus {
    background-color: #E60012 !important; /* merah pekat */
    color: #ffffff !important;
    border-color: #E60012 !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Jika cart guna <a> */
a.cart-btn {
    -webkit-tap-highlight-color: transparent;
}

/* Elak mobile auto color */
button.cart-btn {
    appearance: none;
    -webkit-appearance: none;
}

.bottom-bar .cart-btn {
    background-color: #E60012 !important;
    color: #fff !important;
}

/* ======================================
   FORCE BOTTOM BAR COLOR (ALL PAGES)
====================================== */

/* 
.bottom-bar,
.bottom-bar * {
    background-color: #E60012 !important;
}
*/


/* Button dalam bar */
.bottom-bar .menu-btn,
.bottom-bar .cart-btn,
.bottom-bar .whatsapp-btn {
    background-color: #E60012 !important;
    color: #ffffff !important;
    border: none !important;
}

/* Icon SVG / Font */
.bottom-bar svg,
.bottom-bar svg path,
.bottom-bar i {
    fill: #ffffff !important;
    color: #ffffff !important;
}

/* Cart kosong / disable state */
.bottom-bar .cart-btn:disabled,
.bottom-bar .cart-btn[aria-disabled="true"] {
    background-color: #E60012 !important;
    opacity: 0.9;
}


/* ======================================
   FORCE CART BUTTON COLOR - ALL STATES
====================================== */

.bottom-bar .cart-btn,
.bottom-bar .cart-btn:visited,
.bottom-bar .cart-btn:hover,
.bottom-bar .cart-btn:active,
.bottom-bar .cart-btn:focus,
.bottom-bar .cart-btn.disabled,
.bottom-bar .cart-btn.empty,
.bottom-bar .cart-btn[aria-disabled="true"],
.bottom-bar .cart-btn:not(.active) {
    background-color: #E60012 !important;
    color: #ffffff !important;
    opacity: 1 !important;
}

/* ======================================
   CLEAN FLAT BOTTOM BAR (NO EMBOSS)
====================================== */

.bottom-bar {
    background: #E60012 !important;
    box-shadow: none !important;
    border: none !important;
}

/* Semua butang dalam bottom bar */
.bottom-bar .menu-btn,
.bottom-bar .cart-btn,
.bottom-bar .whatsapp-btn {
    background: #E60012 !important;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
}

/* BUANG bingkai pseudo element (INI PUNCA UTAMA) */
.bottom-bar .menu-btn::before,
.bottom-bar .menu-btn::after,
.bottom-bar .cart-btn::before,
.bottom-bar .cart-btn::after,
.bottom-bar .whatsapp-btn::before,
.bottom-bar .whatsapp-btn::after {
    content: none !important;
    display: none !important;
}

/* BUANG active / pressed emboss */
.bottom-bar .menu-btn:active,
.bottom-bar .cart-btn:active,
.bottom-bar .whatsapp-btn:active {
    transform: none !important;
    box-shadow: none !important;
}

/* ======================================
   FIX WHITE GAP LEFT & RIGHT (BOTTOM BAR)
====================================== */
/*.bottom-bar {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;

    width: 100% !important;
    max-width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    border-radius: 0 !important;
    box-shadow: none !important;
    background-color: #E60012 !important;
}*/

/* =========================================================
   OVERRIDE FINAL: Bottom Bar ikut style menu.html (PILL)
   (letak paling bawah sekali)
========================================================= */

/* bar pill */
.bottom-bar{
  position: fixed !important;
  bottom: 20px !important;
  left: 0 !important;
  right: 0 !important;
  margin: 0 auto !important;

  width: 90% !important;
  max-width: 400px !important;
  height: 62px !important;

  background: #E60012 !important;
  border-radius: 50px !important;

  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  align-items: center !important;

  padding: 0 10px !important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25) !important;
  border: none !important;
  z-index: 10000 !important;

  transform: none !important; /* kekal stabil macam kod awak */
}

/* butang: jangan jadi kotak (background mesti transparent) */
.bottom-bar .bottom-bar__btn{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  text-decoration: none !important;
  color: #fff !important;
  -webkit-tap-highlight-color: transparent;
}

/* icon & label putih */
.bottom-bar .bb-icon svg{ width:22px; height:22px; stroke:#fff !important; }
.bottom-bar .bb-icon svg path{ stroke:#fff !important; fill:none !important; }
.bottom-bar .bb-label{ color:#fff !important; }

/* badge kekal cantik */
.bottom-bar .bb-badge{
  background:#fff !important;
  color:#E60012 !important;
}

/* hilangkan pseudo element kalau ada theme lama */
.bottom-bar::before,
.bottom-bar::after,
.bottom-bar .bottom-bar__btn::before,
.bottom-bar .bottom-bar__btn::after{
  content:none !important;
  display:none !important;
}





/* =========================================
   LOCATION SECTION (Lebak Cafe)
   ========================================= */
.location-section{
  padding: 70px 0 40px;
  background: #f9f9f9;
}

.location-wrap{
  width: 92%;
  max-width: 1100px;
  margin: 0 auto;
}

.location-header{
  text-align: center;
  margin-bottom: 18px;
}

.location-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 18px;
}

.location-card{
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}

.location-badge{
  display: inline-block;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #fff;
  background: #e60012;
  padding: 8px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.location-name{
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 6px;
  color: #111;
}

.location-address{
  font-size: 14.5px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 14px;
}

.location-actions{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.location-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 100%;
  border-radius: 14px;
}

.location-btn--outline{
  border: 1px solid rgba(0,0,0,0.12);
}

.location-notes{
  display: grid;
  gap: 8px;
  margin-top: 6px;
}

.location-notes .note{
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13.5px;
  color: #555;
}

.location-notes .dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e60012;
  flex: 0 0 auto;
}

.map-card{
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.map-frame{
  position: relative;
  width: 100%;
  padding-top: 70%;
  background: #fff;
}

.map-frame iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-quick{
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 12px 10px;
  font-size: 13px;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.map-quick a{
  color: #e60012;
  text-decoration: none;
  font-weight: 700;
}

.map-quick .sep{
  color: rgba(0,0,0,0.25);
}

/* Desktop layout */
@media (min-width: 900px){
  .location-grid{
    grid-template-columns: 1.05fr 1.35fr;
    align-items: stretch;
  }

  .location-actions{
    grid-template-columns: 1fr 1fr;
  }

  .map-frame{
    padding-top: 60%;
  }
}

/* FIX: Tajuk & subtitle lokasi warna merah */
#location .elegant-title,
#location .elegant-subtitle{
  color: #e60012 !important;
}


