/* ═══════════════════════════════════════
   TAJ SHAWARMA — MAIN STYLESHEET
   ═══════════════════════════════════════ */

/* ─── CSS VARIABLES ─── */
:root {
    --orange: #FF8C00;
    --orange-light: #FFA733;
    --orange-glow: rgba(255, 140, 0, 0.35);
    --dark: #0d0d0d;
    --dark-card: #1a1a1a;
    --white: #ffffff;
    --text-muted: #cccccc;
}

/* ─── RESET ─── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ─── BASE ─── */
body {
    background: #fff;
    font-family: 'Manrope', sans-serif;
    color: #111;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3,
.hero-slider .hero-text h2,
.menu h2,
.cart-drawer-header h3,
.menu-category h3,
.category-header h3 {
    font-family: 'Noto Serif', serif;
    font-weight: 700;
}

/* ═══════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════ */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 200;
    background: rgba(17, 17, 17, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.logo {
    height: 50px;
}

nav a {
    color: var(--white);
    margin-left: 28px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--orange);
    border-radius: 99px;
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--orange);
}

nav a:hover::after {
    width: 100%;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-name {
    font-family: 'Noto Serif', serif;
    font-style: italic;
    font-size: 22px;
    font-weight: 700;
    color: var(--orange-light);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* ═══════════════════════════════════════
   HERO SLIDER
   ═══════════════════════════════════════ */
.hero-slider {
    position: relative;
    height: 100vh;
    height: 100svh;
    overflow: hidden;
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.1s ease;
    z-index: 0;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
    transition: transform 6s ease;
    display: block;
}

.slide.active img {
    transform: scale(1);
}

.slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.70) 100%);
    z-index: 1;
}

.hero-slider .hero-text {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    color: white;
}

.hero-slider .hero-text h2 {
    font-family: 'Noto Serif', serif;
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 14px;
    text-shadow: 0 4px 24px rgba(0,0,0,0.5);
    max-width: 700px;
}

.hero-slider .hero-text p {
    font-size: 18px;
    color: #e8e8e8;
    margin-bottom: 30px;
    max-width: 480px;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

/* ─── CTA BUTTON ─── */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    padding: 14px 36px;
    color: white;
    text-decoration: none;
    border-radius: 99px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    box-shadow: none;
    transition: transform 0.25s, box-shadow 0.25s;
}

.btn:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: none;
}

/* ─── SLIDER DOTS ─── */
.slider-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 99px;
    background: rgba(255,255,255,0.4);
    border: 2px solid rgba(255,255,255,0.6);
    cursor: pointer;
    transition: background 0.3s, width 0.3s;
}

.dot.active {
    background: var(--orange);
    border-color: var(--orange);
    width: 28px;
}

/* ─── SLIDER ARROWS ─── */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 32px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    transition: background 0.3s, transform 0.2s;
    line-height: 1;
    padding-bottom: 2px;
}

.slider-arrow.left  { left: 24px; }
.slider-arrow.right { right: 24px; }

.slider-arrow:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-50%) scale(1.08);
}

/* ═══════════════════════════════════════
   MENU SECTION
   ═══════════════════════════════════════ */
.menu {
    background: #1a1816;
    padding: 80px 20px;
    text-align: center;
}

.menu h2 {
    font-family: 'Noto Serif', serif;
    font-size: 38px;
    margin-bottom: 10px;
    color: #f0ebe4;
}

.section-label {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 10px;
}

/* ─── CATEGORY NAV PILLS ─── */
.menu-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 56px;
    margin-top: 28px;
}

.menu-nav-btn {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255,255,255,0.05);
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: 99px;
    font-size: 13px;
    font-weight: 700;
    color: #ccc;
    text-decoration: none;
    transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
    letter-spacing: 0.3px;
}

.menu-nav-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    transform: translateY(-2px);
}

/* ─── CATEGORY BLOCK ─── */
.menu-category {
    max-width: 720px;
    margin: 0 auto 60px;
    text-align: left;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.menu-category h3 {
    font-family: 'Noto Serif', serif;
    font-size: 26px;
    color: #f0ebe4;
    font-weight: 700;
}

/* ─── MENU ITEMS LIST ─── */
.menu-category ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ─── MENU ITEM CARD — uniform height ─── */
.menu-category li {
    background: #272421;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 4px 18px rgba(0,0,0,0.3);
    display: flex;
    align-items: stretch;
    gap: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
    min-height: 110px;
    transition: transform 0.25s, box-shadow 0.25s;
}

/* hover: subtle lift only, no orange glow */
.menu-category li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.45);
}

