/* ========== VARIABLES ========== */
:root {
    --orange: #c75b1f;
    --orange-hover: #a84a18;
    --dark: #1a1a1a;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e8e8e8;
    --gray-400: #bdbdbd;
    --gray-600: #757575;
    --gray-800: #424242;
    --white: #ffffff;
    --radius: 8px;
    --radius-lg: 16px;
}

/* ========== RESET ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.hidden { display: none !important; }

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 600; font-size: 0.9rem; padding: 10px 28px;
    border-radius: 50px; border: 2px solid transparent;
    cursor: pointer; transition: all 0.2s; text-decoration: none;
}
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-hover); border-color: var(--orange-hover); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--orange); }
.btn-white { background: var(--white); color: var(--orange); border-color: var(--white); }
.btn-white:hover { background: var(--gray-100); color: var(--orange); }
.btn-lg { padding: 14px 36px; font-size: 1rem; }

/* ========== NAVBAR ========== */
.navbar {
    position: sticky; top: 0; z-index: 100;
    background: var(--white); padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; }
.navbar-brand { display: flex; align-items: center; gap: 12px; }
.navbar-logo-img { height: 40px; width: 40px; object-fit: cover; border-radius: 50%; cursor: pointer; }

/* Logo Lightbox */
.logo-lightbox {
    display: none; position: fixed; inset: 0; z-index: 10000;
    background: rgba(0,0,0,0.8); align-items: center; justify-content: center;
}
.logo-lightbox.open { display: flex; }
.logo-lightbox-content { position: relative; max-width: 90vw; max-height: 90vh; }
.logo-lightbox-content img {
    max-width: 90vw; max-height: 85vh; border-radius: 12px;
    object-fit: contain; box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.logo-lightbox-close {
    position: absolute; top: -12px; right: -12px;
    background: var(--white); color: var(--dark); border: none;
    width: 36px; height: 36px; border-radius: 50%; font-size: 1.4rem;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.navbar-name {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.35rem; font-weight: 700; color: var(--orange);
}

/* ========== HERO ========== */
.hero {
    position: relative; min-height: 480px;
    background: linear-gradient(135deg, #2c2c2c 0%, #3d3d3d 50%, #4a4a4a 100%);
    display: flex; align-items: center;
    overflow: hidden;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}
.hero-inner { position: relative; z-index: 2; padding: 60px 24px; max-width: 700px; }
.hero h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 3rem; font-weight: 900; color: var(--white);
    line-height: 1.1; margin-bottom: 20px;
    text-transform: uppercase;
}
.hero-desc {
    font-size: 0.95rem; color: rgba(255,255,255,0.9);
    line-height: 1.7; margin-bottom: 28px; max-width: 580px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ========== ABOUT CARD ========== */
/* ========== PHOTO GALLERY ========== */
.photo-gallery {
    overflow: hidden; background: var(--dark); padding: 24px 0;
}
.gallery-track {
    display: flex; gap: 16px; width: max-content;
    animation: gallery-scroll 40s linear infinite;
}
.gallery-track img {
    height: 220px; width: 320px; object-fit: cover; border-radius: 12px;
    flex-shrink: 0;
}
.photo-gallery:hover .gallery-track { animation-play-state: paused; }

@keyframes gallery-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== ABOUT ========== */
.section-about { padding: 64px 0; }
.about-card {
    display: grid; grid-template-columns: 380px 1fr;
    border-radius: var(--radius-lg); overflow: hidden;
    background: linear-gradient(135deg, #8b5a2b 0%, var(--orange) 60%, #d4712a 100%);
    min-height: 360px;
}
.about-card-image {
    position: relative; overflow: hidden;
}
.about-img {
    width: 100%; height: 100%; min-height: 360px;
    object-fit: cover; display: block;
}
.about-card-text {
    padding: 48px 48px 48px 40px; color: var(--white);
    display: flex; flex-direction: column; justify-content: center;
}
.about-card-text h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2rem; font-weight: 700; font-style: italic;
    margin-bottom: 20px; line-height: 1.2;
}
.about-card-text p { font-size: 0.92rem; line-height: 1.7; opacity: 0.92; }

/* ========== MENU SECTION ========== */
.section-menu { padding: 64px 0; background: var(--white); }
.menu-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2rem; font-weight: 700; margin-bottom: 4px;
}
.menu-subtitle { color: var(--gray-600); font-size: 0.85rem; margin-bottom: 32px; }
.menu-layout { display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: start; }

/* Sidebar */
.menu-sidebar {
    border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
    padding: 16px; position: sticky; top: 80px;
}
.menu-toggle {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px; cursor: pointer; border-radius: var(--radius);
    transition: all 0.2s;
    border: 1px solid var(--gray-200); background: var(--white);
    margin-bottom: 6px;
}
.menu-toggle:hover { background: var(--gray-50); border-color: var(--gray-400); }
.menu-toggle.active {
    background: var(--gray-50); border-color: var(--gray-400);
    margin-bottom: 0; border-radius: var(--radius) var(--radius) 0 0;
}
.menu-toggle-radio {
    width: 20px; height: 20px; border-radius: 50%;
    border: 2px solid var(--gray-400); flex-shrink: 0;
    position: relative;
}
.menu-toggle.active .menu-toggle-radio { border-color: var(--dark); }
.menu-toggle.active .menu-toggle-radio::after {
    content: ''; position: absolute;
    top: 3px; left: 3px; right: 3px; bottom: 3px;
    background: var(--dark); border-radius: 50%;
}
.menu-toggle-label { flex: 1; }
.menu-toggle-name { display: block; font-weight: 600; font-size: 0.9rem; }
.menu-toggle-time { display: block; font-size: 0.75rem; color: var(--gray-600); }
.menu-toggle-arrow {
    font-size: 0.7rem; color: var(--gray-600);
    transition: transform 0.3s ease;
}
.menu-toggle-arrow.up { transform: rotate(180deg); }

.sidebar-categories {
    padding: 0 12px;
    margin: 0 0 8px 0;
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    border: 1px solid var(--gray-400); border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    background: var(--gray-50);
}
.sidebar-categories.hidden {
    border-color: transparent; padding: 0 12px;
}
.sidebar-categories:not(.hidden) {
    max-height: 500px; padding: 8px 12px;
}
.sidebar-categories li { margin-bottom: 2px; }
.sidebar-cat {
    display: block; padding: 6px 12px; font-size: 0.85rem;
    color: var(--gray-600); border-radius: var(--radius);
    transition: all 0.2s;
}
.sidebar-cat:hover { color: var(--dark); background: var(--white); }
.sidebar-cat.active {
    color: var(--dark); font-weight: 600;
    background: var(--white);
}

/* Specials Banner */
.specials-banner { margin-bottom: 32px; }
.specials-card {
    display: inline-flex; flex-direction: column; gap: 4px;
    padding: 16px 24px; border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
}
.specials-tag {
    display: inline-block; background: var(--orange);
    color: var(--white); font-size: 0.65rem; font-weight: 700;
    padding: 2px 8px; border-radius: 4px; width: fit-content;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.specials-card strong { font-size: 0.95rem; }
.specials-card p { font-size: 0.8rem; color: var(--gray-600); margin: 0; }

/* Menu Content */
.menu-section { margin-bottom: 40px; }
.menu-section h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.5rem; font-weight: 700; margin-bottom: 6px;
}
.menu-section-note { font-size: 0.85rem; color: var(--gray-600); margin-bottom: 20px; }

/* Menu Items Grid - 2 columns like screenshot */
.menu-items-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.menu-item-card {
    border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
    padding: 20px 24px; display: flex; flex-direction: column;
    transition: box-shadow 0.2s; position: relative;
}
.popular-badge {
    display: inline-block; background: #fff3e0; color: #e65100;
    font-size: 0.7rem; font-weight: 700; padding: 2px 10px;
    border-radius: 4px; margin-bottom: 8px; width: fit-content;
}
.spicy-icon { color: #d32f2f; }
.menu-item-card:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.menu-item-card strong {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 0.95rem; font-weight: 700; font-style: italic;
    margin-bottom: 6px; line-height: 1.3;
}
.menu-item-card p {
    font-size: 0.82rem; color: var(--gray-600);
    line-height: 1.5; margin-bottom: 12px; flex: 1;
}
.menu-item-footer {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: auto;
}
.price { font-weight: 700; font-size: 0.95rem; color: var(--dark); }
.add-btn {
    width: 32px; height: 32px; border-radius: 50%;
    border: 1px solid var(--gray-200); background: var(--white);
    font-size: 1.2rem; cursor: pointer; display: flex;
    align-items: center; justify-content: center;
    color: var(--gray-600); transition: all 0.2s;
}
.add-btn:hover { border-color: var(--orange); color: var(--orange); }

/* ========== LOCATION ========== */
.section-location { padding: 64px 0; background: var(--gray-50); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.location-info h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.8rem; margin-bottom: 24px;
}
.loc-item { display: flex; gap: 12px; margin-bottom: 20px; }
.loc-icon { font-size: 1.2rem; padding-top: 2px; }
.loc-item strong { display: block; font-size: 0.9rem; margin-bottom: 2px; }
.loc-item p { font-size: 0.88rem; color: var(--gray-600); margin: 0; }
.loc-item a { color: var(--orange); }
.loc-item a:hover { text-decoration: underline; }
.svc-badge {
    display: inline-block; padding: 8px 16px;
    border: 1px solid var(--gray-200); border-radius: 50px;
    font-size: 0.85rem; color: var(--gray-600); margin-top: 8px;
}
.location-map {
    min-height: 350px; border-radius: var(--radius-lg);
    overflow: hidden; background: var(--gray-200);
}
.location-map iframe { display: block; min-height: 350px; }

/* ========== ORDER CTA ========== */
.section-order {
    padding: 64px 0;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-hover) 100%);
    color: var(--white);
}
.section-order h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2rem; margin-bottom: 12px;
}
.section-order p { font-size: 1rem; opacity: 0.9; margin-bottom: 24px; }

