/* CSS Reset & Variables */
:root {
    --bg-dark: #0e0e11;
    --bg-card: #16161c;
    --bg-card-hover: #1e1e26;
    --bg-input: #22222d;
    --bg-input-focus: #2c2c3a;
    
    --primary: #ff5722;
    --primary-hover: #f4511e;
    --primary-glow: rgba(255, 87, 34, 0.4);
    
    --secondary: #ffb300;
    --secondary-hover: #ffa000;
    
    --text-main: #ffffff;
    --text-muted: #a0a0b0;
    --text-dark: #121214;
    
    --green: #4caf50;
    --red: #f44336;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-focus: rgba(255, 87, 34, 0.5);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #333340;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Helper Classes */
.text-orange { color: var(--primary); }
.text-green { color: var(--green); }
.text-red { color: var(--red); }
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.animate-pulse {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.95); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-main);
    box-shadow: 0 4px 15px var(--primary-glow);
}
.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.6);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}
.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    background-color: rgba(14, 14, 17, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled {
    background-color: #0e0e11;
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-main);
}

.logo-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    transition: var(--transition-fast);
}

.nav-logo:hover .logo-img {
    transform: rotate(15deg) scale(1.05);
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 30%, #a0a0b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-item {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
    padding: 6px 0;
}

.nav-item:hover, .nav-item.active {
    color: var(--text-main);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-fast);
}

.nav-item:hover::after, .nav-item.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Status Dot Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
}
.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}
.status-badge.open .status-dot {
    background-color: var(--green);
    box-shadow: 0 0 8px var(--green);
}
.status-badge.closed .status-dot {
    background-color: var(--red);
    box-shadow: 0 0 8px var(--red);
}

/* Navigation Call button */
.btn-nav-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary);
    color: var(--text-main);
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-normal);
    box-shadow: 0 4px 12px var(--primary-glow);
}

.btn-nav-call:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 87, 34, 0.6);
}

.btn-nav-call i {
    font-size: 0.95rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Side Navigation Drawer */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background-color: #121216;
    z-index: 2000;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
}
.mobile-nav.active {
    left: 0;
}
.mobile-nav-close {
    align-self: flex-end;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    margin-bottom: 20px;
}
.mobile-nav-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.mobile-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    margin: 0 auto 30px auto;
}
.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: auto;
}
.mobile-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}
.mobile-link:hover {
    color: var(--primary);
    padding-left: 5px;
}
.mobile-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.mobile-footer p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    padding-top: 120px;
    padding-bottom: 60px;
    position: relative;
    background-image: url('/assets/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(14, 14, 17, 0.9) 0%, rgba(14, 14, 17, 0.8) 50%, rgba(14, 14, 17, 0.95) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 87, 34, 0.12);
    border: 1px solid rgba(255, 87, 34, 0.2);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    max-width: max-content;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 650px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1 1 250px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.feature-text h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2px;
}

.feature-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Menu Section */
.menu-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sub-heading {
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--primary);
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.2rem;
}

.search-container {
    position: relative;
    max-width: 450px;
    width: 100%;
    margin: 20px auto 0 auto;
}

.search-icon {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: var(--text-muted);
}

#menu-search {
    width: 100%;
    padding: 14px 18px 14px 48px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

#menu-search:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
    background-color: var(--bg-input-focus);
}

/* Category Tabs */
.categories-tabs-wrapper {
    position: relative;
    margin-bottom: 40px;
}

.categories-tabs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none; /* Firefox */
}

.categories-tabs::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.category-tab {
    flex: 0 0 auto;
    padding: 10px 22px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.category-tab:hover {
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.2);
}

.category-tab.active {
    background-color: var(--primary);
    color: var(--text-main);
    border-color: var(--primary);
    box-shadow: 0 4px 10px var(--primary-glow);
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    min-height: 400px;
    transition: opacity 0.3s ease;
}

/* Food Card */
.menu-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.menu-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: rgba(255, 87, 34, 0.3);
    box-shadow: var(--shadow-lg);
    background-color: var(--bg-card-hover);
}

