/* ═══════════════════════════════════════════════════
   MELIA BAKERY — Premium Landing Page Styles
   ═══════════════════════════════════════════════════ */

/* ── Design Tokens ──────────────────────────────── */
:root {
    --teal: #143534;
    --teal-dark: #143534;
    --teal-light: #1c4847;
    --gold: #CEAB2F;
    --gold-light: #dfc45a;
    --gold-dark: #b8971e;
    --white: #ffffff;
    --cream: #FAF7F0;
    --cream-dark: #f0ead8;
    --text-dark: #1a1a1a;
    --text-muted: #6b6b6b;
    --serif: 'Playfair Display', 'Georgia', serif;
    --sans: 'DM Sans', 'Segoe UI', 'Myriad Pro', sans-serif;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 8px 32px rgba(21, 53, 52, 0.12);
    --shadow-lg: 0 20px 60px rgba(21, 53, 52, 0.18);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ───────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--sans);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Buttons ────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: var(--gold);
    color: var(--teal-dark);
    box-shadow: 0 4px 20px rgba(206, 171, 47, 0.35);
}

.btn-gold:hover {
    background: var(--gold-light);
    box-shadow: 0 6px 30px rgba(206, 171, 47, 0.5);
    transform: translateY(-2px);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 14px 32px;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(206, 171, 47, 0.35);
}

/* ── Section Tags / Headings ────────────────────── */
.section-tag {
    display: inline-block;
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 8px;
}

.section-tag-center {
    display: block;
    text-align: center;
}

.section-tag-light {
    color: var(--gold-light);
}

.section-heading {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--teal);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-heading-center {
    text-align: center;
}

.section-heading-light {
    color: var(--white);
}

.gold-divider {
    width: 64px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 3px;
    margin-bottom: 40px;
}

.gold-divider-center {
    margin-left: auto;
    margin-right: auto;
}

/* ═══════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(21, 53, 52, 0.95);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    background-color: transparent;
}

.logo-img {
    height: 56px;
    width: auto;
    object-fit: contain;
    background-color: transparent;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.3px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.nav-active {
    color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.nav-active::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 26px;
    background: var(--gold);
    color: var(--teal-dark);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    background: rgba(21, 53, 52, 0.98);
    padding: 20px 24px 30px;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.mobile-menu a:hover {
    color: var(--gold);
    padding-left: 8px;
}

/* ── Hero Video Background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.mobile-cta {
    display: inline-block !important;
    margin-top: 12px;
    padding: 12px 28px !important;
    background: var(--gold);
    color: var(--teal-dark) !important;
    border-radius: 50px;
    font-weight: 600;
    border-bottom: none !important;
}

/* ═══════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: transparent;
}


.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(21,53,52,0.75); z-index: 1; }

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.hero-text {
    max-width: 650px;
}

/* Trust Cluster (Glassmorphism) */
.hero-trust-cluster {
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.6s both;
    min-width: 320px;
}

