@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* ====================== CSS VARIABLES ====================== */
:root {
    --bg-primary:   #570A10;
    --bg-secondary: #6A0D15;
    --bg-dark:      #3B060B;
    --text-light:   #F9F5F0;
    --text-muted:   #D1B8B4;
    --accent:       #E5A93C;
    --accent-hover: #F2C268;
    --header-h:     80px;
}

/* ====================== RESET & BASE ====================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background-color: var(--bg-primary);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ====================== TYPOGRAPHY ====================== */
h1, h2, h3, h4, .brand { font-family: 'Playfair Display', serif; }
.hero-title {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -1px;
}
.hero-title i { font-style: italic; font-weight: 400; color: var(--text-muted); }
.section-title { font-size: clamp(2rem, 4vw, 3rem); font-style: italic; margin-bottom: 40px; text-align: center; }

/* ====================== LAYOUT ====================== */
.container { max-width: 1400px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 60px); }

/* ====================== HEADER / NAV ====================== */
.landing-header {
    position: fixed; top: 0; left: 0; right: 0;
    height: var(--header-h);
    padding: 0 clamp(20px, 4vw, 60px);
    display: flex; justify-content: space-between; align-items: center;
    z-index: 1000;
    background: rgba(87, 10, 16, 0.85); /* Matching var(--bg-primary) #570A10 */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.3s, box-shadow 0.3s;
}
.brand {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-weight: 700;
    color: var(--text-light);
    white-space: nowrap;
    flex-shrink: 0;
}
.brand span { font-style: italic; font-weight: 400; color: var(--accent); }

/* Desktop Nav */
.nav-links { display: flex; gap: clamp(20px, 3vw, 40px); align-items: center; }
.nav-links a {
    color: var(--text-muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 4px;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1px; background: var(--accent);
    transition: width 0.3s;
}
.nav-links a:hover { color: var(--text-light); }
.nav-links a:hover::after { width: 100%; }

/* Order Button */
.btn-reserve {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    border: 1px solid var(--accent);
    color: var(--bg-dark);
    padding: 11px 26px;
    border-radius: 10px;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}
.btn-reserve i { width: 16px; height: 16px; flex-shrink: 0; }
.btn-reserve:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: var(--bg-dark); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1100;
}
.hamburger span {
    display: block; width: 26px; height: 2px;
    background: var(--text-light);
    transition: all 0.35s ease;
    border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-nav {
    display: none;
    position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
    background: var(--bg-dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    z-index: 999;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s, transform 0.3s;
}
.mobile-nav.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}
.mobile-nav a {
    color: var(--text-light);
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-style: italic;
    transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav .btn-reserve { font-size: 1rem; padding: 14px 36px; }

/* ====================== HERO ====================== */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    padding-top: calc(var(--header-h) + 40px);
    gap: 40px;
}
.hero-content { padding-right: 20px; }
.hero-text { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 40px; max-width: 500px; }

/* CTA Buttons */
.btn-gold {
    background: var(--accent); color: #111;
    padding: 16px 36px; border: none; border-radius: 4px;
    font-size: 1rem; font-weight: 600; cursor: pointer;
    text-transform: uppercase; letter-spacing: 1px;
    transition: background 0.3s, transform 0.2s;
    display: inline-block;
    font-family: 'Inter', sans-serif;
}
.btn-gold:hover { background: var(--accent-hover); transform: translateY(-2px); }

/* 3D Hero Visual */
.hero-visual {
    position: relative; height: 80vh;
    display: flex; align-items: center; justify-content: center;
    perspective: 1000px;
}
.plate-container {
    position: relative;
    width: clamp(300px, 45vw, 650px);
    aspect-ratio: 1;
    animation: floatPlate 8s ease-in-out infinite;
    transform-style: preserve-3d;
}
.plate-img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 40px 60px rgba(0,0,0,0.6));
    border-radius: 50%;
    animation: spinPlate 40s linear infinite;
}