.menu-card:active {
    transform: translateY(-4px) scale(1.015);
    transition: var(--transition-fast);
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary);
    opacity: 0;
    transition: var(--transition-fast);
}

.menu-card:hover::before {
    opacity: 1;
}

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

.food-icon-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.1) 0%, rgba(255, 179, 0, 0.1) 100%);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border: 1px solid rgba(255, 87, 34, 0.15);
}

.special-badge {
    background-color: rgba(255, 179, 0, 0.12);
    border: 1px solid rgba(255, 179, 0, 0.2);
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 30px;
    text-transform: uppercase;
}

.card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 8px;
    line-height: 1.3;
}

.card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 58px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.card-price {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--secondary);
}

.btn-add-cart {
    background-color: var(--primary);
    color: var(--text-main);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.btn-add-cart:hover {
    background-color: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 4px 10px var(--primary-glow);
}

/* Empty State search */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}
.no-results i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #444455;
}

/* Cart Overlay & Sidebar */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 1500;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
}

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

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    height: 100%;
    background-color: #121216;
    border-left: 1px solid var(--border-color);
    z-index: 1600;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
    overflow-y: auto;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cart-header h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cart-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.4rem;
    cursor: pointer;
    transition: var(--transition-fast);
}
.cart-close:hover {
    color: var(--primary);
}

.cart-items {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 24px;
}

.empty-cart-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}
.empty-cart-state i {
    font-size: 3.5rem;
    color: #333340;
    margin-bottom: 20px;
}

/* Cart Item Row */
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.cart-item-details {
    flex: 1;
    padding-right: 12px;
}
.cart-item-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2px;
}
.cart-item-price {
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 700;
}
.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}
.cart-item-btn {
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: var(--transition-fast);
}
.cart-item-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}
.cart-item-qty {
    font-weight: 700;
    font-size: 0.95rem;
    min-width: 20px;
    text-align: center;
}

.cart-summary {
    padding: 24px;
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--border-color);
}
.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.95rem;
}
.summary-divider {
    border: 0;
    height: 1px;
    background-color: var(--border-color);
    margin: 14px 0;
}
.total-row {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--secondary);
}

/* Checkout Form */
.checkout-form {
    padding: 24px;
    border-top: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.01);
}
.form-title {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 18px;
    font-size: 1.1rem;
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 500;
}
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--bg-input-focus);
}

.radio-group {
    display: flex;
    gap: 16px;
    margin-top: 4px;
}
.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem !important;
    color: var(--text-main) !important;
}
.radio-label input {
    accent-color: var(--primary);
}

.btn-checkout {
    width: 100%;
    background-color: #25d366; /* WhatsApp Green */
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 14px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-normal);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    margin-top: 15px;
}
.btn-checkout:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
}

/* Info Section (Hours & Contact & Map) */
.info-section {
    padding: 100px 0;
    background-color: #121216;
}

.info-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: start;
}

.info-desc {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    gap: 18px;
}

.info-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: rgba(255, 87, 34, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-card-body h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.info-card-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 4px;
}
.info-card-body p:last-child {
    margin-bottom: 0;
}

.phone-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}
.phone-link:hover {
    color: var(--primary);
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 6px;
    transition: var(--transition-fast);
}
.map-link:hover {
    color: var(--secondary-hover);
    text-decoration: underline;
}

.badge {
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}
.badge.open {
    background-color: rgba(76, 175, 80, 0.15);
    color: var(--green);
    border: 1px solid rgba(76, 175, 80, 0.25);
}
.badge.closed {
    background-color: rgba(244, 67, 54, 0.15);
    color: var(--red);
    border: 1px solid rgba(244, 67, 54, 0.25);
}

/* Social links */
.social-links {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}
.social-links a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    text-decoration: none;
    transition: var(--transition-fast);
}
.social-links a:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px var(--primary-glow);
}

