:root {
    --black: #0d0d0d;
    --dark: #1a1a1a;
    --lime: #a3e635;
    --lime-dark: #84cc16;
    --green: #166534;
    --green-light: #22c55e;
    --white: #ffffff;
    --off-white: #f4f4f5;
    --gray: #71717a;
    --gray-light: #e4e4e7;
    --whatsapp: #25d366;

    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
    font-weight: 400;
}

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

.section-sub {
    color: var(--gray);
    margin-top: 0.5rem;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--black);
    border-bottom: 2px solid var(--lime);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    display: block;
    width: 52px;
    height: 52px;
    object-fit: contain;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.logo:hover .logo-img {
    transform: scale(1.04);
    filter: brightness(1.08);
}

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

.nav-links a {
    color: var(--off-white);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--lime);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--lime);
    transition: 0.2s;
}

.cart-btn {
    background: var(--lime);
    color: var(--black);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.cart-btn:hover {
    transform: scale(1.05);
}

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

/* Hero */
.hero {
    background: var(--black);
    color: var(--white);
    width: 100%;
    padding: 2.5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(163, 230, 53, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    position: absolute;
    top: 0;
    right: 1.5rem;
    background: var(--lime);
    color: var(--black);
    padding: 0.4rem 0.85rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    z-index: 1;
}

.hero-tagline {
    color: var(--lime);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
}

.hero-content h1 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    line-height: 1.05;
    margin-bottom: 1rem;
}

.hero-content h1 .highlight {
    color: var(--lime);
}

.hero-sub {
    color: #a1a1aa;
    font-size: 0.95rem;
    max-width: 420px;
    margin-bottom: 1.5rem;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cta-btn {
    background: var(--lime);
    color: var(--black);
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-family: var(--font-body);
    transition: all 0.2s;
}

.cta-btn:hover {
    background: var(--lime-dark);
    transform: translateY(-1px);
}

.cta-btn-outline {
    background: transparent;
    border: 2px solid var(--lime);
    color: var(--lime);
    padding: 0.7rem 1.35rem;
    font-size: 0.9rem;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.2s;
}

.cta-btn-outline:hover {
    background: var(--lime);
    color: var(--black);
}

.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-photo {
    width: 100%;
    max-width: 460px;
    height: auto;
    aspect-ratio: 1024 / 545;
    object-fit: cover;
    object-position: top center;
    border-radius: 12px;
    border: 2px solid rgba(163, 230, 53, 0.5);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.hero-stats {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-stats span {
    background: rgba(255, 255, 255, 0.06);
    color: #d4d4d8;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Delivery Banner */
.delivery-banner {
    background: var(--green);
    color: var(--white);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
}

.delivery-icon {
    font-size: 1.5rem;
}

/* Why Choose Us */
.why-choose-us {
    padding: 4rem 1.5rem;
    text-align: center;
    background: var(--off-white);
}

.why-choose-us h2 {
    font-size: 2.5rem;
    color: var(--black);
}

.features-grid {
    max-width: 1100px;
    margin: 2.5rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.features-grid-four {
    max-width: 1000px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--gray-light);
    transition: all 0.25s;
}

.feature-card:hover {
    border-color: var(--lime);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Menu */
.menu-section {
    max-width: 960px;
    margin: 0 auto;
    padding: 3rem 1.5rem 3.5rem;
    background: var(--off-white);
}

.menu-header .section-sub strong {
    color: var(--green);
}

.menu-header {
    text-align: center;
    margin-bottom: 1.75rem;
}

.menu-label {
    display: inline-block;
    background: var(--black);
    color: var(--lime);
    padding: 0.25rem 0.85rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.6rem;
}

.menu-section h2 {
    font-size: 2.25rem;
    color: var(--black);
}

.menu-header .section-sub {
    font-size: 0.9rem;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--white);
    border: 1px solid var(--gray-light);
    padding: 0.45rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.82rem;
    font-family: var(--font-body);
    transition: all 0.2s;
    color: var(--gray);
}

.filter-btn:hover {
    border-color: var(--black);
    color: var(--black);
}

.filter-btn.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.meals-grid {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.meal-card {
    background: var(--white);
    border: 1px solid #e4e4e7;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
    display: grid;
    grid-template-columns: 112px 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 0.85rem 1rem;
}

.meal-image-wrap {
    position: relative;
    width: 112px;
    height: 112px;
    border-radius: 10px;
    overflow: hidden;
    background: #f4f4f5;
    flex-shrink: 0;
}

.meal-tag {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--green);
    background: #ecfccb;
    padding: 0.2rem 0.45rem;
    border-radius: 4px;
}

.meal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.meal-card:hover {
    border-color: #d4d4d8;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.meal-body {
    min-width: 0;
    padding: 0.15rem 0;
}

.meal-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.25rem;
}

.meal-name {
    font-size: 1.05rem;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--black);
    margin: 0;
    letter-spacing: -0.01em;
}

.meal-description {
    color: var(--gray);
    font-size: 0.8rem;
    line-height: 1.45;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.size-picker {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.size-picker-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.meal-nutrition-wrap {
    margin-top: 0.45rem;
}

.meal-nutrition {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem 0.4rem;
}

.nutrition-item {
    font-size: 0.67rem;
    font-weight: 600;
    color: var(--dark);
    background: #f4f4f5;
    padding: 0.18rem 0.45rem;
    border-radius: 999px;
    white-space: nowrap;
    line-height: 1.35;
}

.size-pills {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.size-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.65rem;
    border: 1.5px solid #e4e4e7;
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
    font-family: var(--font-body);
    transition: all 0.15s;
}

.size-pill:hover {
    border-color: var(--green);
}

.size-pill.active {
    border-color: var(--green);
    background: #f0fdf4;
}

.size-pill-weight {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--black);
}

.size-pill-price {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--green);
}

.meal-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 0.45rem;
    flex-shrink: 0;
    padding-left: 0.5rem;
}

.meal-price {
    font-size: 1.25rem;
    color: var(--black);
    font-weight: 700;
    font-family: var(--font-body);
    letter-spacing: -0.02em;
}

.meal-action .add-to-cart-btn {
    width: auto;
    padding: 0.5rem 0.85rem;
    font-size: 0.78rem;
    border-radius: 8px;
    white-space: nowrap;
}

.add-to-cart-btn {
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.add-to-cart-btn:hover {
    background: var(--green);
    color: var(--white);
}

/* Services */
.services {
    background: var(--black);
    padding: 3rem 1.5rem;
}

.services-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.service-item {
    text-align: center;
    color: var(--white);
}

.service-item span {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.75rem;
}

.service-item h4 {
    font-size: 1.3rem;
    color: var(--lime);
    margin-bottom: 0.4rem;
}

.service-item p {
    color: var(--gray-light);
    font-size: 0.9rem;
}

/* How It Works */
.how-it-works {
    padding: 4rem 1.5rem;
    background: var(--off-white);
    text-align: center;
}

.how-it-works h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: var(--black);
}

.steps-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.step {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--gray-light);
}

.step-number {
    width: 52px;
    height: 52px;
    background: var(--lime);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    font-family: var(--font-heading);
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.step p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials {
    padding: 4rem 1.5rem;
}

.testimonials h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--black);
}