/* ========== FOOTER ========== */
.site-footer {
    background: var(--dark); color: rgba(255,255,255,0.6);
    padding: 40px 0;
}
.footer-inner { text-align: center; }
.footer-brand {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; margin-bottom: 16px;
}
.footer-links { display: flex; gap: 24px; justify-content: center; margin-bottom: 16px; flex-wrap: wrap; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* ========== ITEM MODAL ========== */
.item-modal-overlay {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    z-index: 9999; background: rgba(0,0,0,0.5);
    align-items: center; justify-content: center;
}
.item-modal-overlay.open { display: flex; }
.item-modal-box {
    background: var(--white); border-radius: 20px;
    width: 90%; max-width: 640px; max-height: 85vh;
    display: flex; flex-direction: column;
    animation: itemFadeScale 0.25s ease-out;
    margin: auto;
}
@keyframes itemFadeScale {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
.item-modal-alert-hidden { display: none !important; }
.item-modal-header {
    display: flex; justify-content: space-between; align-items: flex-start;
    padding: 28px 28px 20px; gap: 16px;
}
.item-modal-header h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.5rem; font-weight: 900; line-height: 1.25;
    margin: 0;
}
.item-modal-close {
    background: none; border: none; font-size: 1.8rem;
    cursor: pointer; color: var(--gray-600); padding: 0;
    line-height: 1; flex-shrink: 0;
}
.item-modal-close:hover { color: var(--dark); }

.item-modal-alert {
    display: flex; align-items: center; gap: 12px;
    margin: 0 28px; padding: 14px 18px;
    background: #fef9e7; border-radius: var(--radius);
}
.item-modal-alert-icon {
    flex-shrink: 0; width: 28px; height: 28px; background: #f59e0b;
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; color: var(--white); font-weight: 700;
    font-size: 0.9rem;
}
.item-modal-alert div { flex: 1; }
.item-modal-alert strong { display: block; font-size: 0.88rem; color: var(--dark); }
.item-modal-alert span { font-size: 0.82rem; color: var(--gray-600); }
.item-modal-alert-link {
    font-size: 0.88rem; font-weight: 600; color: var(--dark);
    text-decoration: underline; flex-shrink: 0;
}

/* Schedule Panel */
.schedule-panel {
    margin: 0 28px; padding: 20px;
    background: var(--gray-50); border-radius: var(--radius);
    border: 1px solid var(--gray-200);
}
.schedule-panel-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 4px;
}
.schedule-panel-header strong { font-size: 0.95rem; }
.schedule-panel-close {
    background: none; border: none; font-size: 1.4rem;
    cursor: pointer; color: var(--gray-600); line-height: 1; padding: 0;
}
.schedule-panel-close:hover { color: var(--dark); }
.schedule-panel-subtitle {
    font-size: 0.8rem; color: var(--gray-600); margin-bottom: 14px;
}
.schedule-dates {
    display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap;
}
.schedule-date-btn {
    display: flex; flex-direction: column; align-items: center;
    padding: 10px 14px; border: 1px solid var(--gray-200);
    border-radius: var(--radius); background: var(--white);
    cursor: pointer; transition: all 0.2s; min-width: 70px;
}
.schedule-date-btn:hover { border-color: var(--orange); }
.schedule-date-btn.active {
    border-color: var(--orange); background: var(--orange);
    color: var(--white);
}
.schedule-date-day { font-size: 0.75rem; font-weight: 600; }
.schedule-date-num { font-size: 0.82rem; }
.schedule-times {
    display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px;
}
.schedule-time-btn {
    padding: 8px 14px; border: 1px solid var(--gray-200);
    border-radius: 50px; background: var(--white);
    font-size: 0.82rem; cursor: pointer; transition: all 0.2s;
}
.schedule-time-btn:hover { border-color: var(--orange); }
.schedule-time-btn.active {
    border-color: var(--orange); background: var(--orange);
    color: var(--white);
}
.schedule-confirm-btn {
    width: 100%; padding: 12px; font-size: 0.9rem;
}
.schedule-confirm-btn:disabled {
    opacity: 0.4; cursor: not-allowed;
}