.hero-trust-cluster .trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.hero-trust-cluster .trust-icon {
    width: 48px;
    height: 48px;
    background: rgba(206, 171, 47, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-trust-cluster .trust-text {
    display: flex;
    flex-direction: column;
}

.hero-trust-cluster .trust-title {
    color: var(--white);
    font-family: var(--sans);
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1.3;
}

.hero-trust-cluster .trust-sub {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-top: 4px;
    line-height: 1.3;
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 100px;
        gap: 30px;
        margin-top: 0;
    }
    
    .hero-text {
        margin: 0 auto;
    }
    
    .hero-headline::after {
        margin: 20px auto;
    }
    
    .hero-trust-cluster {
        width: 100%;
        max-width: 500px;
        background: rgba(255, 255, 255, 0.08);
    }
    
    .hero-scroll-indicator {
        display: none;
    }
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(206, 171, 47, 0.12);
    border: 1px solid rgba(206, 171, 47, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold-light);
    margin-bottom: 28px;
    letter-spacing: 0.5px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-headline {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-headline::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gold);
    border-radius: 4px;
    margin-top: 20px;
}

.hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 520px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-cta {
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 48px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.hero-scroll-indicator span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(0.7); }
    50% { opacity: 1; transform: scaleY(1); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════
   TENTANG KAMI
   ═══════════════════════════════════════════════════ */
.tentang {
    padding: 120px 0;
    background: var(--cream);
}

.tentang-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.tentang-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.tentang-stats {
    display: flex;
    gap: 40px;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid rgba(21, 53, 52, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--serif);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--teal);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ═══════════════════════════════════════════════════
   VISI & MISI
   ═══════════════════════════════════════════════════ */
.visi-misi {
    padding: 120px 0;
    background: var(--white);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 20px;
}

.vm-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 48px 40px;
    border: 1px solid rgba(21, 53, 52, 0.06);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.vm-card:hover::before {
    transform: scaleX(1);
}

.vm-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.vm-icon {
    width: 64px;
    height: 64px;
    background: rgba(206, 171, 47, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.vm-title {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.vm-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.misi-list {
    list-style: none;
    padding: 0;
}

.misi-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.misi-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

/* ═══════════════════════════════════════════════════
   MENU SECTION
   ═══════════════════════════════════════════════════ */
.menu-section {
    padding: 120px 0;
    background: var(--teal);
    position: relative;
}

.menu-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(206, 171, 47, 0.05) 0%, transparent 70%),
                radial-gradient(ellipse at 80% 80%, rgba(206, 171, 47, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

/* Catalog Menu */
.menu-section {
    position: relative;
    background: var(--teal-dark);
    padding: 100px 0;
    overflow: hidden;
}

.leaf-pattern-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23CEAB2F' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

/* ══════════════ MENU TABS ══════════════ */
.menu-tabs-wrapper {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    width: 100%;
    z-index: 2;
    position: relative;
}

.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 1000px;
}

.tab-btn {
    background: var(--white);
    color: var(--teal-dark);
    border: none;
    padding: 14px 28px;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tab-btn:hover, .tab-btn.active {
    background: var(--gold);
    color: var(--teal-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(206, 171, 47, 0.4);
}

/* Trust Badges */
.footer-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 30px 0;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-badge svg {
    flex-shrink: 0;
}

.trust-badge .badge-text {
    display: flex;
    flex-direction: column;
}

.trust-badge .badge-title {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--sans);
    line-height: 1.2;
}

.trust-badge .badge-sub {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-family: var(--sans);
    line-height: 1.2;
    margin-top: 2px;
}

/* Base styles for footer bottom */

.menu-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    z-index: 2;
    position: relative;
}

.current-category-title {
    font-family: var(--serif);
    font-size: 2.4rem;
    color: var(--gold);
    background: var(--teal-dark);
    padding: 8px 24px;
    border-radius: 4px;
    margin: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    border: 1px solid rgba(206, 171, 47, 0.3);
}

.sort-by-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sort-by-wrapper label {
    color: var(--white);
    font-family: var(--sans);
    font-size: 0.95rem;
}

.sort-select {
    padding: 8px 30px 8px 16px;
    border-radius: 4px;
    border: 1px solid rgba(206, 171, 47, 0.5);
    font-family: var(--sans);
    font-size: 0.95rem;
    color: var(--teal-dark);
    outline: none;
    cursor: pointer;
    appearance: none;
    background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23CEAB2F' width='18px' height='18px'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") no-repeat right 8px center;
}

/* ══════════════ MENU PRODUCT GRID ══════════════ */
.menu-product-grid {
    z-index: 2;
    position: relative;
}

/* Small-card layout (Cake, Pastry, Tradisional…) */
.menu-product-grid.card-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 28px 20px;
}

/* Poster banner layout (Nasi Box, Snack, Tart) */
.menu-product-grid.poster-layout {
    display: flex;
    flex-direction: column;
    gap: 36px;
    align-items: center;
}

.product-card {
    background: transparent;
    border: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 28px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.28);
    border: 3px solid var(--white);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-card:hover .product-img-wrapper {
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
    border-color: var(--gold);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.12);
    transition: transform 0.4s ease;
    cursor: zoom-in;
}

.product-card:hover .product-img {
    transform: scale(1.2);
}

.menu-title {
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-top: 12px;
    padding: 0 10px;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.2;
    overflow: visible;
}

/* ══════════════ POSTER CARDS (Nasi Box / Snack / Tart) ══════════════ */
.poster-card {
    width: 100%;
    max-width: 980px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(0,0,0,0.35);
    border: 3px solid rgba(206, 171, 47, 0.25);
    cursor: zoom-in;
    opacity: 0;
    transform: translateY(40px);
    transition: transform 0.45s ease, opacity 0.45s ease, box-shadow 0.3s ease;
}

.poster-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.poster-card:hover {
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
    transform: translateY(-6px);
}

.poster-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.poster-card:hover .poster-img {
    transform: scale(1.02);
}

.product-info {
    padding: 20px;
    border-top: 1px solid rgba(206, 171, 47, 0.4);
    background: var(--white);
    text-align: left;
    flex: 1;
    display: flex;
    align-items: center;
}

.product-name {
    font-family: var(--sans);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--teal-dark);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .menu-actions {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    .current-category-title {
        font-size: 1.8rem;
    }
    .menu-product-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 20px 16px; 
    }
    .menu-product-grid.grid-large { 
        grid-template-columns: repeat(1, 1fr); 
    }
}
@media (max-width: 480px) {
    .menu-product-grid { 
        grid-template-columns: 1fr; 
    }
}


.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(206, 171, 47, 0.15);
    border-color: rgba(206, 171, 47, 0.8);
}
.menu-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.menu-card-content {
    padding: 20px;
    text-align: center;
}
.menu-card-title {
    font-family: var(--sans);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--teal-dark);
    margin-bottom: 8px;
}
.menu-card-price {
    font-family: var(--sans);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
}

