/* ============================================
   PUBLIC MENU - PREMIUM DARK MODE STYLESHEET
   ============================================ */

:root {
    --primary: #1B5E20;
    --primary-light: #2E7D32;
    --primary-dark: #0d3b12;
    --primary-glow: rgba(27, 94, 32, 0.4);
    --secondary: #FF6D00;
    --secondary-light: #FF9100;
    --secondary-glow: rgba(255, 109, 0, 0.3);
    --bg-body: #0a0a0a;
    --bg-card: #161616;
    --bg-card-hover: #1c1c1c;
    --bg-glass: rgba(22, 22, 22, 0.85);
    --border: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.1);
    --text: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #666;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    font-family: 'Cairo', sans-serif;
    background: var(--bg-body);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============= HERO ============= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #050505;
}

/* Animated mesh gradient */
.hero::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: 
        radial-gradient(circle at 20% 50%, var(--primary-glow) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, var(--secondary-glow) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(46, 125, 50, 0.15) 0%, transparent 50%);
    animation: meshRotate 15s ease-in-out infinite;
    z-index: 0;
}

@keyframes meshRotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    33% { transform: rotate(120deg) scale(1.1); }
    66% { transform: rotate(240deg) scale(0.9); }
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.3) saturate(0.8);
    transform: scale(1.1);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.1); }
    100% { transform: scale(1.2); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(5, 5, 5, 0.3) 0%,
        rgba(5, 5, 5, 0.5) 50%,
        rgba(10, 10, 10, 0.95) 100%
    );
    z-index: 1;
}

/* Particles */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-light);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 7s; }
.particle:nth-child(2) { left: 30%; top: 60%; animation-delay: 1s; animation-duration: 9s; background: var(--secondary); }
.particle:nth-child(3) { left: 60%; top: 30%; animation-delay: 2s; animation-duration: 6s; }
.particle:nth-child(4) { left: 80%; top: 70%; animation-delay: 3s; animation-duration: 10s; background: var(--secondary); }
.particle:nth-child(5) { left: 50%; top: 80%; animation-delay: 4s; animation-duration: 8s; }
.particle:nth-child(6) { left: 20%; top: 90%; animation-delay: 5s; animation-duration: 11s; background: var(--secondary); }
.particle:nth-child(7) { left: 45%; top: 15%; animation-delay: 0.5s; animation-duration: 8.5s; width: 4px; height: 4px; }
.particle:nth-child(8) { left: 75%; top: 45%; animation-delay: 2.5s; animation-duration: 7.5s; background: var(--secondary); width: 5px; height: 5px; }
.particle:nth-child(9) { left: 15%; top: 55%; animation-delay: 3.5s; animation-duration: 9.5s; width: 3px; height: 3px; }
.particle:nth-child(10) { left: 90%; top: 25%; animation-delay: 1.5s; animation-duration: 6.5s; background: var(--secondary); width: 4px; height: 4px; }
.particle:nth-child(11) { left: 35%; top: 85%; animation-delay: 4.5s; animation-duration: 10.5s; width: 8px; height: 8px; opacity: 0.15; }
.particle:nth-child(12) { left: 65%; top: 10%; animation-delay: 0.8s; animation-duration: 12s; background: var(--secondary); width: 7px; height: 7px; opacity: 0.2; }

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    25% { transform: translateY(-80px) translateX(20px); opacity: 0.6; }
    50% { transform: translateY(-40px) translateX(-30px); opacity: 0.2; }
    75% { transform: translateY(-100px) translateX(10px); opacity: 0.5; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
}

.hero-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 25px;
    filter: drop-shadow(0 8px 30px rgba(0,0,0,0.5));
    animation: fadeInUp 1s ease;
}

.hero-icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 46px;
    color: #fff;
    box-shadow: 0 15px 50px var(--primary-glow), 0 0 80px var(--primary-glow);
    animation: fadeInUp 1s ease, iconBreath 4s ease-in-out infinite 1s;
    position: relative;
}

.hero-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 36px;
    border: 2px solid var(--primary-light);
    opacity: 0.4;
    animation: iconRing 3s ease-in-out infinite;
}

@keyframes iconBreath {
    0%, 100% { box-shadow: 0 15px 50px var(--primary-glow), 0 0 60px var(--primary-glow); }
    50% { box-shadow: 0 20px 70px var(--primary-glow), 0 0 120px var(--primary-glow); transform: scale(1.05); }
}

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