.item-modal-body { padding: 24px 28px; flex: 1; overflow-y: auto; }

.item-modal-instr-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 12px; cursor: pointer;
}
.item-modal-instr-header strong {
    display: block; font-size: 0.95rem; color: var(--dark);
}
.item-modal-instr-header span {
    font-size: 0.8rem; color: var(--gray-600);
}
.item-modal-chevron { color: var(--gray-400); font-size: 0.8rem; }

.item-modal-textarea {
    width: 100%; min-height: 120px; padding: 14px;
    border: 1px solid var(--gray-200); border-radius: var(--radius);
    font-family: inherit; font-size: 0.88rem; color: var(--dark);
    resize: vertical; outline: none; transition: border-color 0.2s;
}
.item-modal-textarea::placeholder { color: var(--gray-400); }
.item-modal-textarea:focus { border-color: var(--gray-400); }

.item-modal-footer {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 28px; border-top: 1px solid var(--gray-200);
    gap: 16px;
}

.qty-control {
    display: flex; align-items: center; gap: 0;
}
.qty-btn {
    width: 40px; height: 40px; border: 1px solid var(--gray-200);
    background: var(--gray-100); cursor: pointer;
    font-size: 1.1rem; color: var(--gray-600);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.qty-btn:first-child { border-radius: 50px 0 0 50px; }
.qty-btn:hover { background: var(--gray-200); }
.qty-plus {
    background: var(--dark); color: var(--white);
    border-color: var(--dark); border-radius: 0 50px 50px 0;
}
.qty-plus:hover { background: #333; }
.qty-value {
    width: 40px; height: 40px; display: flex;
    align-items: center; justify-content: center;
    font-weight: 700; font-size: 1rem;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    background: var(--white);
}

.btn-add-cart {
    display: flex; align-items: center; gap: 24px;
    padding: 14px 32px; border-radius: 50px;
    border: 1px solid var(--gray-200); background: var(--gray-100);
    font-size: 0.95rem; font-weight: 600; color: var(--dark);
    cursor: pointer; transition: all 0.2s;
    margin-left: auto;
}
.btn-add-cart:hover { background: var(--gray-200); }
.btn-add-cart span { font-weight: 700; }
.btn-add-cart-disabled {
    opacity: 0.4; cursor: not-allowed; pointer-events: none;
}

/* ========== CART ICON ========== */
.navbar-actions { display: flex; align-items: center; gap: 12px; }
.cart-icon {
    position: relative; background: none; border: 1px solid var(--gray-200);
    border-radius: 50%; width: 42px; height: 42px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--gray-600); transition: all 0.2s;
}
.cart-icon:hover { border-color: var(--orange); color: var(--orange); }
.cart-badge {
    position: absolute; top: -6px; right: -6px;
    background: var(--orange); color: var(--white);
    font-size: 0.7rem; font-weight: 700;
    min-width: 20px; height: 20px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    padding: 0 5px; line-height: 1;
}

/* ========== CART DRAWER ========== */
.cart-drawer-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.4); z-index: 9998;
}
.cart-drawer-overlay.open { display: block; }
.cart-drawer {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 400px; max-width: 90vw; background: var(--white);
    z-index: 9999; display: flex; flex-direction: column;
    transform: translateX(100%); transition: transform 0.3s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px; border-bottom: 1px solid var(--gray-200);
}
.cart-drawer-header h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.3rem; font-weight: 700; margin: 0;
}
.cart-drawer-close {
    background: none; border: none; font-size: 1.8rem;
    cursor: pointer; color: var(--gray-600); padding: 0; line-height: 1;
}
.cart-drawer-close:hover { color: var(--dark); }
.cart-drawer-body {
    flex: 1; overflow-y: auto; padding: 16px 24px;
}
.cart-empty {
    text-align: center; color: var(--gray-600);
    padding: 40px 0; font-size: 0.95rem;
}
.cart-drawer-footer {
    padding: 20px 24px; border-top: 1px solid var(--gray-200);
}
.cart-subtotal {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 1.05rem; font-weight: 700; margin-bottom: 16px;
}
.cart-checkout-btn { width: 100%; padding: 14px; font-size: 1rem; }