.catalog-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 32px;
    padding: 20px 4px 40px 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) rgba(255,255,255,0.1);
}
.catalog-track::-webkit-scrollbar { height: 8px; }
.catalog-track::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 4px; }
.catalog-track::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

.catalog-item {
    scroll-snap-align: center;
    flex: 0 0 85%;
    max-width: 400px;
    cursor: zoom-in;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: var(--white);
    border: 2px solid rgba(206, 171, 47, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.catalog-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(206, 171, 47, 0.15);
    border-color: rgba(206, 171, 47, 0.8);
}
.catalog-img {
    width: 100%;
    display: block;
    object-fit: contain;
    border-radius: 10px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}
.lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
}
.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
    animation: zoomLightbox 0.3s cubic-bezier(0.2, 0, 0, 1);
}
@keyframes zoomLightbox {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}
.lightbox-close:hover {
    color: var(--gold);
}

.menu-footer {
    text-align: center;
    margin-top: 48px;
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════════════════
   OUTLET SECTION
   ═══════════════════════════════════════════════════ */
.outlet-section {
    padding: 120px 0;
    background: var(--cream);
}

.map-wrapper {
    position: relative;
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 20px;
    box-shadow: var(--shadow);
}

#map {
    width: 100%;
    height: 600px;
    z-index: 1;
}

.map-search-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1000;
    background: var(--teal);
    padding: 16px 20px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    width: 320px;
    max-width: calc(100% - 40px);
}

.map-search-input {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--white);
    font-family: var(--sans);
    font-size: 1rem;
    outline: none;
}

.map-search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.map-banner-overlay {
    position: absolute;
    bottom: 0;
    left: 20px;
    z-index: 1000;
    background: var(--teal);
    padding: 14px 20px;
    border-radius: 4px 4px 0 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    color: var(--white);
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 500;
    max-width: calc(100% - 40px);
}

