@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ===== CSS VARIABLES ===== */

:root {
    --primary: #FB9006;
    --primary-dark: #d97a05;
    --primary-light: #fca633;
    --secondary: #386A03;
    --secondary-light: #4a8a04;
    --bg: #F0E5BA;
    --accent: #F8D859;
    --white: #ffffff;
    --gray-100: #ede0b0;
    --gray-200: #e0d49e;
    --gray-400: #a89a6e;
    --gray-600: #6b5e3a;
    --gray-800: #2e2a1a;
    --success: #22c55e;
    --shadow-sm: 0 2px 8px rgba(56, 106, 3, 0.1);
    --shadow-md: 0 8px 24px rgba(56, 106, 3, 0.15);
    --shadow-lg: 0 20px 60px rgba(56, 106, 3, 0.18);
    --shadow-orange: 0 8px 32px rgba(251, 144, 6, 0.35);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --footer: var(--gray-100);
}


/* ===== RESET ===== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--gray-800);
    overflow-x: hidden;
}

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

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

button {
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    border: none;
    outline: none;
}


/* ===== SCROLLBAR ===== */

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}


/* ===== NAVBAR ===== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(251, 144, 6, 0.1);
    padding: 0 2rem;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--gray-600);
    transition: var(--transition);
    position: relative;
    padding-bottom: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

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

.logo img {
    height: 40px;
    width: auto;
}

.footer-logo img {
    height: 40px;
    width: auto;
}


/* ===== DISCOUNT PRICING ===== */

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

.original-price {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-400);
    text-decoration: line-through;
}

.new-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
}

.food-badge.save {
    background: var(--secondary);
    color: white;
}

.adminlogo img {
    height: 70px;
    width: auto;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-btn {
    position: relative;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    cursor: pointer;
}

.cart-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    transition: var(--transition);
}

.cart-count.hidden {
    display: none;
}

.cart-count.pop {
    animation: pop 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes pop {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1);
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* ===== HERO ===== */

.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--secondary) 0%, #2d5402 50%, #1e3a02 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 2rem 4rem;
}


/* 3D floating food orbs */

.hero-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    animation: floatOrb 8s ease-in-out infinite;
}

.hero-bg-orb:nth-child(1) {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero-bg-orb:nth-child(2) {
    width: 300px;
    height: 300px;
    background: #ff9f43;
    bottom: -80px;
    left: -80px;
    animation-delay: -3s;
}

.hero-bg-orb:nth-child(3) {
    width: 200px;
    height: 200px;
    background: var(--primary-light);
    top: 50%;
    left: 50%;
    animation-delay: -5s;
}

@keyframes floatOrb {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(20px, -20px) scale(1.05);
    }
    66% {
        transform: translate(-15px, 10px) scale(0.97);
    }
}


/* Grid overlay */

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(251, 144, 6, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(251, 144, 6, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(251, 144, 6, 0.15);
    border: 1px solid rgba(251, 144, 6, 0.3);
    color: var(--primary-light);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.6s ease both;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-title .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: 2px;
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s ease 0.3s both;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-orange);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 40px rgba(251, 144, 6, 0.5);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    animation: fadeInUp 0.7s ease 0.4s both;
}

.stat {
    text-align: left;
}

.stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    margin-top: 4px;
}


/* 3D Food Illustration */

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 480px;
    animation: fadeInRight 0.8s ease 0.2s both;
}

.food-3d-scene {
    position: relative;
    width: 380px;
    height: 380px;
}

.plate-base {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 50px;
    background: linear-gradient(180deg, #e8e0d0 0%, #c8bca8 100%);
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 10px 20px rgba(0, 0, 0, 0.3);
}

.plate-top {
    position: absolute;
    bottom: 55px;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    height: 260px;
    background: radial-gradient(ellipse at 40% 35%, #ffffff 0%, #f0ede8 50%, #e0dbd2 100%);
    border-radius: 50%;
    box-shadow: inset 0 -10px 30px rgba(0, 0, 0, 0.1), 0 10px 40px rgba(0, 0, 0, 0.2);
}

.food-emoji-main {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 7rem;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4));
    animation: floatFood 3s ease-in-out infinite;
    z-index: 5;
}

