/* ========================================================
   MAMA LYDIA'S BITES - Digital QR Menu Stylesheet
   Brand Identity: Black, Charcoal, Bright Orange, White
   Mobile-First, High Contrast, Fast Loading
   ======================================================== */

:root {
    --bg-main: #0c0c0c;
    --bg-card: #161616;
    --bg-card-hover: #1e1e1e;
    --bg-surface: #222222;
    --bg-header: #111111;
    --accent-orange: #ff7a00;
    --accent-orange-hover: #ff9124;
    --accent-orange-deep: #e05e00;
    --accent-orange-glow: rgba(255, 122, 0, 0.25);
    --text-white: #ffffff;
    --text-light: #ececec;
    --text-muted: #a0a0a0;
    --text-dim: #777777;
    --status-green: #10b981;
    --status-green-bg: rgba(16, 185, 129, 0.15);
    --status-red: #ef4444;
    --status-red-bg: rgba(239, 68, 68, 0.15);
    --fb-blue: #1877f2;
    --fb-blue-hover: #166fe5;
    --border-subtle: #2a2a2a;
    --border-orange: rgba(255, 122, 0, 0.35);
    --font-heading: 'Bebas Neue', 'Oswald', sans-serif;
    --font-sub: 'Oswald', sans-serif;
    --font-body: 'Montserrat', system-ui, -apple-system, sans-serif;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.6);
    --shadow-orange: 0 4px 20px rgba(255, 122, 0, 0.3);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--bg-main);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 122, 0, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 122, 0, 0.03) 0%, transparent 40%),
        url('../images/chalkboard_bg.jpg');
    background-repeat: repeat;
    background-blend-mode: overlay;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.5;
    overflow-x: hidden;
    padding-bottom: 70px; /* space for mobile bottom nav */
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

.container {
    width: 100%;
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

/* ==========================================
   SITE HEADER
   ========================================== */
.site-header {
    background: linear-gradient(180deg, #151515 0%, #0d0d0d 100%);
    border-bottom: 2px solid var(--border-orange);
    padding: 16px 0 12px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.brand-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-logo-link {
    flex-shrink: 0;
    display: block;
    transition: transform 0.2s ease;
}

.brand-logo-link:hover {
    transform: scale(1.04);
}

.brand-logo {
    width: 82px;
    height: 82px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 2px solid var(--accent-orange);
    box-shadow: 0 0 15px var(--accent-orange-glow);
    background: transparent;
    object-fit: cover;
    display: block;
}

.brand-text {
    flex: 1;
    min-width: 0;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    letter-spacing: 1.5px;
    color: var(--text-white);
    line-height: 1;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.brand-tagline {
    font-size: 0.8rem;
    color: var(--accent-orange);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.status-and-update {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 9px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.status-open {
    background: var(--status-green-bg);
    color: var(--status-green);
    border: 1px solid var(--status-green);
}

.status-closed {
    background: var(--status-red-bg);
    color: var(--status-red);
    border: 1px solid var(--status-red);
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: currentColor;
    box-shadow: 0 0 6px currentColor;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.3); }
}

.last-updated-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* Business Info Card */
.biz-info-card {
    background: rgba(22, 22, 22, 0.85);
    backdrop-filter: blur(4px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    margin-top: 12px;
}

.biz-address {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.35;
}

.biz-address svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.biz-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.76rem;
    color: var(--text-muted);
}

.amenity-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ==========================================
   ANNOUNCEMENTS
   ========================================== */
.announcements-section {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.announcement-card {
    background: linear-gradient(90deg, #241405 0%, #171717 100%);
    border: 1px solid var(--accent-orange);
    border-left: 4px solid var(--accent-orange);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.announcement-pill {
    background: var(--accent-orange);
    color: #000;
    font-family: var(--font-sub);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
}

.announcement-content strong {
    color: var(--text-white);
    font-size: 0.88rem;
    display: block;
}

.announcement-content p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 2px;
}

/* ==========================================
   STICKY SEARCH & CATEGORY BAR
   ========================================== */
.sticky-nav-wrapper {
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(12, 12, 12, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 10px 0 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.7);
}

.menu-search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 12px;
    color: var(--accent-orange);
    pointer-events: none;
}

.search-input {
    width: 100%;
    height: 42px;
    background: #1c1c1c;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    padding: 0 40px 0 40px;
    color: var(--text-white);
    font-size: 0.88rem;
    font-family: var(--font-body);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 10px var(--accent-orange-glow);
    background: #222222;
}

.search-clear {
    position: absolute;
    right: 12px;
    color: var(--text-muted);
    font-size: 1.4rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.search-clear:hover {
    color: var(--text-white);
}

/* Category Horizontal Scroller */
.category-pills-nav {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    gap: 8px;
    padding: 10px 0 4px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE */
    -webkit-overflow-scrolling: touch;
}

.category-pills-nav::-webkit-scrollbar {
    display: none;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    background: #1e1e1e;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
    user-select: none;
    flex-shrink: 0;
}

.category-pill:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.category-pill.active {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-deep) 100%);
    color: #000;
    font-weight: 700;
    border-color: var(--accent-orange);
    box-shadow: var(--shadow-orange);
}

/* Filter Info Bar */
.filter-info-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    background: #1c150e;
    border: 1px solid var(--border-orange);
    border-radius: var(--radius-sm);
    margin-top: 10px;
    font-size: 0.82rem;
    color: var(--accent-orange);
    font-weight: 600;
}

.filter-reset-link {
    color: var(--text-white);
    text-decoration: underline;
    font-weight: 600;
}

/* ==========================================
   CATEGORY SECTIONS & PRODUCTS
   ========================================== */
.menu-content-container {
    margin-top: 16px;
}

.menu-category-section {
    margin-bottom: 32px;
    scroll-margin-top: 110px; /* Offset for sticky nav */
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 10px;
    margin-bottom: 14px;
    border-bottom: 2px solid #281d13;
    position: relative;
}

.category-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--accent-orange);
}

.cat-header-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.cat-header-text {
    flex: 1;
}

.category-heading {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 1px;
    color: var(--accent-orange);
    line-height: 1.1;
    text-transform: uppercase;
}

.category-sub {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.cat-count-badge {
    background: #1f1f1f;
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

/* ==========================================
   MENU LISTING (Clean, Fast, NO Pictures)
   ========================================== */
.menu-items-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu-list-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
    cursor: pointer;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

.menu-list-item:hover, .menu-list-item:focus-visible {
    transform: translateY(-2px);
    background: #1a1a1a;
    border-color: var(--border-orange);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6), 0 0 10px var(--accent-orange-glow);
    outline: none;
}

.menu-list-item:active {
    transform: translateY(0);
}

/* Sold Out Styling */
.menu-list-item.is-sold-out {
    opacity: 0.62;
    background: #111111;
    border-color: #2e1e1e;
}

.menu-list-item.is-sold-out .item-title {
    color: #999999;
}

.menu-list-item.is-sold-out .item-price {
    color: #888888;
    text-decoration: line-through;
}

/* Item Main (Left Column) */
.list-item-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.item-title-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.item-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.3;
    letter-spacing: 0.2px;
}

.item-badges-group {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-tag-available {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.35);
}

.badge-tag-sold-out {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.5);
    font-weight: 800;
}