/* Leaflet Customization */
.leaflet-popup-content-wrapper {
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
}

.leaflet-popup-content {
    margin: 14px 18px;
    line-height: 1.5;
}

.leaflet-popup-tip {
    box-shadow: var(--shadow);
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
    background: var(--teal-dark);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-img {
    height: 64px;
    width: auto;
    margin-bottom: 24px;
    object-fit: contain;
    background-color: transparent;
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    max-width: 320px;
}

.footer-links-group h4,
.footer-contact h4 {
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-links-group a {
    display: block;
    padding: 8px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-links-group a:hover {
    color: var(--gold);
    padding-left: 6px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ═══════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════ */
.reveal-left,
.reveal-right,
.reveal-up {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-up { transform: translateY(40px); }

.reveal-left.visible,
.reveal-right.visible,
.reveal-up.visible {
    opacity: 1;
    transform: translate(0);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 992px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }

    .tentang-grid { grid-template-columns: 1fr; gap: 32px; }
    .vm-grid { grid-template-columns: 1fr; }
    .menu-panel-inner { grid-template-columns: 1fr; }
    .outlet-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    .hero-content {
        margin: 0 auto;
        text-align: center;
        padding: 0 28px;
    }

    .hero-headline::after {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-scroll-indicator { display: none; }
}

@media (max-width: 640px) {
    .tentang-stats { flex-direction: column; gap: 20px; }
    .menu-tabs { gap: 6px; }
    .menu-tab { padding: 10px 18px; font-size: 0.8rem; }
    .menu-panel-inner { gap: 16px; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
    .vm-card { padding: 32px 24px; }
    .outlet-card { padding: 28px 24px; }
    .btn { padding: 14px 28px; font-size: 0.88rem; }
}


/* ── Inner Pages Tweaks ── */
.inner-page .navbar {
    background: rgba(21, 53, 52, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}
.inner-page section:first-of-type {
    padding-top: 160px;
}

/* ══════════════════════════════════════════════════════
   SHOPPING CART – FAB + SIDEBAR
   ══════════════════════════════════════════════════════ */

/* Floating Action Button */
.cart-fab {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 1200;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--teal-dark);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 28px rgba(206, 171, 47, 0.55);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cart-fab:hover {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 14px 36px rgba(206, 171, 47, 0.7);
}
.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #e53935;
    color: #fff;
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}

/* Overlay */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1300;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.cart-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: min(420px, 100vw);
    height: 100dvh;
    background: var(--teal-dark);
    z-index: 1400;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 40px rgba(0,0,0,0.4);
}
.cart-sidebar.open {
    transform: translateX(0);
}

/* Cart Header */
.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px 20px;
    border-bottom: 1px solid rgba(206, 171, 47, 0.25);
    flex-shrink: 0;
}
.cart-title {
    font-family: var(--serif);
    font-size: 1.35rem;
    color: var(--white);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cart-close-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s;
    padding: 4px;
}
.cart-close-btn:hover { color: var(--gold); }

/* Items List */
.cart-items-list {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent;
}
.cart-empty-msg {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 100%;
    color: rgba(255,255,255,0.45);
    text-align: center;
    padding: 40px 0;
}
.cart-empty-msg span { font-size: 3rem; }
.cart-empty-msg p { font-family: var(--serif); font-size: 1.1rem; color: rgba(255,255,255,0.65); margin:0; }
.cart-empty-msg small { font-size: 0.82rem; }

/* Individual Cart Item */
.cart-item {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(206, 171, 47, 0.18);
    border-radius: 10px;
    padding: 14px 16px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 16px;
    align-items: center;
}
.cart-item-name {
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    grid-column: 1 / -1;
    white-space: normal;
    word-break: break-word;
}
.cart-item-subtotal {
    font-family: var(--sans);
    font-size: 0.88rem;
    color: var(--gold);
    font-weight: 600;
}
.cart-qty-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}
.cart-qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(206, 171, 47, 0.5);
    background: transparent;
    color: var(--gold);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}
.cart-qty-btn:hover { background: var(--gold); color: var(--teal-dark); }
.cart-qty-val {
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    min-width: 22px;
    text-align: center;
}

/* Cart Footer */
.cart-footer {
    padding: 20px 24px 28px;
    border-top: 1px solid rgba(206, 171, 47, 0.25);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--sans);
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
}
.cart-total-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
}
.cart-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gold);
    color: var(--teal-dark);
    border: none;
    border-radius: 10px;
    padding: 16px;
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 18px rgba(206,171,47,0.45);
}
.cart-whatsapp-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(206,171,47,0.6);
}
.cart-whatsapp-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