@keyframes floatFood {
    0%,
    100% {
        transform: translateX(-50%) translateY(0) rotate(-5deg);
    }
    50% {
        transform: translateX(-50%) translateY(-15px) rotate(5deg);
    }
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.floating-card .fc-icon {
    font-size: 1.4rem;
}

.floating-card.fc-1 {
    top: 30px;
    left: -20px;
    animation: fcFloat1 4s ease-in-out infinite;
}

.floating-card.fc-2 {
    top: 60px;
    right: -10px;
    animation: fcFloat2 4.5s ease-in-out infinite;
}

.floating-card.fc-3 {
    bottom: 30px;
    left: -30px;
    animation: fcFloat3 3.8s ease-in-out infinite;
}

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

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

@keyframes fcFloat3 {
    0%,
    100% {
        transform: translateY(0px) rotate(-2deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}


/* rotating ring */

.ring-3d {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(70deg);
    width: 320px;
    height: 320px;
    border: 3px solid rgba(251, 144, 6, 0.3);
    border-radius: 50%;
    animation: spin3d 12s linear infinite;
}

.ring-3d::before {
    content: '';
    position: absolute;
    inset: 20px;
    border: 2px dashed rgba(251, 144, 6, 0.15);
    border-radius: 50%;
}

@keyframes spin3d {
    from {
        transform: translate(-50%, -50%) rotateX(70deg) rotateZ(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotateX(70deg) rotateZ(360deg);
    }
}


/* ===== SECTION STYLES ===== */

section {
    padding: 6rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    background: rgba(251, 144, 6, 0.1);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-sub {
    font-size: 1rem;
    color: var(--gray-600);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.8;
}

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


/* ===== FEATURED MEALS ===== */

.featured {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

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

.foods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}


/* ===== FOOD CARD ===== */

.food-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.food-card:hover {
    transform: translateY(-8px) rotateX(2deg);
    box-shadow: var(--shadow-lg);
    border-color: rgba(251, 144, 6, 0.2);
}

.food-card:hover .food-img-wrap::after {
    opacity: 1;
}

.food-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f0e8, #fff0e6);
}

.food-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    display: block;
}

.food-card:hover .food-img-wrap img {
    transform: scale(1.08);
}

.food-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(56, 106, 3, 0.3), transparent);
    opacity: 0;
    transition: var(--transition);
}

.food-img-wrap .food-emoji {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    transition: var(--transition);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.food-card:hover .food-emoji {
    transform: translate(-50%, -55%) scale(1.1);
}

.food-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    z-index: 2;
}

.food-body {
    padding: 1.4rem;
}

.food-category {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 6px;
}

.food-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 6px;
}

.food-desc {
    font-size: 0.82rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.food-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.food-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--secondary);
}

.food-price span {
    color: var(--primary);
}


/* Quantity selector */

.qty-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-800);
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.qty-btn:hover {
    background: var(--primary);
    color: white;
}

.qty-num {
    font-weight: 700;
    font-size: 1rem;
    color: var(--secondary);
    min-width: 24px;
    text-align: center;
}

.add-cart-btn {
    width: 100%;
    background: var(--secondary);
    color: white;
    padding: 11px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.add-cart-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

.add-cart-btn.added {
    background: var(--success);
}


/* ===== WHY ADOX ===== */

.why-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(251, 144, 6, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(251, 144, 6, 0.05) 0%, transparent 50%);
}

.why-section .section-title {
    color: var(--white);
}

.why-section .section-sub {
    color: rgba(255, 255, 255, 0.6);
}

.why-section .section-tag {
    background: rgba(251, 144, 6, 0.2);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(251, 144, 6, 0.3);
    transform: rotate(-5deg);
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    transform: rotate(0deg) scale(1.1);
}

.benefit-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.benefit-text {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
}


/* ===== MENU PAGE ===== */

.menu-hero {
    background: linear-gradient(135deg, var(--secondary), var(--secondary));
    padding: 120px 2rem 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.menu-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(251, 144, 6, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(251, 144, 6, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
}

.menu-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: white;
    position: relative;
    z-index: 1;
}

.menu-hero h1 span {
    color: var(--primary);
}

.menu-hero p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin-top: 0.8rem;
    position: relative;
    z-index: 1;
}

.menu-main {
    display: flex;
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 3rem 2rem;
    align-items: flex-start;
}


/* Category filter */