.badge-tag-popular {
    background: rgba(255, 122, 0, 0.2);
    color: #ff7a00;
    border: 1px solid rgba(255, 122, 0, 0.45);
    font-weight: 800;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}

.dot-green {
    background: #10b981;
    box-shadow: 0 0 5px #10b981;
}

.dot-red {
    background: #ef4444;
    box-shadow: 0 0 5px #ef4444;
}

.item-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.35;
    margin-top: 2px;
}

.item-restore-notice {
    font-size: 0.74rem;
    font-weight: 600;
    color: #facc15;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 3px;
}

/* Inline Sizes List */
.item-sizes-inline {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}

.sizes-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
}

.size-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #202020;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 2px 7px;
    font-size: 0.74rem;
    color: var(--text-light);
}

.size-pill .size-price {
    color: var(--accent-orange);
    font-weight: 700;
}

.size-pill.is-sold-out {
    opacity: 0.55;
    text-decoration: line-through;
    border-color: rgba(239, 68, 68, 0.3);
}

.size-sold-tag {
    font-size: 0.65rem;
    color: #ef4444;
    font-weight: 800;
}

/* Inline Flavors Summary */
.item-flavors-inline {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
    font-size: 0.76rem;
    color: var(--text-dim);
}

.flavors-label {
    font-weight: 700;
    color: var(--accent-orange);
    font-size: 0.72rem;
    text-transform: uppercase;
}

.flavors-summary {
    color: var(--text-muted);
}

.btn-flavors-link {
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 0.72rem;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Item Side (Right Column: Price & Action) */
.list-item-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 8px;
    flex-shrink: 0;
    text-align: right;
}

.item-price {
    font-family: var(--font-sub);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--accent-orange);
    letter-spacing: 0.5px;
    white-space: nowrap;
    line-height: 1.1;
}

.btn-item-options {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    background: #222222;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
    transition: all 0.2s ease;
}

.menu-list-item:hover .btn-item-options {
    color: #000;
    background: var(--accent-orange);
    border-color: var(--accent-orange);
}