.info-map {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    background-color: var(--bg-card);
}
.info-map iframe {
    display: block;
}

/* Footer styling */
.footer {
    background-color: var(--bg-dark);
    padding: 80px 0 30px 0;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 450px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-main);
}
.footer-logo span {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-nav h4, .footer-contact h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 6px;
}
.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}
.footer-nav a:hover {
    color: var(--primary);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-contact p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 24px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

/* RESPONSIVE MEDIA QUERIES */

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .navbar {
        padding: 4px 0;
    }
    .nav-container {
        padding: 10px 16px;
    }
    .status-badge {
        display: none;
    }
    .btn-nav-call span {
        display: none;
    }
    .btn-nav-call {
        padding: 10px;
        width: 38px;
        height: 38px;
        justify-content: center;
        border-radius: 50%;
    }
    .hero {
        padding-top: 100px;
        min-height: 80vh;
    }
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    .hero-ctas .btn {
        width: 100%;
    }
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

/* Toast Notifications styling */
.toast-container {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}
.toast {
    background-color: var(--bg-card);
    border-left: 4px solid var(--primary);
    color: var(--text-main);
    padding: 16px 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    min-width: 250px;
    transform: translateX(-120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: auto;
}
.toast.show {
    transform: translateX(0);
    opacity: 1;
}
.toast-icon {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Admin Link in Footer */
.admin-link-footer {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 0.85rem !important;
    color: var(--text-muted) !important;
    transition: var(--transition-fast);
}
.admin-link-footer:hover {
    color: var(--text-main) !important;
}

/* Admin Panel Styles */
.admin-panel {
    background-color: var(--bg-dark);
    min-height: 100vh;
    padding: 60px 0;
}
.admin-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 30px;
}
.admin-header h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
}

.admin-actions-bar {
    display: grid;
    grid-template-columns: 1.5fr 1fr 2fr;
    gap: 20px;
    margin-bottom: 24px;
    align-items: center;
}

.admin-search-wrapper, .admin-filter-wrapper {
    position: relative;
    width: 100%;
}
.admin-search-wrapper .search-icon {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: var(--text-muted);
}
.admin-search-wrapper input {
    width: 100%;
    padding: 12px 16px 12px 42px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}
.admin-search-wrapper input:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--bg-input-focus);
}

.admin-filter-wrapper select, #prod-category, #prod-icon {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;
    transition: var(--transition-fast);
}
.admin-filter-wrapper select:focus, #prod-category:focus, #prod-icon:focus {
    outline: none;
    border-color: var(--primary);
}

.admin-buttons-wrapper {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* Admin Table */
.admin-table-container {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow-x: auto;
    box-shadow: var(--shadow-md);
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}
.admin-table th, .admin-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}
.admin-table th {
    background-color: rgba(255, 255, 255, 0.02);
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-muted);
}
.admin-table tbody tr:last-child td {
    border-bottom: none;
}
.admin-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.01);
}

.admin-table .food-icon-placeholder {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    border-radius: 8px;
}

.admin-table-ingredients {
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--text-muted);
}

.admin-badge-special {
    display: inline-block;
    padding: 2px 8px;
    font-size: 0.7rem;
    font-weight: 700;
    background-color: rgba(255, 179, 0, 0.12);
    border: 1px solid rgba(255, 179, 0, 0.2);
    color: var(--secondary);
    border-radius: 4px;
    text-transform: uppercase;
}
.admin-badge-none {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.8rem;
}

.admin-actions-cell {
    display: flex;
    gap: 8px;
}
.btn-admin-action {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}
.btn-admin-action.edit:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}
.btn-admin-action.delete:hover {
    background-color: var(--red);
    border-color: var(--red);
    color: white;
}

/* Admin Modal Overlay */
.admin-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.admin-modal {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    animation: modalSlideUp 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.15);
}
@keyframes modalSlideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.admin-modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.admin-modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
}
.admin-modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.4rem;
    cursor: pointer;
    transition: var(--transition-fast);
}
.admin-modal-close:hover {
    color: var(--primary);
}