.placeholder-icon {
    font-size: 40px;
    color: var(--primary-light);
    opacity: 0.6;
    filter: drop-shadow(0 0 10px var(--primary-glow));
    animation: iconFloat 4s ease-in-out infinite;
    will-change: transform; /* GPU Hint */
}

/* Optimize Shimmer text */
.shimmer-text {
    background: linear-gradient(90deg, #fff 0%, var(--secondary-light) 50%, #fff 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 4s linear infinite;
    will-change: background-position; /* GPU Hint */
}

.hero-title {
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #fff 0%, var(--secondary-light) 30%, #fff 60%, var(--secondary-light) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease 0.2s both, titleShimmer 6s ease-in-out infinite 2s;
    text-shadow: none;
    letter-spacing: -0.5px;
}

@keyframes titleShimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 200% center; }
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: rgba(255,255,255,0.65);
    max-width: 520px;
    margin: 0 auto 40px;
    animation: fadeInUp 1s ease 0.4s both;
    letter-spacing: 0.3px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    padding: 16px 42px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    text-decoration: none;
    box-shadow: 0 8px 30px var(--primary-glow), 0 0 60px rgba(27, 94, 32, 0.2);
    transition: all 0.4s ease;
    animation: fadeInUp 1s ease 0.6s both, ctaGlow 3s ease-in-out infinite 2s;
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    animation: ctaShine 3s ease-in-out infinite 1.5s;
}

@keyframes ctaShine {
    0% { left: -100%; }
    50%, 100% { left: 200%; }
}

@keyframes ctaGlow {
    0%, 100% { box-shadow: 0 8px 30px var(--primary-glow), 0 0 60px rgba(27, 94, 32, 0.2); }
    50% { box-shadow: 0 12px 50px var(--primary-glow), 0 0 100px rgba(27, 94, 32, 0.35); }
}

.hero-cta:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 50px var(--primary-glow), 0 0 100px rgba(27, 94, 32, 0.3);
}

.hero-cta i {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Social */
.hero-social {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 5;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.social-link:hover { transform: scale(1.1); }
.social-link.whatsapp:hover { background: #25D366; border-color: #25D366; color: #fff; }
.social-link.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: transparent; color: #fff; }
.social-link.twitter:hover { background: #1DA1F2; border-color: #1DA1F2; color: #fff; }
.social-link.tiktok:hover { background: #000; border-color: #69C9D0; color: #fff; }
.social-link.snapchat:hover { background: #FFFC00; border-color: #FFFC00; color: #000; }

/* ============= FEATURED SECTION ============= */
.featured-section {
    padding: 60px 0 30px;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-badge {
    display: inline-block;
    padding: 6px 18px;
    background: linear-gradient(135deg, rgba(255, 109, 0, 0.12), rgba(27, 94, 32, 0.08));
    border: 1px solid rgba(255, 109, 0, 0.25);
    border-radius: 30px;
    color: var(--secondary);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
    0% { left: -100%; }
    50%, 100% { left: 200%; }
}

.section-header h2 {
    font-size: 28px;
    font-weight: 800;
}

.featured-scroll {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 10px 0 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
}

.featured-scroll::-webkit-scrollbar { display: none; }

.featured-card {
    min-width: 200px;
    max-width: 200px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
    scroll-snap-align: start;
    transition: all 0.4s ease;
}

.featured-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-light);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.featured-img {
    position: relative;
    height: 160px;
    overflow: hidden;
    background: #111;
}

.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-card:hover .featured-img img {
    transform: scale(1.1);
}

.featured-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--text-muted);
    background: linear-gradient(135deg, #111, #1a1a1a);
}

.new-badge, .badge-new {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--secondary);
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 3px 10px var(--secondary-glow);
}

.discount-badge, .badge-discount {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #dc3545;
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.featured-info {
    padding: 14px;
}

.featured-info h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.featured-category {
    font-size: 12px;
    color: var(--text-muted);
}

.featured-price {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.current-price, .price-current {
    font-size: 16px;
    font-weight: 800;
    color: var(--secondary);
}

.original-price, .price-old {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* ============= CATEGORY NAV ============= */
.category-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    transition: all 0.3s ease;
}

.category-nav.scrolled {
    box-shadow: 0 5px 30px rgba(0,0,0,0.4);
}

.category-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 2px;
}

.category-scroll::-webkit-scrollbar { display: none; }

.cat-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(255,255,255,0.04);
    border: 1px solid transparent;
    white-space: nowrap;
    transition: all 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
}

.cat-tab:hover {
    background: rgba(255,255,255,0.08);
    color: var(--text);
}

.cat-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 18px var(--primary-glow);
    position: relative;
    overflow: hidden;
}

.cat-tab.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: tabShine 2.5s ease-in-out infinite;
}

@keyframes tabShine {
    0% { left: -100%; }
    50%, 100% { left: 200%; }
}

.cat-tab i {
    font-size: 15px;
}

/* ============= MENU SECTIONS ============= */
.menu-sections {
    padding: 40px 0 80px;
}

.menu-category {
    margin-bottom: 50px;
    position: relative;
}

.menu-category::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    opacity: 0.15;
    filter: blur(60px);
    pointer-events: none;
    z-index: -1;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 18px;
    border-bottom: none;
    position: relative;
}

.category-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, transparent 100%);
    border-radius: 2px;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.category-title i {
    font-size: 24px;
    color: var(--secondary);
    filter: drop-shadow(0 0 8px var(--secondary-glow));
    animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% { filter: drop-shadow(0 0 6px var(--secondary-glow)); }
    50% { filter: drop-shadow(0 0 14px var(--secondary-glow)); }
}