.testimonial-carousel {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
}

.testimonial-carousel::-webkit-scrollbar {
    height: 6px;
}

.testimonial-carousel::-webkit-scrollbar-thumb {
    background: var(--lime);
    border-radius: 10px;
}

.testimonial-card {
    flex: 0 0 100%;
    background: var(--off-white);
    padding: 2rem;
    border-radius: 12px;
    scroll-snap-align: start;
    border-left: 4px solid var(--lime);
}

.testimonial-card .stars {
    color: var(--lime-dark);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--green);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.carousel-btn {
    background: var(--black);
    color: var(--lime);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.2s;
}

.carousel-btn:hover {
    background: var(--lime);
    color: var(--black);
}

/* Contact */
.contact-section {
    background: var(--black);
    color: var(--white);
    padding: 4rem 1.5rem;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.contact-slogan {
    color: var(--lime);
    font-weight: 600;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.order-now-btn {
    display: inline-block;
    background: var(--lime);
    color: var(--black);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    transition: all 0.2s;
}

.order-now-btn:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: var(--gray-light);
    font-size: 0.95rem;
}

.contact-links a:hover {
    color: var(--lime);
}

.visit-counter {
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(163, 230, 53, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.visit-counter-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray);
}

.visit-counter-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1;
    color: var(--lime);
    letter-spacing: 0.04em;
}

/* Footer */
.footer {
    background: #080808;
    color: var(--gray);
    text-align: center;
    padding: 1.5rem;
    font-size: 0.9rem;
}