/* ==========================================
   CATEGORY ADD-ONS CARD
   ========================================== */
.category-addons-card {
    background: #141414;
    border: 1px dashed var(--border-orange);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    margin-top: 14px;
}

.cat-addons-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.addons-icon {
    font-size: 0.9rem;
}

.cat-addons-title {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--accent-orange);
    letter-spacing: 0.5px;
}

.cat-addons-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cat-addon-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #1c1c1c;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 4px 10px;
    font-size: 0.76rem;
    color: var(--text-light);
}

.cat-addon-chip .addon-name {
    font-weight: 600;
}

.cat-addon-chip .addon-price {
    font-weight: 700;
    color: var(--accent-orange);
}

.cat-addon-chip.is-sold-out {
    opacity: 0.5;
    background: #101010;
    border-color: rgba(239, 68, 68, 0.3);
}

.addon-sold-badge {
    font-size: 0.65rem;
    font-weight: 800;
    color: #ef4444;
}

/* Mobile Adjustments for Listing */
@media (max-width: 480px) {
    .menu-list-item {
        padding: 12px 14px;
        gap: 10px;
    }
    .item-title {
        font-size: 0.98rem;
    }
    .item-price {
        font-size: 1.2rem;
    }
    .item-desc {
        font-size: 0.78rem;
    }
    .category-addons-card {
        padding: 10px 12px;
    }
}

/* No results card */
.no-results-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-card);
    border: 1px dashed var(--border-subtle);
    border-radius: var(--radius-md);
    margin: 20px 0;
}

.no-results-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.no-results-card h3 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.no-results-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.btn-reset-search {
    background: var(--accent-orange);
    color: #000;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: var(--radius-full);
}

/* ==========================================
   FACEBOOK PROMOTION & FEEDBACK SECTION
   ========================================== */
.social-engagement-section {
    margin-top: 48px;
    margin-bottom: 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.fb-promo-card, .feedback-card {
    background: linear-gradient(145deg, #171717 0%, #111111 100%);
    border: 1px solid var(--border-orange);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.fb-promo-card::before, .feedback-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange) 0%, #ff4500 100%);
}

.fb-card-badge {
    align-self: flex-start;
    background: rgba(255, 122, 0, 0.15);
    color: var(--accent-orange);
    border: 1px solid var(--border-orange);
    font-family: var(--font-sub);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.fb-card-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 1px;
    color: var(--text-white);
    line-height: 1.1;
}

.fb-card-subtitle {
    font-size: 0.95rem;
    color: var(--accent-orange);
    margin-top: 4px;
    font-weight: 600;
}

.fb-card-desc, .feedback-intro {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 8px;
    line-height: 1.45;
}

.fb-perks-list {
    list-style: none;
    margin: 16px 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
}

@media (max-width: 400px) {
    .fb-perks-list {
        grid-template-columns: 1fr;
    }
}

.fb-perks-list li {
    font-size: 0.82rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.perk-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.2s ease;
    width: 100%;
    margin-top: auto;
    text-align: center;
}

.btn-fb-follow {
    background: var(--fb-blue);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.35);
}

.btn-fb-follow:hover {
    background: var(--fb-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.5);
}

.btn-fb-feedback {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-deep) 100%);
    color: #000000;
    box-shadow: var(--shadow-orange);
}

.btn-fb-feedback:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 122, 0, 0.45);
}

.fb-icon {
    flex-shrink: 0;
}

/* Feedback Prompt Box */
.feedback-prompt-box {
    background: #1c1c1c;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 14px;
    margin: 14px 0;
}

.prompt-header {
    font-family: var(--font-sub);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--accent-orange);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.prompt-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 3px;
    margin-bottom: 8px;
}

.prompt-questions {
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Tagging Alert */
.tagging-alert {
    background: rgba(255, 122, 0, 0.1);
    border: 1px dashed var(--accent-orange);
    border-radius: var(--radius-md);
    padding: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
}

.alert-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.alert-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.tag-highlight {
    font-size: 0.95rem !important;
    color: var(--accent-orange) !important;
    font-weight: 800 !important;
    margin: 2px 0 !important;
}

.tag-note {
    font-size: 0.74rem;
    color: var(--text-light);
    display: block;
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
    background: #090909;
    border-top: 1px solid var(--border-subtle);
    padding: 30px 0 20px;
    text-align: center;
    margin-top: 20px;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    width: 70px;
    height: 70px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 1px solid var(--accent-orange);
    margin: 0 auto 8px;
    object-fit: cover;
    background: transparent;
    display: block;
}

.footer-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    letter-spacing: 1px;
    color: var(--text-white);
}

.footer-tagline {
    font-size: 0.84rem;
    color: var(--accent-orange);
    font-weight: 600;
}