.category-title h2 {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text) 0%, var(--secondary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-en {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
}

.category-img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub-category {
    margin-top: 30px;
}

.sub-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
    padding-right: 15px;
    border-right: 3px solid var(--secondary);
    color: var(--text-secondary);
}

/* ============= ITEMS GRID ============= */
.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .items-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

.menu-card {
    background: rgba(22, 22, 22, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0;
    transform: translateY(20px);
    animation: cardAppear 0.6s ease forwards;
    will-change: transform, opacity;
    position: relative;
}

.menu-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius);
    padding: 1px;
    background: linear-gradient(135deg, transparent 40%, var(--primary) 50%, var(--secondary) 60%, transparent 70%);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.menu-card:hover::before {
    opacity: 1;
    animation: shimmerBorder 2s linear infinite;
}

@keyframes shimmerBorder {
    0% { background-position: 100% 0%; }
    100% { background-position: -100% 0%; }
}

@keyframes cardAppear {
    to { opacity: 1; transform: translateY(0); }
}

.menu-card:nth-child(1) { animation-delay: 0.05s; }
.menu-card:nth-child(2) { animation-delay: 0.1s; }
.menu-card:nth-child(3) { animation-delay: 0.15s; }
.menu-card:nth-child(4) { animation-delay: 0.2s; }
.menu-card:nth-child(5) { animation-delay: 0.25s; }
.menu-card:nth-child(6) { animation-delay: 0.3s; }

.menu-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 30px var(--primary-glow);
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #111;
}

.card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, var(--bg-card) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.4s ease;
}

.menu-card:hover .card-image img {
    transform: scale(1.12);
    filter: brightness(1.1);
}

.card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    color: var(--primary-light);
    background: radial-gradient(circle at center, rgba(27, 94, 32, 0.08) 0%, #111 70%);
    position: relative;
    overflow: hidden;
}

.card-placeholder::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--primary-glow);
    filter: blur(40px);
    opacity: 0.5;
    animation: placeholderPulse 4s ease-in-out infinite;
    will-change: transform, opacity;
}

.card-placeholder i {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 12px var(--primary-glow));
    animation: iconFloat 3s ease-in-out infinite;
    will-change: transform;
}

@keyframes placeholderPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.3); opacity: 0.6; }
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.card-badges {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    gap: 6px;
    flex-direction: column;
}

.badge-cal {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.badge-cal i {
    color: var(--secondary);
    font-size: 10px;
}

.card-body {
    padding: 18px;
}

.card-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
}

.card-title-en {
    font-size: 12px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 6px;
}