.admin-modal-body {
    padding: 24px;
    overflow-y: auto;
    max-height: 70vh;
}
.admin-modal-body .form-group {
    margin-bottom: 20px;
}
.admin-modal-body .form-group:last-child {
    margin-bottom: 0;
}
.admin-modal-body label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 500;
}
.admin-modal-body input[type="text"],
.admin-modal-body input[type="number"],
.admin-modal-body textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}
.admin-modal-body input:focus,
.admin-modal-body textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--bg-input-focus);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-main);
}
.checkbox-label input {
    accent-color: var(--primary);
    width: 16px;
    height: 16px;
}

.admin-modal-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* Responsive Admin Action Bar */
@media (max-width: 900px) {
    .admin-actions-bar {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .admin-buttons-wrapper {
        justify-content: flex-start;
    }
}

/* Admin Login Screen */
.admin-login-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.admin-login-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.login-logo {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.login-logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--primary);
}
.login-logo h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}
.admin-login-card .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.admin-login-card input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}
.admin-login-card input[type="password"]:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--bg-input-focus);
}
.btn-block {
    width: 100%;
    justify-content: center;
}
.btn-back-site {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.btn-back-site:hover {
    color: var(--text-main);
}
.admin-header-actions {
    display: flex;
    gap: 12px;
}

/* Admin Tabs */
.admin-tab-headers {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}
.admin-tab-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    padding: 8px 16px;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
}
.admin-tab-btn:hover {
    color: var(--text-main);
}
.admin-tab-btn.active {
    color: var(--primary);
}
.admin-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -13px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
}

.admin-tab-content {
    display: none;
}
.admin-tab-content.active {
    display: block;
}

/* Settings Form Grid */
.settings-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-md);
}
@media (max-width: 800px) {
    .settings-form-grid {
        grid-template-columns: 1fr;
    }
}
.settings-section-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
    margin-bottom: 12px;
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 8px;
}
.settings-section-title:not(:first-child) {
    margin-top: 20px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    grid-column: span 2;
}
@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
        grid-column: span 1;
    }
}
.settings-category-item {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 12px;
}
.settings-category-item input {
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}
.settings-category-item input:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--bg-input-focus);
}
.settings-category-item .cat-key {
    width: 30%;
    font-family: monospace;
}
.settings-category-item .cat-val {
    width: 60%;
}
.settings-category-item .btn-admin-action {
    flex-shrink: 0;
}
.settings-form-grid .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.settings-form-grid label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}
.settings-form-grid input[type="text"],
.settings-form-grid textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}
.settings-form-grid input[type="text"]:focus,
.settings-form-grid textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--bg-input-focus);
}

/* Image Lightbox Modal */
.lightbox-overlay {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    animation: lightboxFadeIn 0.3s ease;
}
.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    object-fit: contain;
    animation: lightboxZoomIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}
.lightbox-close:hover {
    color: var(--primary);
    transform: scale(1.2);
}
#lightbox-caption {
    margin-top: 15px;
    text-align: center;
    color: #fff;
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 600;
}
@keyframes lightboxFadeIn {
    from { background-color: rgba(0, 0, 0, 0); }
    to { background-color: rgba(0, 0, 0, 0.9); }
}
@keyframes lightboxZoomIn {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* TV Board Styles - Light Theme Fast Food Menu Board */
.tv-board-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    color: #111111;
    z-index: 99999;
    font-family: 'Outfit', sans-serif;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.tv-board-header {
    height: 90px;
    background: #e52912; /* Bold Red Header matching photo */
    border-bottom: 4px solid #ffb300; /* Yellow bottom accent line */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    color: #ffffff;
}

.tv-logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tv-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    object-fit: cover;
}