/* "Tambah" button on product/poster cards */
.add-to-cart-btn {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--gold);
    color: var(--teal-dark);
    border: none;
    border-radius: 20px;
    padding: 8px 20px;
    font-family: var(--sans);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 10;
    letter-spacing: 0.04em;
}
.product-img-wrapper { position: relative; }
.product-img-wrapper:hover .add-to-cart-btn,
.poster-card:hover .add-to-cart-btn {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.poster-card { position: relative; }
.poster-card .add-to-cart-btn {
    bottom: 18px;
    font-size: 0.9rem;
    padding: 10px 28px;
}

/* Cart Header */
.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px 20px;
    border-bottom: 1px solid rgba(206, 171, 47, 0.25);
    flex-shrink: 0;
}
.cart-title {
    font-family: var(--serif);
    font-size: 1.35rem;
    color: var(--white);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cart-close-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s;
    padding: 4px;
}
.cart-close-btn:hover { color: var(--gold); }

/* Items List */
.cart-items-list {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent;
}
.cart-empty-msg {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 100%;
    color: rgba(255,255,255,0.45);
    text-align: center;
    padding: 40px 0;
}
.cart-empty-msg span { font-size: 3rem; }
.cart-empty-msg p { font-family: var(--serif); font-size: 1.1rem; color: rgba(255,255,255,0.65); margin:0; }
.cart-empty-msg small { font-size: 0.82rem; }

/* Individual Cart Item */
.cart-item {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(206, 171, 47, 0.18);
    border-radius: 10px;
    padding: 14px 16px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 16px;
    align-items: center;
}
.cart-item-name {
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    grid-column: 1 / -1;
    white-space: normal;
    word-break: break-word;
}
.cart-item-subtotal {
    font-family: var(--sans);
    font-size: 0.88rem;
    color: var(--gold);
    font-weight: 600;
}
.cart-qty-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}
.cart-qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(206, 171, 47, 0.5);
    background: transparent;
    color: var(--gold);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}
.cart-qty-btn:hover { background: var(--gold); color: var(--teal-dark); }
.cart-qty-val {
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    min-width: 22px;
    text-align: center;
}

/* Cart Footer */
.cart-footer {
    padding: 20px 24px 28px;
    border-top: 1px solid rgba(206, 171, 47, 0.25);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--sans);
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
}
.cart-total-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
}
.cart-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gold);
    color: var(--teal-dark);
    border: none;
    border-radius: 10px;
    padding: 16px;
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 18px rgba(206,171,47,0.45);
}
.cart-whatsapp-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(206,171,47,0.6);
}
.cart-whatsapp-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