/* ====================== ANIMATIONS ====================== */
@keyframes floatPlate {
    0%   { transform: translateY(0px) rotateX(10deg) rotateY(-5deg); }
    50%  { transform: translateY(-20px) rotateX(15deg) rotateY(5deg); }
    100% { transform: translateY(0px) rotateX(10deg) rotateY(-5deg); }
}
@keyframes spinPlate { 
    100% { transform: rotate(360deg); } 
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fade-in { opacity: 0; animation: fadeUp 0.9s ease forwards; }

/* ====================== OUR STORY ====================== */
.story-section {
    padding: clamp(60px, 10vw, 120px) 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 80px);
    align-items: center;
}
.story-img {
    width: 100%; border-radius: 16px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    transition: transform 0.5s;
}
.story-img:hover { transform: scale(1.02); }

/* ====================== DEVELOPER PAGE — ABOUT/STORY ====================== */
#about-dev.story-section { align-items: stretch; }
.dev-story-left { display: flex; flex-direction: column; }
.dev-portrait-wrap {
    border-radius: 18px;
    overflow: hidden;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    flex: 1;
    min-height: 340px;
    margin-bottom: 28px;
}
.dev-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    transition: transform 0.5s;
}
.dev-portrait-wrap:hover .dev-portrait { transform: scale(1.03); }
.dev-about-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: clamp(20px, 3vw, 30px);
    text-align: center;
}
.dev-about-card h3 { font-family:'Playfair Display', serif; font-size:1.3rem; margin-bottom:14px; }
.dev-tag-row { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-top:6px; }
.dev-tag {
    background: rgba(229,169,60,0.12);
    border: 1px solid rgba(229,169,60,0.3);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
}
#about-dev.story-section { text-align: center; }
#about-dev .section-title { text-align: center; }
#about-dev p { text-align: center; }
@media(max-width:900px){ .dev-portrait-wrap { flex: none; height: auto; min-height: 0; max-height: 480px; } }

/* ====================== MENU HIGHLIGHTS ====================== */
.highlight-section { padding: clamp(60px, 10vw, 120px) 0; background: var(--bg-secondary); }
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 80px);
    align-items: center;
}
.side-plate { width: 100%; max-width: 500px; border-radius: 50%; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4)); margin: 0 auto; }
.menu-list { display: flex; flex-direction: column; gap: 28px; }
.menu-item { display: flex; flex-direction: column; border-bottom: 1px solid rgba(255,255,255,0.06); padding-bottom: 20px; }
.menu-row { display: flex; justify-content: space-between; align-items: baseline; }
.menu-name { font-family: 'Playfair Display', serif; font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 600; }
.menu-dots { flex-grow: 1; border-bottom: 1px dotted var(--text-muted); margin: 0 16px; opacity: 0.4; }
.menu-price { font-family: 'Playfair Display', serif; font-size: clamp(1.1rem, 2vw, 1.5rem); color: var(--accent); white-space: nowrap; }
.menu-desc { font-size: 0.9rem; color: var(--text-muted); margin-top: 8px; font-style: italic; }

/* ====================== GALLERY ====================== */
.gallery-section { padding: clamp(60px, 10vw, 120px) 0; text-align: center; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 60px;
}
.gallery-card {
    position: relative; overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    cursor: pointer;
}
.gallery-card img {
    width: 100%; height: 340px;
    object-fit: cover;
    transition: transform 0.55s ease;
    display: block;
}
.gallery-card:hover img { transform: scale(1.08); }
.gallery-card-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent 0%, rgba(0,0,0,0.85) 100%);
    padding: 30px 22px 20px;
}
.gallery-card-overlay h3 { font-family: 'Playfair Display', serif; font-size: 1.45rem; margin-bottom: 4px; }
.gallery-card-overlay p { font-size: 0.85rem; color: var(--text-muted); }

/* ====================== FOOTER ====================== */
.landing-footer {
    background: var(--bg-dark);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: clamp(50px, 8vw, 90px) clamp(20px, 5vw, 60px) 40px;
    margin-top: 60px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: clamp(30px, 4vw, 60px);
    margin-bottom: 50px;
}
.footer-col h4 { font-family: 'Playfair Display', serif; margin-bottom: 18px; font-size: 1.2rem; color: var(--accent); }
.footer-col p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 8px; line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; transition: color 0.25s; }
.footer-links a:hover { color: var(--accent); }
.footer-contact a { color: var(--text-light); font-size: 0.9rem; display: block; margin-bottom: 8px; transition: color 0.25s; }
.footer-contact a:hover { color: var(--accent); }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-input {
    flex: 1; min-width: 180px;
    padding: 12px 16px; border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent; color: white; outline: none;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}