/* Founders */
.founders-section {
    background: var(--off-white);
    padding: 3.5rem 1.5rem;
    border-top: 1px solid #e4e4e7;
}

.founders-inner {
    max-width: 920px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(240px, 340px) 1fr;
    gap: 2.5rem;
    align-items: center;
}

.founders-photo-side {
    width: 100%;
}

.founders-together-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center top;
    border-radius: 16px;
    border: 3px solid var(--lime);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    display: block;
}

.founders-info {
    text-align: left;
}

.founders-info h2 {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.founders-intro {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.75rem;
}

.founders-names {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.founder-item {
    padding-left: 1rem;
    border-left: 3px solid var(--lime);
}

.founder-role {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green);
    margin-bottom: 0.25rem;
}

.founder-name {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.01em;
}

.footer-tagline {
    color: var(--lime);
    margin-top: 0.25rem;
    font-size: 0.85rem;
}

.footer-logo {
    display: block;
    width: 72px;
    height: 72px;
    margin: 0 auto 1rem;
    object-fit: contain;
}

.footer-credit {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(163, 230, 53, 0.2);
}

.dev-credit-btn {
    background: none;
    border: none;
    color: var(--gray);
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
    font-family: inherit;
}

.dev-credit-btn:hover,
.dev-credit-btn:focus-visible {
    color: var(--lime);
    background: rgba(163, 230, 53, 0.08);
    outline: none;
}

/* Developer Modal */
.dev-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 400;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.dev-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.dev-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: min(92vw, 400px);
    background: var(--black);
    border: 2px solid var(--lime);
    border-radius: 16px;
    padding: 1.75rem;
    z-index: 401;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.dev-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.dev-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.35rem;
}

.dev-modal-header h3 {
    color: var(--lime);
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0;
}

.dev-modal-close {
    background: none;
    border: none;
    color: var(--gray);
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 0.25rem;
    transition: color 0.2s;
}

.dev-modal-close:hover,
.dev-modal-close:focus-visible {
    color: var(--lime);
    outline: none;
}

.dev-modal-subtitle {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
}

.dev-modal-contact {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
}

.dev-contact-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.6rem 0.85rem;
    background: rgba(163, 230, 53, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(163, 230, 53, 0.2);
    transition: border-color 0.2s, background 0.2s;
}

.dev-contact-link:hover {
    border-color: var(--lime);
    background: rgba(163, 230, 53, 0.15);
    color: var(--lime);
}

.dev-modal-services h4 {
    color: var(--lime);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.dev-modal-services ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.dev-modal-services li {
    color: #fff;
    font-size: 0.85rem;
    padding: 0.5rem 0.65rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    border-left: 2px solid var(--lime);
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    z-index: 200;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
}

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

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 2px solid var(--lime);
    position: sticky;
    top: 0;
    background: var(--black);
    color: var(--white);
}

.cart-header h3 {
    font-size: 1.5rem;
    color: var(--lime);
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.75rem;
    cursor: pointer;
    color: var(--white);
    line-height: 1;
}

.cart-items {
    padding: 1.25rem;
    min-height: 120px;
}

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

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--off-white);
    border-radius: 10px;
    margin-bottom: 0.75rem;
    gap: 0.5rem;
}

.cart-item-info h4 {
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.2rem;
}

.cart-item-info p {
    font-size: 0.82rem;
    color: var(--gray);
}

.cart-item-controls {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    flex-shrink: 0;
}

.qty-btn {
    background: var(--white);
    border: 1px solid var(--gray-light);
    width: 28px;
    height: 28px;
    cursor: pointer;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.15s;
}

.qty-btn:hover {
    background: var(--black);
    color: var(--lime);
    border-color: var(--black);
}

.qty-display {
    width: 24px;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.remove-btn {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    font-weight: 700;
    padding: 0 0.25rem;
}

.cart-summary {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.summary-row.total {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--green);
    margin-bottom: 0;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px dashed var(--gray-light);
}

.order-whatsapp-btn {
    background: var(--whatsapp);
    color: var(--white);
}

.order-whatsapp-btn:hover {
    background: #20ba5a;
    color: var(--white);
}

.add-to-cart-secondary {
    width: 100%;
    background: transparent;
    color: var(--gray);
    border: none;
    padding: 0.5rem;
    margin-top: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.add-to-cart-secondary:hover {
    color: var(--black);
}

.cart-checkout {
    padding: 1.25rem 1.5rem 2rem;
}

.cart-checkout-note {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.checkout-form {
    padding: 1.25rem 1.5rem 2rem;
}

.field-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.location-field {
    margin-bottom: 0.75rem;
}

.location-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
}

.location-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--black);
    color: var(--lime);
    border: none;
    padding: 0.55rem 0.9rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all 0.2s;
}