/* "Tambah" button on product/poster cards */
.add-to-cart-btn {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--gold);
    color: var(--teal-dark);
    border: none;
    border-radius: 20px;
    padding: 8px 20px;
    font-family: var(--sans);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 10;
    letter-spacing: 0.04em;
}
.product-img-wrapper { position: relative; }
.product-img-wrapper:hover .add-to-cart-btn,
.poster-card:hover .add-to-cart-btn {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.poster-card { position: relative; }
.poster-card .add-to-cart-btn {
    bottom: 18px;
    font-size: 0.9rem;
    padding: 10px 28px;
}

@media (max-width: 640px) {
    .cart-fab { bottom: 20px; right: 18px; width: 54px; height: 54px; }
    .cart-sidebar { width: 100vw; }
}

/* ═══ Career Grid Cards ═══ */
.karir-section {
    padding: 5rem 0 6rem;
    background: #f8f6f2;
}
.karir-heading {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--teal);
    margin-bottom: 0.5rem;
}
.karir-sub {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 3rem;
    margin-top: 1rem;
}
.karir-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 340px));
    justify-content: center;
    gap: 2rem;
}
.karir-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
}
.karir-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
.karir-icon {
    width: 80px;
    height: 80px;
    background: rgba(206, 171, 47, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}
.karir-title {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: #153534;
    margin-bottom: 0.6rem;
}
.karir-desc {
    font-family: var(--sans);
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1.25rem;
}
.karir-apply {
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 700;
    color: #CEAB2F;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.2s ease, color 0.2s ease;
    display: inline-block;
}
.karir-apply:hover {
    border-color: #CEAB2F;
    color: #b8951f;
}
.karir-card.karir-card-highlight {
    border: 2px solid var(--gold);
    background: rgba(206, 171, 47, 0.04);
}

/* ═══════════════════════════════════════════════════
   MENU CATALOG — ELEGANT REDESIGN OVERRIDES
   ═══════════════════════════════════════════════════ */

/* ── Gold divider under catalog section heading ── */
.menu-actions {
    border-bottom: 1px solid rgba(206, 171, 47, 0.35);
}
.current-category-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-top: 6px;
    border-radius: 2px;
}

/* ── Category tabs: pill-shaped ghost buttons ── */
.menu-tabs {
    gap: 10px;
}

.tab-btn {
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    border: 1.5px solid rgba(206, 171, 47, 0.35);
    padding: 10px 22px;
    font-weight: 500;
    font-size: 0.88rem;
    border-radius: 50px;
    text-transform: none;
    letter-spacing: 0.02em;
    box-shadow: none;
    transition: background 0.25s ease, color 0.25s ease,
                border-color 0.25s ease, box-shadow 0.25s ease,
                transform 0.2s ease;
}

.tab-btn:hover {
    background: rgba(206, 171, 47, 0.12);
    border-color: rgba(206, 171, 47, 0.7);
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(206, 171, 47, 0.18);
}

.tab-btn.active {
    background: linear-gradient(135deg, rgba(206, 171, 47, 0.25) 0%, rgba(206, 171, 47, 0.1) 100%);
    border-color: var(--gold);
    color: var(--gold);
    font-weight: 600;
    box-shadow: 0 0 0 1px rgba(206, 171, 47, 0.3),
                0 6px 18px rgba(206, 171, 47, 0.2);
    transform: translateY(-2px);
}

/* ── Mobile: horizontal scroll for tabs ── */
@media (max-width: 640px) {
    .menu-tabs-wrapper {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
        scrollbar-width: none;
    }
    .menu-tabs-wrapper::-webkit-scrollbar { display: none; }
    .menu-tabs {
        flex-wrap: nowrap;
        padding: 0 16px;
        justify-content: flex-start;
    }
    .tab-btn {
        flex-shrink: 0;
        padding: 9px 18px;
        font-size: 0.82rem;
    }
}

/* ── Product card: subtle shadow + scale hover ── */
.product-card {
    border-radius: 14px;
}

.product-card:hover {
    transform: translateY(-6px) scale(1.03);
}

.product-img-wrapper {
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}

/* ── Cart FAB: smaller, refined glow on hover ── */
.cart-fab {
    width: 52px;
    height: 52px;
    bottom: 28px;
    right: 28px;
    box-shadow: 0 6px 20px rgba(206, 171, 47, 0.45);
}

.cart-fab:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 0 4px rgba(206, 171, 47, 0.2),
                0 10px 28px rgba(206, 171, 47, 0.55);
}