.newsletter-input:focus { border-color: var(--accent); }
.newsletter-input::placeholder { color: var(--text-muted); }

.footer-bottom {
    display: flex; flex-wrap: wrap; justify-content: space-between;
    align-items: center; gap: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
}
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { color: var(--text-muted); font-size: 0.82rem; transition: color 0.25s; }
.footer-legal a:hover { color: var(--accent); }
.footer-copy { color: var(--text-muted); font-size: 0.82rem; }

/* ====================== RESPONSIVE ====================== */

/* Tablets */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Large Mobile / Small Tablet */
@media (max-width: 768px) {
    /* Header */
    .nav-links, .header-actions { display: none; }
    .hamburger { display: flex; }

    /* Hero */
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
        padding-bottom: 60px;
    }
    .hero-content { padding-right: 0; display: flex; flex-direction: column; align-items: center; }
    .hero-text { max-width: 100%; }
    .hero-visual { height: auto; margin-top: 40px; }

    /* Story */
    .story-section { grid-template-columns: 1fr; text-align: center; }
    .story-section .story-img { max-width: 500px; margin: 0 auto; }

    /* Menu Highlights */
    .split-grid { grid-template-columns: 1fr; text-align: center; }
    .split-grid .section-title { text-align: center; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* Small Mobile */
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.5rem; }
    .mobile-nav a { font-size: 1.5rem; }
}

/* ====================== RESTAURANT MOMENTS MARQUEE ====================== */
.moments-section {
    padding: clamp(60px, 10vw, 100px) 0;
    background: var(--bg-secondary);
    overflow: hidden;
}
.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
}
.track-rtl {
    animation: scrollRTL 40s linear infinite;
}
.track-ltr {
    animation: scrollLTR 55s linear infinite;
}
.marquee-track:hover {
    animation-play-state: paused;
}
.marquee-item {
    position: relative;
    width: 340px;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.marquee-item:hover img {
    transform: scale(1.08);
}
.marquee-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 20px 16px 12px;
    opacity: 0;
    transition: opacity 0.3s;
    letter-spacing: 0.5px;
}
.marquee-item:hover .marquee-label {
    opacity: 1;
}

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

/* ====================== SCROLL TO TOP ====================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: var(--accent);
    color: #111;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.3s ease;
}
.scroll-to-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.scroll-to-top:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
}

/* ====================== LIGHTBOX ====================== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.lightbox.show {
    display: flex;
    opacity: 1;
}
.lightbox-content {
    width: 90vw;
    height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}
.lightbox.show .lightbox-content {
    transform: scale(1);
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    background: none;
    border: none;
}
.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--accent);
}

/* ===== CUSTOM DROPDOWN (progressive enhancement — shared with admin) ===== */
.shg-dd { position: relative; display: inline-flex; vertical-align: middle; max-width: 100%; }
.shg-dd.shg-dd-block { display: block; width: 100%; }
.shg-dd > select { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; pointer-events: none; margin: 0; padding: 0; border: 0; }

.shg-dd-trigger {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    width: 100%; min-width: 150px; max-width: 100%;
    padding: 12px 16px;
    background: #fff;
    border: 1.5px solid #e6d9d3;
    border-radius: 10px;
    font-family: inherit; font-size: 0.9rem; font-weight: 600;
    color: #20161a;
    cursor: pointer;
    transition: all .25s ease;
}
.shg-dd-block .shg-dd-trigger { min-width: 0; }
.shg-dd-trigger:hover { border-color: var(--bg-primary); }
.shg-dd.open .shg-dd-trigger,
.shg-dd-trigger:focus-visible {
    border-color: var(--bg-primary);
    box-shadow: 0 0 0 3px rgba(87, 10, 16, 0.14);
    outline: none;
}
.shg-dd-trigger:disabled { opacity: .55; cursor: not-allowed; }
.shg-dd-label { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.shg-dd-chevron { width: 17px; height: 17px; flex-shrink: 0; color: var(--bg-primary); transition: transform .2s ease; }
.shg-dd.open .shg-dd-chevron { transform: rotate(180deg); }

.shg-dd.shg-dd-sm .shg-dd-trigger { padding: 8px 10px 8px 12px; min-width: 92px; font-size: .82rem; border-radius: 8px; }
.shg-dd.shg-dd-sm .shg-dd-chevron { width: 14px; height: 14px; }

.shg-dd-panel {
    position: fixed; top: 0; left: 0;
    background: #fff;
    border: 1px solid #e6d9d3;
    border-radius: 14px;
    box-shadow: 0 20px 45px rgba(59, 6, 11, .28), 0 4px 14px rgba(0, 0, 0, .1);
    padding: 6px; margin: 0;
    max-height: 280px; overflow-y: auto;
    z-index: 4000;
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateY(-6px) scale(.98);
    transform-origin: top left;
    transition: opacity .15s ease, transform .15s ease, visibility .15s;
}
.shg-dd-panel.dropup { transform-origin: bottom left; }
.shg-dd-panel.open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0) scale(1); }