/* Cart Items */
.cart-item {
    padding: 16px 0; border-bottom: 1px solid var(--gray-200);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-info strong {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 0.92rem; font-weight: 700; font-style: italic;
    display: block; margin-bottom: 4px;
}
.cart-item-tag {
    display: inline-block; font-size: 0.65rem; font-weight: 700;
    padding: 2px 8px; border-radius: 4px; margin-bottom: 4px;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.cart-tag-lunch { background: #fff3e0; color: #e65100; }
.cart-tag-allday { background: #e8f5e9; color: #2e7d32; }
.cart-item-schedule {
    display: block; font-size: 0.78rem; color: var(--orange);
    margin-bottom: 4px; font-weight: 600;
}
.cart-item-instructions {
    display: block; font-size: 0.78rem; color: var(--gray-600);
    margin-bottom: 8px; font-style: italic;
}
.cart-item-controls {
    display: flex; align-items: center; gap: 12px; margin-top: 8px;
}
.cart-item-qty {
    display: flex; align-items: center; gap: 0;
}
.cart-qty-btn {
    width: 30px; height: 30px; border: 1px solid var(--gray-200);
    background: var(--gray-100); cursor: pointer;
    font-size: 1rem; display: flex; align-items: center;
    justify-content: center; color: var(--gray-600); transition: all 0.2s;
}
.cart-qty-btn:first-child { border-radius: 6px 0 0 6px; }
.cart-qty-btn:last-child { border-radius: 0 6px 6px 0; }
.cart-qty-btn:hover { background: var(--gray-200); }
.cart-item-qty span {
    width: 32px; height: 30px; display: flex; align-items: center;
    justify-content: center; font-weight: 700; font-size: 0.88rem;
    border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200);
}
.cart-item-price {
    font-weight: 700; font-size: 0.92rem; margin-left: auto;
}
.cart-item-remove {
    background: none; border: none; font-size: 1.3rem;
    cursor: pointer; color: var(--gray-400); padding: 0 4px;
    line-height: 1; transition: color 0.2s;
}
.cart-item-remove:hover { color: #d32f2f; }

/* ========== CART TOAST ========== */
.cart-toast {
    position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(80px);
    background: var(--dark); color: var(--white);
    padding: 12px 28px; border-radius: 50px;
    font-size: 0.9rem; font-weight: 600;
    z-index: 10001; opacity: 0; pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    white-space: nowrap;
}
.cart-toast.show {
    opacity: 1; transform: translateX(-50%) translateY(0);
}

/* ========== CHECKOUT MODAL ========== */
.checkout-overlay {
    display: none; position: fixed; inset: 0; z-index: 10000;
    background: rgba(0,0,0,0.6);
    align-items: center; justify-content: center;
    overflow-y: auto; padding: 24px;
}
.checkout-overlay.open { display: flex; }
.checkout-modal {
    background: var(--white); border-radius: 20px;
    width: 100%; max-width: 560px;
    max-height: 90vh; display: flex; flex-direction: column;
    animation: itemFadeScale 0.25s ease-out;
    margin: auto;
}
.checkout-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 28px; border-bottom: 1px solid var(--gray-200);
    gap: 12px;
}
.checkout-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.3rem; font-weight: 700; margin: 0;
    flex: 1; text-align: center;
}
.checkout-back {
    display: flex; align-items: center; gap: 6px;
    background: none; border: none; cursor: pointer;
    font-size: 0.88rem; font-weight: 600; color: var(--gray-600);
    padding: 0; white-space: nowrap;
}
.checkout-back:hover { color: var(--dark); }
.checkout-close {
    background: none; border: none; font-size: 1.8rem;
    cursor: pointer; color: var(--gray-600); padding: 0; line-height: 1;
}
.checkout-close:hover { color: var(--dark); }
.checkout-body {
    flex: 1; overflow-y: auto; padding: 24px 28px;
}
.checkout-section {
    margin-bottom: 28px;
}
.checkout-section h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.05rem; font-weight: 700; margin-bottom: 16px;
    padding-bottom: 8px; border-bottom: 1px solid var(--gray-200);
}
.checkout-field {
    margin-bottom: 16px;
}
.checkout-field label {
    display: block; font-size: 0.85rem; font-weight: 600;
    color: var(--gray-800); margin-bottom: 6px;
}
.checkout-field .required { color: #d32f2f; }
.checkout-field input {
    width: 100%; padding: 12px 14px;
    border: 1px solid var(--gray-200); border-radius: var(--radius);
    font-family: inherit; font-size: 0.92rem; color: var(--dark);
    outline: none; transition: border-color 0.2s;
}
.checkout-field input::placeholder { color: var(--gray-400); }
.checkout-field input:focus { border-color: var(--orange); }
.checkout-field input.input-error { border-color: #d32f2f; }
.field-error {
    display: block; font-size: 0.78rem; color: #d32f2f;
    margin-top: 4px; min-height: 0;
}
.checkout-card-row {
    display: flex; gap: 12px;
}
.checkout-field-card { flex: 2; }
.checkout-field-expiry { flex: 1; }
.checkout-field-cvc { flex: 1; }

/* Order Summary in checkout */
.checkout-summary {
    margin-bottom: 12px;
}
.checkout-summary-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 0; font-size: 0.88rem;
    border-bottom: 1px solid var(--gray-100);
}
.checkout-summary-item:last-child { border-bottom: none; }
.checkout-summary-details {
    flex: 1; display: flex; flex-direction: column;
}
.checkout-summary-name {
    color: var(--dark);
}
.checkout-summary-note {
    font-size: 0.78rem; color: var(--gray-600); font-style: italic;
}
.checkout-summary-qty {
    color: var(--gray-600); font-size: 0.82rem; margin: 0 12px;
    white-space: nowrap;
}
.checkout-summary-price {
    font-weight: 700; white-space: nowrap;
}
.checkout-total {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 0 0; border-top: 2px solid var(--dark);
    font-size: 1.1rem; font-weight: 700;
}
.checkout-submit-btn {
    width: 100%; padding: 16px; font-size: 1rem;
    margin-top: 8px;
}
.checkout-submit-btn:disabled {
    opacity: 0.6; cursor: not-allowed;
}

/* ========== TERMS PAGE ========== */
.terms-page {
    padding: 40px 0 64px;
    max-width: 800px;
    margin: 0 auto;
}
.terms-page h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2rem; font-weight: 900; margin-bottom: 4px;
}
.terms-updated {
    color: var(--gray-600); font-size: 0.85rem; margin-bottom: 24px;
}
.terms-page h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.3rem; font-weight: 700;
    margin-top: 32px; margin-bottom: 12px;
    padding-bottom: 6px; border-bottom: 1px solid var(--gray-200);
}
.terms-page h3 {
    font-size: 1.05rem; font-weight: 700;
    margin-top: 20px; margin-bottom: 8px;
}
.terms-page p {
    font-size: 0.9rem; color: var(--gray-800); line-height: 1.75;
    margin-bottom: 12px;
}
.terms-page ul {
    padding-left: 24px; margin-bottom: 16px;
    list-style: disc;
}
.terms-page ul li {
    font-size: 0.9rem; color: var(--gray-800); line-height: 1.75;
    margin-bottom: 6px;
}
.terms-page a { color: var(--orange); }
.terms-page a:hover { text-decoration: underline; }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .gallery-track img { height: 160px; width: 240px; }
    .hero h1 { font-size: 2.2rem; }
    .about-card { grid-template-columns: 1fr; }
    .about-img { min-height: 240px; }
    .about-card-text { padding: 32px 24px; }
    .menu-layout { grid-template-columns: 1fr; }
    .menu-sidebar { position: static; }
    .location-grid { grid-template-columns: 1fr; }
    .menu-items-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .hero h1 { font-size: 1.7rem; }
    .hero-inner { padding: 40px 16px; }
    .navbar-name { font-size: 1rem; }
    .cart-drawer { width: 100%; max-width: 100vw; }
    .navbar-actions .btn { padding: 8px 16px; font-size: 0.82rem; }
    .checkout-overlay { padding: 0; }
    .checkout-modal { max-width: 100%; max-height: 100vh; border-radius: 0; height: 100vh; }
    .checkout-card-row { flex-direction: column; gap: 0; }
    .checkout-header { padding: 16px 20px; }
    .checkout-body { padding: 20px; }
}