.card-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.tag {
    padding: 3px 10px;
    background: rgba(46, 125, 50, 0.12);
    border: 1px solid rgba(46, 125, 50, 0.2);
    border-radius: 20px;
    font-size: 11px;
    color: var(--primary-light);
    font-weight: 600;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.card-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-current,
.current-price {
    font-size: 16px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-old,
.original-price {
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* ============= EMPTY STATE ============= */
.empty-menu {
    text-align: center;
    padding: 80px 20px;
}

.empty-menu i {
    font-size: 60px;
    color: var(--text-muted);
    opacity: 0.3;
    margin-bottom: 20px;
}

.empty-menu h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.empty-menu p {
    color: var(--text-secondary);
}

/* ============= FOOTER ============= */
.site-footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-brand h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-item i {
    color: var(--secondary);
    width: 20px;
    text-align: center;
}

.footer-item a {
    color: var(--text-secondary);
    transition: color 0.3s;
}

.footer-item a:hover {
    color: var(--secondary);
}

.footer-social {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-end;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    color: var(--text-secondary);
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 13px;
}

.kodra-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.1));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    color: var(--text-muted);
    font-size: 12px;
    text-decoration: none;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.kodra-badge:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-glow);
}

.kodra-badge strong {
    color: var(--secondary);
    font-weight: 800;
    transition: color 0.3s;
}

.kodra-badge:hover strong {
    color: #fff;
}

.kodra-icon {
    font-size: 14px;
    animation: kodra-pulse 2s ease-in-out infinite;
    will-change: transform;
}

@keyframes kodra-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Light/Classic style overrides for Kodra badge */
body.style-light .kodra-badge,
body.style-classic .kodra-badge {
    background: linear-gradient(135deg, rgba(0,0,0,0.03), rgba(0,0,0,0.06));
    border-color: rgba(0,0,0,0.08);
}

body.style-light .kodra-badge:hover,
body.style-classic .kodra-badge:hover {
    color: #fff;
}

/* ============= WHATSAPP FLOAT ============= */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 6px 25px rgba(37,211,102,0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s ease-in-out infinite;
    will-change: box-shadow;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
    color: #fff;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 6px 25px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 6px 25px rgba(37,211,102,0.6), 0 0 0 15px rgba(37,211,102,0.1); }
}