/* ─── ITEM IMAGE ─── */
.menu-category li.has-img::before {
    content: '';
    display: block;
    width: 110px;
    min-width: 110px;
    flex-shrink: 0;
    background-image: var(--item-bg);
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    margin: 8px 0 8px 8px;
    align-self: stretch;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.menu-category li.has-img:hover::before {
    transform: scale(1.03);
}

/* ─── ITEM BODY ─── */
.item-body {
    padding: 14px 16px;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.item-variant {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: rgba(255,140,0,0.12);
    color: var(--orange);
    border: 1px solid rgba(255,140,0,0.3);
    padding: 2px 8px;
    border-radius: 99px;
    margin-left: 6px;
    vertical-align: middle;
}

.item-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.item-name {
    font-size: 15px;
    font-weight: 700;
    color: #f0ebe4;
    line-height: 1.4;
}

.item-price {
    font-size: 13px;
    font-weight: 800;
    color: var(--orange);
    white-space: nowrap;
    background: rgba(255,140,0,0.08);
    padding: 3px 10px;
    border-radius: 99px;
    border: 1px solid rgba(255,140,0,0.2);
    flex-shrink: 0;
}

.item-desc {
    font-size: 12px;
    color: rgba(240, 235, 228, 0.45);
    margin: 0 0 8px;
    line-height: 1.5;
    flex: 1;
}

/* ─── QTY BOX ─── */
.item-add-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: auto;
    padding-top: 8px;
}

.qty-box {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: 99px;
    overflow: hidden;
}

.qty-minus,
.qty-plus {
    background: none;
    border: none;
    width: 34px;
    height: 34px;
    font-size: 20px;
    font-weight: 700;
    color: var(--orange);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    flex-shrink: 0;
}

.qty-minus:hover,
.qty-plus:hover {
    background: rgba(255,140,0,0.15);
}

.qty-count {
    font-size: 14px;
    font-weight: 800;
    min-width: 26px;
    text-align: center;
    color: #f0ebe4;
}

/* ═══════════════════════════════════════
   CART BAR
   ═══════════════════════════════════════ */
.cart-bar {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 500px;
    background: #111;
    color: white;
    border-radius: 99px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
    transition: bottom 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cart-bar.visible {
    bottom: 24px;
}

.cart-bar-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-bar-count {
    background: var(--orange);
    color: white;
    font-size: 13px;
    font-weight: 800;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-bar-label {
    font-size: 14px;
    color: #ccc;
}

.cart-bar-btn {
    background: var(--orange);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cart-bar-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px var(--orange-glow);
}

/* ═══════════════════════════════════════
   CART OVERLAY
   ═══════════════════════════════════════ */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ═══════════════════════════════════════
   CART DRAWER
   ═══════════════════════════════════════ */
.cart-drawer {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    height: 85vh;
    background: #fff;
    border-radius: 24px 24px 0 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition: bottom 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 -8px 40px rgba(0,0,0,0.2);
    overflow: hidden;
}

.cart-drawer.open {
    bottom: 0;
}

.cart-drawer-header {
    flex-shrink: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px 16px;
    border-bottom: 1px solid #f0ede6;
}

.cart-drawer-header h3 {
    font-family: 'Noto Serif', serif;
    font-size: 22px;
    color: #111;
}

.cart-close {
    background: #f0ede6;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.cart-close:hover {
    background: #e0ddd6;
}

/* ─── DRAWER BODY ─── */
.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.cart-drawer-body::-webkit-scrollbar {
    display: none;
}

/* ─── PACK ─── */
.cart-pack {
    background: #faf9f6;
    border: 1.5px solid #ede9e1;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 280px;
    flex-shrink: 0;
}

.cart-pack-header {
    flex-shrink: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 16px;
    background: #f0ede6;
}

.cart-pack-label {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #111;
    text-transform: uppercase;
}

.cart-pack-label-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.cart-pack-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.cart-pack-duplicate {
    font-size: 12px;
    font-weight: 700;
    color: var(--orange);
    background: rgba(255,140,0,0.1);
    border: 1px solid rgba(255,140,0,0.25);
    padding: 4px 12px;
    border-radius: 99px;
    cursor: pointer;
    transition: background 0.2s;
}

.cart-pack-duplicate:hover {
    background: rgba(255,140,0,0.2);
}

.cart-pack-remove {
    font-size: 12px;
    font-weight: 700;
    color: #999;
    background: #fff;
    border: 1px solid #e0ddd6;
    padding: 4px 12px;
    border-radius: 99px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.cart-pack-remove:hover {
    background: #fee;
    color: #c00;
    border-color: #fcc;
}

/* ─── PACK ITEMS — inner scroll ─── */
.cart-pack-items {
    flex: 1;
    overflow-y: auto;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.cart-pack-items::-webkit-scrollbar {
    display: none;
}

.cart-pack-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.cart-pack-item-name {
    flex: 1;
    font-weight: 600;
    font-size: 13px;
    color: #333;
}

.cart-pack-item-price {
    color: var(--orange);
    font-weight: 700;
    white-space: nowrap;
    font-size: 13px;
}

.cart-pack-item-qty {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1.5px solid #e0ddd6;
    border-radius: 99px;
    overflow: hidden;
}

.cart-pack-item-qty button {
    background: none;
    border: none;
    width: 28px;
    height: 28px;
    font-size: 16px;
    cursor: pointer;
    color: var(--orange);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.cart-pack-item-qty button:hover {
    background: rgba(255,140,0,0.1);
}

.cart-pack-item-qty span {
    font-size: 13px;
    font-weight: 700;
    min-width: 22px;
    text-align: center;
    color: #111;
}

.cart-pack-subtotal {
    flex-shrink: 0;
    padding: 10px 16px;
    border-top: 1px solid #ede9e1;
    font-size: 13px;
    font-weight: 700;
    color: #555;
    display: flex;
    justify-content: space-between;
}

.cart-pack-subtotal span:last-child {
    color: var(--orange);
}

/* ─── DRAWER FOOTER ─── */
.cart-drawer-footer {
    flex-shrink: 0;
    padding: 16px 24px 28px;
    border-top: 1px solid #f0ede6;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-add-pack {
    background: #f0ede6;
    border: 1.5px dashed #c8c3b8;
    color: #555;
    font-size: 14px;
    font-weight: 700;
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.cart-add-pack:hover {
    background: #e8e4dc;
    color: #111;
}

.cart-add-pack span {
    font-size: 18px;
    color: var(--orange);
    font-weight: 800;
    line-height: 1;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: #111;
    padding: 4px 0;
}

#cartTotal {
    color: var(--orange);
    font-size: 20px;
}

.cart-checkout {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: white;
    border: none;
    padding: 16px;
    border-radius: 99px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 18px var(--orange-glow);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cart-checkout:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 28px var(--orange-glow);
}

.cart-checkout:disabled {
    background: #ccc;
    color: #888;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.checkout-arrow {
    font-size: 20px;
    line-height: 1;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.site-footer {
    background: #0d0d0d;
    color: #e5e2e1;
    padding: 70px 40px 0;
    border-top: 1px solid rgba(255, 140, 0, 0.1);
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.8fr 1.2fr 1.5fr 1.5fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
    font-family: 'Noto Serif', serif;
    font-style: italic;
    font-size: 26px;
    color: var(--orange-light);
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(229, 226, 225, 0.55);
    line-height: 1.75;
    max-width: 280px;
    margin-bottom: 24px;
}

.footer-contact-label {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 14px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(229, 226, 225, 0.6);
    font-size: 16px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.footer-socials a:hover {
    background: var(--orange);
    color: white;
    border-color: var(--orange);
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-col h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    font-size: 14px;
    color: rgba(229, 226, 225, 0.55);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 400;
}

.footer-col ul li a:hover {
    color: var(--orange-light);
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.footer-info-block h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-info-block p {
    font-size: 14px;
    color: rgba(229, 226, 225, 0.55);
    line-height: 1.7;
}

.footer-hours {
    color: var(--orange-light) !important;
    font-weight: 700 !important;
    font-size: 15px !important;
}

.footer-directions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--orange);
    text-decoration: none;
    border: 1.5px solid var(--orange);
    padding: 6px 14px;
    border-radius: 99px;
    transition: background 0.2s, color 0.2s;
}

.footer-directions:hover {
    background: var(--orange);
    color: white;
}

.footer-cta h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 14px;
}

.footer-cta p {
    font-size: 14px;
    color: rgba(229, 226, 225, 0.55);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-order-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 18px var(--orange-glow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.footer-order-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 28px var(--orange-glow);
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(229, 226, 225, 0.25);
    letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes toastIn {
    from { opacity: 0; transform: translateX(-50%) translateY(10px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ═══════════════════════════════════════
   SCROLL MARGIN
   ═══════════════════════════════════════ */
section,
div[id] {
    scroll-margin-top: 80px;
}

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET (max 900px)
   ═══════════════════════════════════════ */
@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE (max 600px)
   ═══════════════════════════════════════ */
@media (max-width: 600px) {

    .navbar {
        padding: 12px 16px;
    }

    nav a {
        margin-left: 14px;
        font-size: 13px;
    }

    .brand-name {
        font-size: 15px;
    }

    .hero-slider {
        height: 100vh;
        height: 100svh;
    }

    .hero-slider .hero-text h2 {
        font-size: 28px;
    }

    .hero-slider .hero-text p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .btn {
        padding: 12px 28px;
        font-size: 14px;
    }

    .slider-arrow {
        display: none;
    }

    .menu {
        padding: 60px 14px;
    }

    .menu h2 {
        font-size: 26px;
    }

    .menu-nav {
        gap: 8px;
        margin-bottom: 36px;
    }

    .menu-nav-btn {
        padding: 6px 14px;
        font-size: 12px;
    }

    .menu-category {
        margin-bottom: 36px;
    }

    .menu-category h3 {
        font-size: 20px;
    }

    .item-top {
        flex-direction: row;
        gap: 6px;
        align-items: flex-start;
        justify-content: flex-start;
        height: auto;
        margin-bottom: 4px;
    }

    .item-name {
        font-size: 14px;
        flex: 1;
    }

    .item-body {
        justify-content: space-between;
    }

    .item-price {
        display: none;
    }

    .item-add-btn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: auto;
        padding-top: 8px;
    }

    .item-add-btn::before {
        content: attr(data-price);
        font-size: 13px;
        font-weight: 800;
        color: var(--orange);
        background: rgba(255,140,0,0.08);
        padding: 3px 10px;
        border-radius: 99px;
        border: 1px solid rgba(255,140,0,0.2);
    }

    .item-desc {
        font-size: 12px;
    }

    .cart-bar {
        width: calc(100% - 24px);
        padding: 12px 16px;
    }

    .cart-bar.visible {
        bottom: 16px;
    }

    .cart-bar-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .cart-drawer {
        height: 92vh;
        border-radius: 20px 20px 0 0;
    }

    .cart-drawer-header {
        padding: 16px 16px 12px;
    }

    .cart-drawer-header h3 {
        font-size: 18px;
    }

    .cart-drawer-body {
        padding: 12px 14px;
        gap: 14px;
    }

    .cart-pack-items {
        padding: 10px 12px;
    }

    .cart-pack-duplicate,
    .cart-pack-remove {
        font-size: 11px;
        padding: 3px 10px;
    }

    .cart-drawer-footer {
        padding: 12px 16px 20px;
        gap: 10px;
    }

    .cart-add-pack {
        padding: 10px;
        font-size: 13px;
    }

    .cart-total-row {
        font-size: 14px;
    }

    #cartTotal {
        font-size: 17px;
    }

    .cart-checkout {
        padding: 14px;
        font-size: 15px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-links {
        gap: 24px;
    }

    .site-footer {
        padding: 40px 16px 0;
    }

    .footer-logo {
        font-size: 22px;
    }

    .footer-tagline {
        font-size: 13px;
    }
}

/* ═══════════════════════════════════════
   RESPONSIVE — SMALL PHONES (max 480px)
   ═══════════════════════════════════════ */
@media (max-width: 480px) {
    .menu-category li.has-img {
        flex-direction: column;
        min-height: unset;
    }

    .menu-category li.has-img::before {
        width: auto;
        min-width: unset;
        height: 240px;
        border-radius: 12px;
        margin: 8px 8px 0 8px;
    }

    .item-body {
        padding: 12px;
    }
}

/* ═══════════════════════════════════════
   RESPONSIVE — VERY SMALL PHONES (max 380px)
   ═══════════════════════════════════════ */
@media (max-width: 380px) {
    nav a {
        margin-left: 10px;
        font-size: 12px;
    }

    .hero-slider .hero-text h2 {
        font-size: 24px;
    }

    .cart-drawer {
        height: 95vh;
    }

    .cart-pack {
        max-height: 240px;
    }

    .footer-links {
        flex-direction: column;
        gap: 28px;
    }
}

/* ═══════════════════════════════════════
   CHECKOUT PAGE
   ═══════════════════════════════════════ */
.checkout-page {
    background: #f5f3ef;
    min-height: 100vh;
}

.checkout-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 100px 24px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.checkout-section {
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.checkout-heading {
    font-family: 'Noto Serif', serif;
    font-size: 22px;
    color: #111;
    margin-bottom: 4px;
}

.checkout-subheading {
    font-size: 13px;
    color: #999;
    margin-bottom: 24px;
}

/* ─── PACK SUMMARY ─── */
.checkout-pack {
    border: 1px solid #ede9e1;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 16px;
}

.checkout-pack-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: #f5f3ef;
}

.checkout-pack-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #555;
}

.checkout-pack-subtotal {
    font-size: 13px;
    font-weight: 800;
    color: var(--orange);
}

.checkout-pack-items {
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkout-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-item-name {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: #222;
}

.checkout-item-qty {
    display: flex;
    align-items: center;
    background: #f5f3ef;
    border: 1.5px solid #e0ddd6;
    border-radius: 99px;
    overflow: hidden;
}

.co-minus,
.co-plus {
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    font-size: 17px;
    font-weight: 700;
    color: var(--orange);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.co-minus:hover,
.co-plus:hover {
    background: rgba(255,140,0,0.1);
}

.co-count {
    font-size: 13px;
    font-weight: 800;
    min-width: 22px;
    text-align: center;
    color: #111;
}

.checkout-item-price {
    font-size: 13px;
    font-weight: 800;
    color: var(--orange);
    white-space: nowrap;
}

.checkout-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0 0;
    border-top: 1px solid #ede9e1;
    margin-top: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #111;
}

#checkoutTotal {
    font-size: 22px;
    font-weight: 800;
    color: var(--orange);
}

/* ─── FORM ─── */
.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 700;
    color: #444;
    letter-spacing: 0.3px;
}

.required {
    color: var(--orange);
}

.form-group input,
.form-group textarea {
    background: #f9f8f5;
    border: 1.5px solid #e0ddd6;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
    font-family: 'Manrope', sans-serif;
    color: #111;
    outline: none;
    transition: border-color 0.2s;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--orange);
}

.delivery-options {
    display: flex;
    gap: 12px;
}

.delivery-option {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f9f8f5;
    border: 1.5px solid #e0ddd6;
    border-radius: 99px;
    padding: 8px 18px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #444;
    transition: border-color 0.2s, background 0.2s;
}

.delivery-option input[type="radio"] {
    accent-color: var(--orange);
}

.delivery-option:has(input:checked) {
    border-color: var(--orange);
    background: rgba(255,140,0,0.06);
    color: var(--orange);
}

.form-error {
    background: #fff0f0;
    border: 1px solid #fcc;
    color: #c00;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
}

/* ─── CONFIRM BUTTON ─── */
.confirm-btn {
    background: linear-gradient(135deg, #25d366, #1fb956);
    color: white;
    border: none;
    padding: 16px 20px;
    border-radius: 99px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(37,211,102,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: 'Manrope', sans-serif;
    letter-spacing: 0.3px;
}

.confirm-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 28px rgba(37,211,102,0.45);
}

.confirm-btn i {
    font-size: 20px;
}

/* ─── CHECKOUT RESPONSIVE ─── */
@media (max-width: 700px) {
    .checkout-wrapper {
        grid-template-columns: 1fr;
        padding: 90px 16px 50px;
        gap: 20px;
    }
}

/* ─── HAMBURGER BUTTON ─── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 300;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 99px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    transform-origin: center;
}

/* Animated X when open */
.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ─── MOBILE NAV OVERLAY ─── */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 149;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}

.mobile-nav-overlay.active {
    opacity: 1;
}

/* ─── MOBILE NAV DROPDOWN ─── */
.mobile-nav {
    display: none;
    position: fixed;
    top: 69px;
    left: 0;
    right: 0;
    background: rgba(17, 17, 17, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 140, 0, 0.15);
    z-index: 150;
    flex-direction: column;
    padding: 8px 0 16px;
    transform: translateY(-10px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-nav.open {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-link {
    display: block;
    padding: 16px 28px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: color 0.2s, padding-left 0.2s;
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    color: var(--orange-light);
    padding-left: 36px;
}

/* ─── SHOW HAMBURGER ON MOBILE ─── */
@media (max-width: 600px) {
    nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav-overlay,
    .mobile-nav {
        display: flex;
    }
}

/* ─── CHECKOUT MOBILE BACK BUTTON ─── */
.checkout-back-mobile {
    display: none;
}

@media (max-width: 700px) {
    .checkout-back-mobile {
        display: flex;
        align-items: center;
        gap: 8px;
        position: fixed;
        bottom: 24px;
        left: 50%;
        transform: translateX(-50%);
        background: #111;
        color: white;
        text-decoration: none;
        padding: 12px 24px;
        border-radius: 99px;
        font-size: 14px;
        font-weight: 700;
        font-family: 'Manrope', sans-serif;
        z-index: 999;
        border: 1px solid rgba(255,255,255,0.1);
        box-shadow: 0 8px 24px rgba(0,0,0,0.4);
        white-space: nowrap;
    }

    .checkout-back-mobile i {
        font-size: 13px;
    }

    /* Push confirm button up so it doesn't hide behind the back button */
    .checkout-wrapper {
        padding-bottom: 80px;
    }
}