.tv-brand-info h1 {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.tv-brand-info p {
    font-size: 13px;
    color: #ffb300;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
}

.tv-header-right {
    display: flex;
    align-items: center;
    gap: 35px;
}

.tv-clock-box {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 26px;
    color: #ffffff;
}

.tv-clock {
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    font-family: monospace;
}

.tv-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 15px;
    font-weight: 600;
    gap: 4px;
}

.tv-phone {
    color: #ffffff;
}

.tv-whatsapp {
    color: #ffffff;
}

.tv-slides-container {
    flex: 1;
    position: relative;
    width: 100%;
    background-color: #fcfcfc;
}

/* Slide Split Layout (Left: Promo Banner, Right: Columns) */
.tv-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    padding: 25px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease-in-out;
}

.tv-slide.active {
    opacity: 1;
    pointer-events: auto;
}

/* Left Promo Area (32% width) */
.tv-promo-area {
    width: 32%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background-color: #f1f1f1;
}

.tv-promo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: promoZoom 20s infinite alternate;
}

@keyframes promoZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.12); }
}

.tv-promo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
    color: #ffffff;
    text-align: center;
}

.tv-promo-title {
    font-size: 32px;
    font-weight: 800;
    color: #ffb300;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    margin: 0;
    text-transform: uppercase;
}

.tv-promo-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
    margin: 5px 0 0 0;
}

/* Right Menu Area (68% width) */
.tv-menu-area {
    width: 68%;
    height: 100%;
    padding-left: 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.tv-category-column {
    background: #ffffff;
    border: 2px solid #eaeaea;
    box-shadow: 0 8px 24px rgba(0,0,0,0.03);
    border-radius: 20px;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.tv-category-title {
    font-size: 24px;
    font-weight: 800;
    background-color: #e52912; /* Red Title block */
    color: #ffffff;
    padding: 10px 16px;
    margin: -20px -25px 20px -25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
}

.tv-items-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: flex-start;
}

/* Row Styling with Dotted Lines like Photo */
.tv-menu-item {
    display: flex;
    flex-direction: column;
    padding: 4px 0;
    border-bottom: 1px dashed #eaeaea;
    opacity: 0;
    transform: translate3d(60px, 0, 0);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.tv-slide.active .tv-menu-item {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.tv-slide.active .tv-menu-item:nth-child(1) { transition-delay: 0.05s; }
.tv-slide.active .tv-menu-item:nth-child(2) { transition-delay: 0.10s; }
.tv-slide.active .tv-menu-item:nth-child(3) { transition-delay: 0.15s; }
.tv-slide.active .tv-menu-item:nth-child(4) { transition-delay: 0.20s; }
.tv-slide.active .tv-menu-item:nth-child(5) { transition-delay: 0.25s; }
.tv-slide.active .tv-menu-item:nth-child(6) { transition-delay: 0.30s; }
.tv-slide.active .tv-menu-item:nth-child(7) { transition-delay: 0.35s; }
.tv-slide.active .tv-menu-item:nth-child(8) { transition-delay: 0.40s; }

.tv-item-row-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
}

.tv-item-name {
    font-size: 17px;
    font-weight: 700;
    color: #111111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tv-item-leader-dots {
    flex: 1;
    border-bottom: 2px dotted #cccccc;
    height: 12px;
}

.tv-item-price {
    font-size: 18px;
    font-weight: 800;
    color: #e52912;
    white-space: nowrap;
}

.tv-item-ingredients {
    font-size: 13px;
    color: #666666;
    margin-top: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Footer Ticker */
.tv-board-footer {
    height: 45px;
    background: #111111;
    border-top: 3px solid #ffb300;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.tv-footer-scroller {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.tv-scroller-content {
    display: inline-block;
    padding-left: 100%;
    font-size: 16px;
    font-weight: 700;
    color: #ffb300;
    animation: tvTicker 25s linear infinite;
}

@keyframes tvTicker {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

.tv-empty-message {
    font-size: 22px;
    color: #666666;
    text-align: center;
    padding: 80px;
    width: 100%;
}

.tv-slide-indicator {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0,0,0,0.6);
    color: #ffb300;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 1px;
}