/* ============= RESPONSIVE ============= */
@media (max-width: 768px) {
    .hero {
        min-height: 85vh;
    }

    .hero-social {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
    }

    .hero-content {
        padding: 30px 15px;
    }

    .items-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-item {
        justify-content: center;
    }

    .category-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .featured-card {
        min-width: 170px;
        max-width: 170px;
    }

    .card-image {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .items-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .featured-card {
        min-width: 160px;
        max-width: 160px;
    }

    .hero-logo {
        width: 90px;
        height: 90px;
    }

    .hero-icon {
        width: 80px;
        height: 80px;
        font-size: 34px;
    }
}

/* =============================================
   STYLE: LIGHT — Elegant List Layout
   Items displayed as horizontal rows
   ============================================= */
body.style-light {
    --bg-body: #f5f0eb;
    --bg-card: #ffffff;
    --bg-card-hover: #fafafa;
    --bg-glass: rgba(245, 240, 235, 0.92);
    --border: rgba(0, 0, 0, 0.08);
    --border-light: rgba(0, 0, 0, 0.12);
    --text: #1a1a1a;
    --text-secondary: #555555;
    --text-muted: #999999;
    background: #f5f0eb;
    color: #1a1a1a;
}

body.style-light .hero { min-height: 70vh; }

body.style-light .hero-overlay {
    background: linear-gradient(180deg, rgba(245,240,235,0.3) 0%, rgba(245,240,235,0.5) 50%, rgba(245,240,235,0.97) 100%);
}

body.style-light .hero-title {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 50%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.style-light .hero-subtitle { color: #666; }

body.style-light .social-link {
    background: rgba(0,0,0,0.06);
    border-color: rgba(0,0,0,0.1);
    color: #555;
}

body.style-light .particle { opacity: 0.1; }

body.style-light .cat-tab {
    background: rgba(0,0,0,0.04);
    color: #666;
    border-radius: 8px;
}
body.style-light .cat-tab:hover { background: rgba(0,0,0,0.08); color: #333; }
body.style-light .cat-tab.active { color: #fff; border-radius: 8px; }
body.style-light .category-nav.scrolled { box-shadow: 0 5px 30px rgba(0,0,0,0.06); }

/* LIGHT: LIST LAYOUT — vertical rows */
body.style-light .items-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

body.style-light .menu-card {
    display: flex;
    flex-direction: row-reverse;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

body.style-light .menu-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border-color: rgba(0,0,0,0.1);
}

body.style-light .card-image {
    width: 140px;
    min-width: 140px;
    height: auto;
    min-height: 120px;
    flex-shrink: 0;
}

body.style-light .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px 20px;
}

body.style-light .card-footer {
    border-top: none;
    padding-top: 8px;
    margin-top: 8px;
}

body.style-light .card-placeholder {
    background: linear-gradient(135deg, #f0ece7, #e8e2dc);
    color: rgba(0,0,0,0.1);
}

body.style-light .card-image { background: #eee; }
body.style-light .featured-img { background: #eee; }
body.style-light .featured-placeholder {
    background: linear-gradient(135deg, #f0ece7, #e8e2dc);
    color: #ccc;
}
body.style-light .featured-card {
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-radius: 14px;
}
body.style-light .featured-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

body.style-light .category-header {
    border-bottom: 2px solid rgba(0,0,0,0.06);
}

body.style-light .tag {
    background: rgba(27,94,32,0.08);
    border-color: rgba(27,94,32,0.15);
}
body.style-light .badge-cal { background: rgba(255,255,255,0.9); color: #333; }
body.style-light .section-badge { background: rgba(255,109,0,0.08); border-color: rgba(255,109,0,0.15); }
body.style-light .site-footer { background: #fff; }
body.style-light .footer-social a { background: rgba(0,0,0,0.05); color: #666; }

@media (max-width: 600px) {
    body.style-light .menu-card { flex-direction: column; }
    body.style-light .card-image { width: 100%; min-width: 100%; height: 180px; }
}

/* =============================================
   STYLE: VIBRANT — Full-Width Showcase Layout
   Big images, 2-column, neon glow accents
   ============================================= */
body.style-vibrant {
    --bg-body: #0d1117;
    --bg-card: rgba(22, 27, 34, 0.95);
    --bg-card-hover: #1c2333;
    --bg-glass: rgba(13, 17, 23, 0.9);
    --border: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.15);
    --text: #f0f6fc;
    --text-secondary: #8b949e;
    --text-muted: #484f58;
    background: #0d1117;
}

body.style-vibrant .hero {
    background: linear-gradient(135deg, #0d1117, #161b22);
}

body.style-vibrant .hero-overlay {
    background: linear-gradient(180deg, rgba(13,17,23,0.2) 0%, rgba(13,17,23,0.4) 40%, rgba(13,17,23,0.95) 100%);
}

body.style-vibrant .hero-title {
    background: linear-gradient(135deg, var(--secondary) 0%, #FFD54F 50%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.style-vibrant .hero-icon {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    box-shadow: 0 15px 40px var(--secondary-glow);
}

body.style-vibrant .hero-cta {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    box-shadow: 0 8px 30px var(--secondary-glow);
}
body.style-vibrant .hero-cta:hover {
    box-shadow: 0 12px 40px var(--secondary-glow);
}

/* Vibrant: Nav */
body.style-vibrant .cat-tab.active {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    box-shadow: 0 4px 18px var(--secondary-glow);
}

/* VIBRANT: SHOWCASE LAYOUT — 2 columns, large images */
body.style-vibrant .items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

body.style-vibrant .menu-card {
    border: 1px solid rgba(255,255,255,0.04);
    background: linear-gradient(145deg, rgba(22, 27, 34, 0.95), rgba(30, 37, 48, 0.95));
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

body.style-vibrant .menu-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, transparent, rgba(255,109,0,0.2), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

body.style-vibrant .menu-card:hover {
    border-color: rgba(255,109,0,0.3);
    box-shadow: 0 0 40px rgba(255,109,0,0.15), 0 20px 50px rgba(0,0,0,0.4);
    transform: translateY(-8px);
}

body.style-vibrant .card-image {
    height: 260px;
    position: relative;
}

body.style-vibrant .card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(22,27,34,1), transparent);
    pointer-events: none;
}

body.style-vibrant .card-title { font-size: 18px; font-weight: 800; }
body.style-vibrant .card-body { padding: 20px 22px; }

body.style-vibrant .card-placeholder { background: linear-gradient(135deg, #161b22, #1c2333); }
body.style-vibrant .featured-placeholder { background: linear-gradient(135deg, #161b22, #1c2333); }

/* Vibrant: Featured — larger */
body.style-vibrant .featured-card {
    min-width: 230px;
    max-width: 230px;
    background: linear-gradient(145deg, rgba(22, 27, 34, 0.95), rgba(30, 37, 48, 0.95));
    border-radius: 18px;
}
body.style-vibrant .featured-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 0 25px var(--secondary-glow);
}
body.style-vibrant .featured-img { height: 180px; }

/* Vibrant: Tags & styling */
body.style-vibrant .tag {
    background: rgba(255, 109, 0, 0.1);
    border-color: rgba(255, 109, 0, 0.2);
    color: var(--secondary);
}

body.style-vibrant .category-title i {
    color: var(--secondary);
    text-shadow: 0 0 15px var(--secondary-glow);
}
body.style-vibrant .category-title h2 { font-size: 26px; }
body.style-vibrant .category-header {
    border-bottom-color: rgba(255, 109, 0, 0.15);
    margin-bottom: 30px;
}
body.style-vibrant .sub-title { border-right-color: var(--secondary); }
body.style-vibrant .section-badge {
    background: rgba(255, 109, 0, 0.1);
    border-color: rgba(255, 109, 0, 0.25);
    box-shadow: 0 0 15px rgba(255, 109, 0, 0.1);
}

body.style-vibrant .particle { background: var(--secondary); }
body.style-vibrant .particle:nth-child(odd) { background: var(--primary-light); }

body.style-vibrant .site-footer {
    background: rgba(22, 27, 34, 0.95);
    border-top-color: rgba(255, 109, 0, 0.15);
}

body.style-vibrant .whatsapp-float {
    box-shadow: 0 6px 25px rgba(37,211,102,0.4), 0 0 0 4px rgba(37,211,102,0.1);
}

@media (max-width: 768px) {
    body.style-vibrant .items-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    body.style-vibrant .card-image { height: 180px; }
    body.style-vibrant .featured-card { min-width: 170px; max-width: 170px; }
}

/* =============================================
   STYLE: CLASSIC — Paper Table Menu
   Table-based layout like a printed book menu
   Uses --primary and --secondary from admin settings
   ============================================= */
body.style-classic {
    --bg-body: #faf5ef;
    --bg-card: transparent;
    --bg-card-hover: transparent;
    --bg-glass: rgba(250, 245, 239, 0.95);
    --border: rgba(0,0,0,0.1);
    --border-light: rgba(0,0,0,0.15);
    --text: #2c1810;
    --text-secondary: #5a4a3a;
    --text-muted: #8a7a6a;
    background: #faf5ef;
    color: #2c1810;
}

body.style-classic .hero {
    min-height: 50vh;
    background: linear-gradient(180deg, #f0e6d2, #faf5ef);
}

body.style-classic .hero-overlay {
    background: linear-gradient(180deg, rgba(250,245,239,0) 0%, rgba(250,245,239,1) 100%);
}

body.style-classic .hero-title {
    background: none;
    -webkit-text-fill-color: #2c1810;
}

body.style-classic .hero-subtitle { color: #5a4a3a; }

body.style-classic .hero-icon {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    box-shadow: none;
    border-radius: 12px;
}

body.style-classic .hero-cta {
    background: var(--primary);
    box-shadow: none;
    border-radius: 4px;
}
body.style-classic .hero-cta:hover { filter: brightness(0.85); box-shadow: none; transform: none; }

body.style-classic .social-link {
    background: transparent;
    border: 1px solid rgba(0,0,0,0.15);
    color: #5a4a3a;
    border-radius: 4px;
}

body.style-classic .particle { display: none; }
body.style-classic .featured-section { display: none; }

/* Classic: Nav — bookmark tabs */
body.style-classic .category-nav {
    background: rgba(250,245,239,0.98);
    border-bottom: 2px solid var(--primary);
}
body.style-classic .category-nav.scrolled { box-shadow: 0 3px 10px rgba(0,0,0,0.06); }

body.style-classic .cat-tab {
    background: transparent;
    color: #5a4a3a;
    border-radius: 0;
    border-bottom: 2px solid transparent;
    padding: 10px 18px;
    margin-bottom: -2px;
}
body.style-classic .cat-tab:hover { color: #2c1810; background: transparent; }
body.style-classic .cat-tab.active {
    background: transparent;
    color: var(--primary);
    border-bottom-color: var(--primary);
    box-shadow: none;
    font-weight: 700;
}

/* ======== CLASSIC: MULTI-COLUMN PAPER LAYOUT ======== */
body.style-classic .items-grid {
    display: block;
    columns: 2;
    column-gap: 40px;
    column-rule: 1px solid rgba(0,0,0,0.08);
}

body.style-classic .menu-card {
    display: inline-block;
    width: 100%;
    break-inside: avoid;
    background: transparent;
    border: none;
    border-radius: 0;
    border-bottom: 1px dotted rgba(0,0,0,0.15);
    padding: 10px 0;
    box-shadow: none;
    animation: none;
    opacity: 1;
    transform: none;
    margin-bottom: 0;
}

body.style-classic .menu-card:hover {
    transform: none;
    box-shadow: none;
    background: rgba(0,0,0,0.02);
}

/* Hide image */
body.style-classic .card-image { display: none; }

/* Card body: item name inline with price */
body.style-classic .card-body {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}

body.style-classic .card-title {
    font-size: 15px;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 0;
    flex-shrink: 0;
}
body.style-classic .card-title-en {
    color: #8a7a6a;
    font-style: italic;
    font-size: 11px;
    margin-right: 6px;
}
body.style-classic .card-desc {
    color: #5a4a3a;
    font-size: 12px;
    margin-bottom: 0;
    width: 100%;
    line-height: 1.4;
}
body.style-classic .card-tags { display: none; }

/* Price aligned to the left */
body.style-classic .card-footer {
    border-top: none;
    padding-top: 2px;
    margin-top: 2px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
}

body.style-classic .price-current,
body.style-classic .current-price {
    font-size: 15px;
    font-weight: 800;
    color: var(--primary);
}

body.style-classic .price-old,
body.style-classic .original-price {
    color: #aaa;
    font-size: 12px;
}

/* Classic: Category headers */
body.style-classic .category-header {
    border-bottom: 2px solid var(--primary);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
}
body.style-classic .category-header::after {
    content: '✦  ✦  ✦';
    display: block;
    color: var(--secondary);
    font-size: 10px;
    margin-top: 6px;
    letter-spacing: 2px;
}
body.style-classic .category-title { justify-content: center; }
body.style-classic .category-title h2 {
    font-size: 22px;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 1px;
}
body.style-classic .category-title i { color: var(--secondary); }
body.style-classic .category-en { color: #8a7a6a; font-style: italic; }
body.style-classic .category-img { display: none; }
body.style-classic .sub-title { border-right: 2px solid var(--secondary); color: #5a4a3a; }

body.style-classic .section-badge {
    background: transparent;
    border: 1px solid var(--secondary);
    color: var(--primary);
}

/* Classic: Decorative double-border section */
body.style-classic .menu-category {
    margin-bottom: 35px;
    padding: 20px 30px;
    border: 1px solid rgba(0,0,0,0.1);
    position: relative;
}
body.style-classic .menu-category::before {
    content: '';
    position: absolute;
    inset: 3px;
    border: 1px solid rgba(0,0,0,0.06);
    pointer-events: none;
}

body.style-classic .menu-sections { padding: 25px 0 60px; }

/* Classic: Footer */
body.style-classic .site-footer {
    background: #f0e6d2;
    border-top: 2px solid var(--primary);
}
body.style-classic .footer-social a {
    background: transparent;
    border: 1px solid rgba(0,0,0,0.15);
    color: #5a4a3a;
    border-radius: 4px;
}
body.style-classic .footer-social a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
body.style-classic .footer-bottom { color: #8a7a6a; }
body.style-classic .footer-item { color: #5a4a3a; }
body.style-classic .footer-item i { color: var(--primary); }
body.style-classic .footer-item a { color: #5a4a3a; }

body.style-classic .whatsapp-float {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(37,211,102,0.2);
}

/* Classic: Responsive — single column on mobile */
@media (max-width: 768px) {
    body.style-classic .items-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        columns: auto;
    }
    body.style-classic .menu-category {
        padding: 15px 15px;
    }
    body.style-classic .menu-card {
        border: 1px solid rgba(0,0,0,0.05);
        padding: 10px;
        margin-bottom: 0;
    }
}