.shg-dd-option {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    padding: 10px 12px; border-radius: 8px;
    font-size: 0.88rem; font-weight: 600; color: #20161a;
    cursor: pointer; transition: background .12s ease, color .12s ease;
    white-space: nowrap;
}
.shg-dd-option:hover, .shg-dd-option.focus { background: rgba(87, 10, 16, .08); }
.shg-dd-option.active { background: var(--bg-primary); color: #fff; }
.shg-dd-option.active:hover { background: var(--bg-secondary); }
.shg-dd-option .shg-dd-check { width: 15px; height: 15px; flex-shrink: 0; color: var(--accent); opacity: 0; }
.shg-dd-option.active .shg-dd-check { opacity: 1; }
.shg-dd-option.disabled { opacity: .4; cursor: not-allowed; pointer-events: none; }
.shg-dd-empty { padding: 14px 12px; text-align: center; font-size: .8rem; font-weight: 600; color: #8a7570; }

/* ====================== MOBILE STICKY CART BAR ======================
   Card-style floating summary bar for phones/tablets — inspired by
   mobile app "account summary" bars: rounded, dark, badge + total on
   the left, primary action on the right. Hidden on desktop (the
   sidebar cart panel is always visible there). */
.mobile-cart-bar {
    display: none;
    position: fixed;
    left: 12px; right: 12px; bottom: 14px;
    z-index: 500;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-secondary));
    border: 1px solid rgba(229,169,60,0.25);
    border-radius: 18px;
    padding: 12px 14px 12px 12px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.45);
    transform: translateY(120%);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.34,1.2,0.4,1), opacity 0.3s;
}
.mobile-cart-bar-info { display: flex; align-items: center; gap: 12px; min-width: 0; }
.mobile-cart-bar-count {
    flex-shrink: 0;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: rgba(229,169,60,0.18);
    border: 1px solid rgba(229,169,60,0.4);
    color: var(--accent);
    font-weight: 700; font-size: 0.85rem;
    display: flex; align-items: center; justify-content: center;
}
.mobile-cart-bar-text { display: flex; flex-direction: column; min-width: 0; }
.mobile-cart-bar-label {
    font-size: 0.62rem; text-transform: uppercase; letter-spacing: 1px;
    color: var(--text-muted); opacity: 0.85;
}
.mobile-cart-bar-total {
    font-family: 'Playfair Display', serif;
    font-weight: 700; font-size: 1.05rem;
    color: var(--text-light);
    white-space: nowrap;
}
.mobile-cart-bar-btn {
    flex-shrink: 0;
    display: flex; align-items: center; gap: 8px;
    background: var(--accent);
    color: var(--bg-dark);
    border: none; border-radius: 12px;
    padding: 12px 18px;
    font-family: 'Inter', sans-serif;
    font-weight: 700; font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.25s, transform 0.15s;
}
.mobile-cart-bar-btn:hover { background: var(--accent-hover); }
.mobile-cart-bar-btn:active { transform: scale(0.97); }
.mobile-cart-bar-btn i { width: 16px; height: 16px; }

@media (max-width: 900px) {
    .mobile-cart-bar.show { display: flex; transform: translateY(0); opacity: 1; }
    /* keep the last cart-panel content clear of the floating bar */
    .cart-panel { margin-bottom: 90px; }
}