.category-tabs {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    padding: 0 2rem;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.cat-tab {
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 2px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-600);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cat-tab:hover,
.cat-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: var(--shadow-orange);
}

.menu-grid-wrap {
    flex: 1;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}


/* ===== CART SIDEBAR ===== */

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}

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

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 380px;
    height: 100vh;
    background: var(--white);
    z-index: 1200;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 60px rgba(0, 0, 0, 0.15);
}

.cart-sidebar.open {
    transform: translateX(0);
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--secondary);
    color: white;
}

.cart-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: none;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.cart-close:hover {
    background: var(--primary);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--gray-400);
}

.cart-empty .empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.cart-empty p {
    font-size: 0.9rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-100);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.ci-emoji {
    font-size: 2.2rem;
    background: var(--gray-100);
    width: 54px;
    height: 54px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ci-info {
    flex: 1;
}

.ci-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 4px;
}

.ci-price {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 700;
}

.ci-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.ci-qty-btn {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: var(--gray-100);
    border: none;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ci-qty-btn:hover {
    background: var(--primary);
    color: white;
}

.ci-qty {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
    min-width: 20px;
    text-align: center;
}

.ci-remove {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--gray-400);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 4px;
}

.ci-remove:hover {
    color: #ef4444;
    transform: scale(1.2);
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--gray-100);
    background: var(--white);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
}

.cart-total span:first-child {
    font-weight: 600;
    color: var(--gray-600);
}

.cart-total-amount {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--secondary);
}

.checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: var(--shadow-orange);
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(251, 144, 6, 0.45);
}


/* ===== CHECKOUT PAGE ===== */

.checkout-hero {
    background: linear-gradient(135deg, var(--secondary), var(--secondary));
    padding: 120px 2rem 60px;
    text-align: center;
}

.checkout-hero h1 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    color: white;
}

.checkout-hero h1 span {
    color: var(--primary);
}

.checkout-hero p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

.checkout-wrap {
    max-width: 1100px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2rem;
    align-items: flex-start;
}

.checkout-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

.checkout-card h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-card h2 .ch2-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}


/* Order summary */

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.9rem;
}

.order-item:last-child {
    border-bottom: none;
}

.oi-name {
    color: var(--gray-800);
    font-weight: 500;
}

.oi-qty {
    color: var(--gray-400);
    font-size: 0.8rem;
}

.oi-price {
    font-weight: 700;
    color: var(--secondary);
}

.order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0 0;
    margin-top: 0.5rem;
    border-top: 2px solid var(--secondary);
}

.order-total span {
    font-weight: 700;
    color: var(--secondary);
}

.order-total-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
}


/* Bank details */

.bank-box {
    background: linear-gradient(135deg, rgba(251, 144, 6, 0.05), rgba(56, 106, 3, 0.05));
    border: 2px solid rgba(251, 144, 6, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.bank-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
}

.bank-row:last-child {
    margin-bottom: 0;
}

.bank-label {
    font-size: 0.8rem;
    color: var(--gray-400);
    font-weight: 500;
}

.bank-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary);
}

.bank-value.account {
    font-size: 1.2rem;
    color: var(--primary);
    letter-spacing: 1px;
}


/* Form */

.form-group {
    margin-bottom: 1.2rem;
}

.form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 6px;
}

.form-label span {
    color: var(--primary);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--gray-800);
    transition: var(--transition);
    background: var(--white);
    outline: none;
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(251, 144, 6, 0.1);
}

.form-input.error {
    border-color: #ef4444;
}

.form-error {
    font-size: 0.75rem;
    color: #ef4444;
    margin-top: 4px;
    display: none;
}

.form-error.show {
    display: block;
}


/* File upload */