.footer-location {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.footer-social-block {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 4px 0;
}

.social-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #181818;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-white);
    transition: all 0.2s ease;
}

.social-link:hover {
    border-color: var(--fb-blue);
    color: var(--fb-blue);
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 14px;
    width: 100%;
}

.motto {
    font-family: var(--font-sub);
    font-size: 0.95rem;
    color: var(--accent-orange);
    letter-spacing: 1px;
}

.copyright-text {
    font-size: 0.74rem;
    color: var(--text-dim);
    margin-top: 4px;
}

/* ==========================================
   PRODUCT DETAIL BOTTOM SHEET / MODAL
   ========================================== */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(6px);
    z-index: 1000;
    display: flex;
    align-items: flex-end;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.modal-bottom-sheet {
    background: #181818;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px 20px 0 0;
    border: 1px solid var(--border-subtle);
    border-bottom: none;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.8);
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    position: relative;
    transform: translateY(100%);
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.modal-backdrop.is-open .modal-bottom-sheet {
    transform: translateY(0);
}

@media (min-width: 768px) {
    .modal-backdrop {
        align-items: center;
        justify-content: center;
        padding: 20px;
    }
    .modal-bottom-sheet {
        border-radius: 20px;
        border-bottom: 1px solid var(--border-subtle);
        max-height: 90vh;
    }
}

.sheet-drag-handle {
    width: 44px;
    height: 4px;
    background: #444;
    border-radius: 2px;
    margin: 10px auto 4px;
    flex-shrink: 0;
}

.sheet-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.2s ease;
}

.sheet-close-btn:hover {
    background: var(--accent-orange);
    color: #000;
}

.modal-content-scroller {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex: 1;
}

.modal-top-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
    padding-top: 4px;
}

.modal-body {
    padding: 16px 20px 30px;
}

.modal-category {
    font-family: var(--font-sub);
    font-size: 0.8rem;
    color: var(--accent-orange);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 0.5px;
    color: var(--text-white);
    line-height: 1.1;
    margin-top: 2px;
}

.modal-price {
    font-family: var(--font-sub);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-top: 4px;
}

.modal-description {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-top: 10px;
    line-height: 1.45;
}

.modal-section {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
}

.modal-section-title {
    font-family: var(--font-sub);
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Variants Grid */
.variants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 8px;
}

.variant-card {
    background: #222222;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 10px;
    text-align: center;
    position: relative;
}

.variant-card.is-sold-out {
    opacity: 0.6;
    border-color: #3b2020;
    background: #1b1616;
}

.variant-name {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text-white);
}

.variant-price {
    font-family: var(--font-sub);
    font-size: 1.1rem;
    color: var(--accent-orange);
    margin-top: 2px;
}

.variant-status {
    font-size: 0.68rem;
    font-weight: 700;
    margin-top: 4px;
}

.variant-status.avail {
    color: var(--status-green);
}

.variant-status.sold {
    color: var(--status-red);
}

/* Flavors Chips */
.flavors-chips-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.flavor-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #222;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
}

.flavor-chip.is-sold-out {
    opacity: 0.55;
    background: #1b1616;
    border-color: #3b2020;
    text-decoration: line-through;
}

.flavor-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.flavor-dot.avail {
    background: var(--status-green);
    box-shadow: 0 0 5px var(--status-green);
}

.flavor-dot.sold {
    background: var(--status-red);
    box-shadow: 0 0 5px var(--status-red);
}

/* Addons List */
.addons-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 8px;
}

.addon-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: #202020;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
}

.addon-item.is-sold-out {
    opacity: 0.6;
    text-decoration: line-through;
    color: var(--text-muted);
}

.addon-name {
    color: var(--text-light);
}

.addon-price {
    font-family: var(--font-sub);
    font-weight: 700;
    color: var(--accent-orange);
}

/* ==========================================
   FLOATING BUTTON & MOBILE NAV
   ========================================== */
.floating-btn {
    position: fixed;
    bottom: 80px;
    right: 16px;
    z-index: 80;
    background: var(--accent-orange);
    color: #000;
    border-radius: var(--radius-full);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-orange);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
}

.floating-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(16, 16, 16, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 100;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: var(--text-muted);
    font-size: 0.68rem;
    font-weight: 600;
    padding: 6px 12px;
    transition: color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-nav-item:hover, .mobile-nav-item.active {
    color: var(--accent-orange);
}

.mobile-nav-item.fb-nav-item:hover {
    color: var(--fb-blue);
}

@media (min-width: 900px) {
    .mobile-bottom-nav {
        display: none;
    }
    body {
        padding-bottom: 0;
    }
    .floating-btn {
        bottom: 24px;
        right: 24px;
    }
}