.location-btn:hover:not(:disabled) {
    background: var(--lime);
    color: var(--black);
}

.location-btn:disabled {
    opacity: 0.65;
    cursor: wait;
}

.location-or {
    font-size: 0.8rem;
    color: var(--gray);
}

.location-status {
    font-size: 0.8rem;
    margin-top: 0.45rem;
    line-height: 1.4;
}

.location-status.loading {
    color: var(--gray);
}

.location-status.success {
    color: var(--green);
}

.location-status.error {
    color: #dc2626;
}

.location-preview {
    background: var(--off-white);
    border: 2px solid var(--lime);
    border-radius: 10px;
    padding: 0.85rem;
    margin-bottom: 0.75rem;
}

.location-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.location-pin {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--green);
}

.location-map-link {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--black);
    text-decoration: underline;
}

.location-coords {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--dark);
    word-break: break-all;
    margin-bottom: 0.25rem;
}

.location-accuracy {
    font-size: 0.75rem;
    color: var(--gray);
    margin-bottom: 0.65rem;
    line-height: 1.4;
}

.location-map {
    width: 100%;
    height: 160px;
    border: none;
    border-radius: 8px;
    background: #ddd;
}

#landmark,
#addressManual,
#sauceChoice {
    width: 100%;
    padding: 0.7rem;
    margin-bottom: 0.75rem;
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

#landmark:focus,
#addressManual:focus,
#sauceChoice:focus {
    outline: none;
    border-color: var(--lime-dark);
    box-shadow: 0 0 0 3px rgba(163, 230, 53, 0.2);
}

.checkout-form h4 {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
    width: 100%;
    padding: 0.7rem;
    margin-bottom: 0.75rem;
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
    outline: none;
    border-color: var(--lime-dark);
    box-shadow: 0 0 0 3px rgba(163, 230, 53, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.form-row input,
.form-row select {
    margin-bottom: 0.75rem;
}

.whatsapp-btn {
    width: 100%;
    background: var(--whatsapp);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
    margin-top: 0.5rem;
}

.whatsapp-btn:hover {
    background: #20ba5a;
    transform: translateY(-1px);
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--black);
    color: var(--lime);
    padding: 0.85rem 1.25rem;
    border-radius: 8px;
    z-index: 300;
    font-weight: 600;
    border: 2px solid var(--lime);
    animation: slideIn 0.3s ease;
}

.toast-out {
    animation: slideOut 0.3s ease forwards;
}

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

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

/* Responsive */
@media (max-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 2.5rem;
        gap: 1.5rem;
    }

    .hero-badge {
        top: 0;
        right: 1rem;
        font-size: 0.68rem;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .meal-card {
        grid-template-columns: 88px 1fr;
        grid-template-rows: auto auto;
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .meal-action {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0.5rem 0 0;
        border-top: 1px solid #f4f4f5;
    }

    .meal-image-wrap {
        width: 88px;
        height: 88px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--black);
        flex-direction: column;
        padding: 1rem 1.5rem 1.5rem;
        gap: 1rem;
        border-bottom: 2px solid var(--lime);
    }

    .nav-links.open {
        display: flex;
    }

    .navbar {
        position: sticky;
    }

    .nav-container {
        position: relative;
    }

    .nav-actions {
        margin-left: auto;
    }

    .logo-img {
        width: 46px;
        height: 46px;
    }

    .footer-logo {
        width: 64px;
        height: 64px;
    }

    .founders-inner {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .founders-info {
        text-align: center;
    }

    .founder-item {
        padding-left: 0;
        border-left: none;
        padding-top: 0.75rem;
        border-top: 2px solid var(--lime);
    }

    .founders-names {
        align-items: center;
    }

    .meals-grid {
        gap: 0.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        flex: 0 0 90vw;
    }

    .cart-sidebar {
        max-width: 100%;
    }

    .dev-modal-services ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.25rem;
    }

    .menu-section h2 {
        font-size: 2.25rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}