.file-upload-wrap {
    border: 2px dashed var(--gray-200);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.file-upload-wrap:hover,
.file-upload-wrap.dragover {
    border-color: var(--primary);
    background: rgba(251, 144, 6, 0.03);
}

.file-upload-wrap input {
    display: none;
}

.file-upload-wrap .up-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.file-upload-wrap p {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.file-upload-wrap .up-hint {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 4px;
}

.file-preview {
    display: none;
    margin-top: 1rem;
    font-size: 0.82rem;
    color: var(--success);
    font-weight: 600;
    align-items: center;
    gap: 6px;
}

.file-preview.show {
    display: flex;
    justify-content: center;
}

.whatsapp-btn {
    width: 100%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    margin-top: 1.5rem;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn svg {
    width: 22px;
    height: 22px;
    fill: white;
}


/* ===== FOOTER ===== */

footer {
    background: var(--secondary);
    color: white;
    padding: 3rem 2rem 2rem;
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.footer-logo span {
    color: var(--primary);
}

.footer-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-copy {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
}


/* ===== TOAST ===== */

.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.toast {
    background: var(--secondary);
    color: white;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    animation: toastIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 4px solid var(--primary);
    min-width: 260px;
    max-width: 320px;
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateX(100%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes toastOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

.toast.leaving {
    animation: toastOut 0.3s ease forwards;
}


/* ===== MODAL ===== */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(8px);
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 420px;
    width: 90%;
    text-align: center;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: var(--shadow-lg);
}

.modal-overlay.open .modal {
    transform: scale(1);
}

.modal-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.modal h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.modal p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.modal-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.modal-btn-yes {
    background: var(--success);
    color: white;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.modal-btn-yes:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

.modal-btn-no {
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.modal-btn-no:hover {
    background: var(--gray-200);
}


/* ===== ANIMATIONS ===== */

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ===== MOBILE ===== */

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
        border-bottom: 3px solid var(--primary);
    }
    .nav-links.mobile-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .hamburger {
        display: flex;
    }
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-visual {
        display: none;
    }
    .hero-btns {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    .checkout-wrap {
        grid-template-columns: 1fr;
    }
    .cart-sidebar {
        width: 100%;
    }
    .category-tabs {
        padding: 0 1rem;
    }
    .menu-main {
        padding: 2rem 1rem;
    }
    section {
        padding: 4rem 1.5rem;
    }
    .toast-container {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }
    .toast {
        min-width: unset;
        max-width: 100%;
    }
    .hero {
        padding-top: 120px;
    }
    .menu-hero {
        padding-top: 140px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 5px;
    }
    .logo {
        font-size: 1rem;
    }
    .hero {
        padding: 80px 15px;
    }
    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .cart-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    .menu-icon {
        font-size: 1.2rem;
    }
}


/* ===== STATUS BANNER ===== */

.status-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    padding: 8px 2rem;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.status-banner.open {
    background: var(--success);
    color: white;
}

.status-banner.closed {
    background: #ef4444;
    color: white;
}

.navbar {
    top: 36px;
}

.hero {
    padding-top: 140px;
}

.menu-hero {
    padding-top: 150px;
}


/* ===== SOCIAL LINKS ===== */

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.social-btn {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.social-btn svg {
    width: 18px;
    height: 18px;
}

.social-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(251, 144, 6, 0.35);
}


/* ===== HOURS GRID ===== */

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.hours-card {
    background: var(--bg);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.hours-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(251, 144, 6, 0.2);
}

.hours-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.hours-day {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.4rem;
}

.hours-time {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
}


/* ===== CART MIN NOTICE ===== */

.cart-min-notice {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    text-align: center;
    padding: 6px 0;
    margin-bottom: 0.5rem;
}


/* ===== ORDER ID BADGE ===== */

.order-id-badge {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.order-id-badge span {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 1px;
}


/* ===== CONFETTI CANVAS ===== */

#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

#filterDropdown .cat-tab {
    display: block;
    width: 100%;
    text-align: left;
    border-radius: 8px;
    margin-bottom: 4px;
    border: none;
}

.cart-min-bar-wrap {
    margin-bottom: 0.75rem;
}

.cart-min-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gray-600);
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}

.cart-min-bar {
    height: 6px;
    background: var(--gray-100);
    border-radius: 10px;
    overflow: hidden;
}

.cart-min-fill {
    height: 100%;
    border-radius: 10px;
    background: #ef4444;
    transition: width 0.4s ease, background 0.4s ease;
}

.cart-min-fill.reached {
    background: var(--success);
}

.cart-min-notice {
    font-size: 0.72rem;
    font-weight: 700;
    text-align: center;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.cart-min-notice.not-reached {
    color: #ef4444;
    animation: pulse-text 1.2s ease infinite;
}

.cart-min-notice.reached {
    color: var(--success);
    animation: none;
}

@keyframes pulse-text {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(0.97);
    }
}