:root {
    --primary: #ff6a00;
    --primary-rgb: 255, 106, 0;
    --accent: #ff8c1a;
    --secondary: #1b1f2a;
    --secondary-soft: #252b38;
    --light-bg: #fff7f2;
    --text: #222222;
    --muted: #69707d;
    --white: #ffffff;
    --border: #eee3dc;
    --shadow: 0 22px 60px rgba(27, 31, 42, 0.12);
    --shadow-soft: 0 12px 35px rgba(27, 31, 42, 0.08);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    max-width: 100%;
    color: var(--text);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #fff8f2;
    overflow-x: hidden;
}

main,
.site-footer,
.top-bar,
.food-navbar {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand,
.section-title {
    color: var(--secondary);
    font-family: "Poppins", sans-serif;
    font-weight: 800;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

a:hover {
    color: var(--primary);
}

a:focus-visible,
button:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible {
    outline: 3px solid rgba(var(--primary-rgb), 0.35);
    outline-offset: 3px;
}

img,
svg,
video,
iframe {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Prevent AOS entrance transforms from creating horizontal scroll */
[data-aos] {
    overflow-anchor: none;
}

.fx-hero,
.fx-about-food,
.fx-pickup,
.fx-products,
.fx-testimonials,
.fx-three-boxes,
.fx-pizza-banner,
.fx-newsletter,
.fx-news {
    overflow-x: hidden;
}

p {
    color: var(--muted);
    line-height: 1.75;
}

.text-orange {
    color: var(--primary) !important;
}

.bg-soft {
    background: var(--light-bg);
}

.section-padding {
    padding: 110px 0;
}

.section-padding-sm {
    padding: 80px 0;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-kicker::before,
.section-kicker::after {
    width: 28px;
    height: 3px;
    background: var(--gradient);
    border-radius: 999px;
    content: "";
}

.section-title {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 3.65rem);
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.section-lead {
    max-width: 720px;
    margin: 0 auto 46px;
    font-size: 1.06rem;
}

.btn {
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.01em;
    padding: 13px 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn-sm {
    padding: 10px 20px;
}

.btn-gradient {
    border: 0;
    color: var(--white) !important;
    background: var(--gradient);
    box-shadow: 0 14px 34px rgba(var(--primary-rgb), 0.35);
}

.btn-gradient:hover {
    background: var(--secondary);
    box-shadow: 0 18px 38px rgba(27, 31, 42, 0.28);
    transform: translateY(-3px);
}

.btn-outline-dark {
    border-color: rgba(27, 31, 42, 0.18);
    color: var(--secondary);
}

.btn-outline-dark:hover {
    border-color: var(--secondary);
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
}

.loader {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    background: var(--secondary);
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader__plate {
    position: relative;
    display: grid;
    width: 96px;
    height: 96px;
    place-items: center;
    color: var(--white);
}

.loader__plate::before,
.loader__plate::after {
    position: absolute;
    border-radius: 50%;
    content: "";
}

.loader__plate::before {
    inset: 0;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary);
    animation: spin 1s linear infinite;
}

.loader__plate::after {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    box-shadow: 0 0 45px rgba(var(--primary-rgb), 0.55);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1800;
    width: 0;
    height: 4px;
    background: var(--gradient);
}

.top-bar {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.78);
    background: #1d1b22;
    font-size: 0.78rem;
}

.top-bar__info,
.top-bar__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

.top-bar i {
    color: #ffffff;
}

.top-bar__info a,
.top-bar__actions a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.top-bar__info a:hover,
.top-bar__actions a:hover {
    color: #ffffff;
}

.top-bar__promo {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 13px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.food-navbar {
    position: sticky !important;
    top: 0;
    z-index: 1500;
    min-height: 76px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 0 rgba(27, 31, 42, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: box-shadow 0.25s ease, min-height 0.25s ease;
}

.food-navbar.is-sticky {
    min-height: 76px;
    box-shadow: var(--shadow-soft);
}

.navbar-brand img {
    width: 112px;
    height: auto;
    border-radius: 12px;
}

.footer-brand img {
    width: 172px;
    height: auto;
    border-radius: 14px;
    filter: brightness(0) invert(1);
}

.food-navbar .nav-link {
    color: var(--secondary);
    font-size: 0.86rem;
    font-weight: 900;
    padding: 15px 13px !important;
}

.food-navbar .nav-link.active,
.food-navbar .nav-link:hover {
    color: var(--primary);
}

.navbar-toggler {
    border: 0;
    box-shadow: none !important;
}

.navbar-toggler-icon {
    background-image: var(--bs-navbar-toggler-icon-bg);
}

.mega-menu {
    left: 50%;
    width: min(960px, calc(100vw - 30px));
    max-width: calc(100vw - 30px);
    margin-top: 14px;
    padding: 30px;
    border: 0;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    transform: translateX(-50%);
}

.mega-menu h6 {
    margin-bottom: 14px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.mega-menu a {
    display: block;
    padding: 8px 0;
    color: var(--secondary);
    font-weight: 700;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-call {
    align-items: center;
    gap: 10px;
    margin-right: 16px;
    color: #149449;
    font-family: "Poppins", sans-serif;
}

.nav-call i {
    font-size: 1.9rem;
}

.nav-call small,
.nav-call strong {
    display: block;
    line-height: 1.1;
}

.nav-call small {
    color: #9a918a;
    font-size: 0.72rem;
}

.nav-call strong {
    color: #ffc928;
    font-size: 1.2rem;
}

.nav-call a {
    color: inherit;
    text-decoration: none;
}

.nav-icon,
.back-to-top {
    display: inline-grid;
    place-items: center;
    border: 0;
    color: var(--secondary);
    background: var(--light-bg);
}

.nav-icon {
    position: relative;
    width: 34px;
    height: 34px;
    border-radius: 50%;
}

.nav-icon:hover {
    color: var(--white);
    background: var(--gradient);
}

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    background:
        radial-gradient(circle at 15% 20%, rgba(var(--primary-rgb), 0.18), transparent 32%),
        linear-gradient(135deg, #fff7f2 0%, #ffffff 50%, #fff0e5 100%);
}

.poco-hero {
    min-height: 690px;
    padding: 90px 0 120px;
    background:
        radial-gradient(circle at 78% 48%, rgba(var(--primary-rgb), 0.18), transparent 0 260px, transparent 265px),
        radial-gradient(circle at 12% 22%, rgba(255, 201, 113, 0.32), transparent 0 130px, transparent 135px),
        linear-gradient(180deg, #fff7ef 0%, #fff2e7 100%);
}

.poco-hero .hero-title {
    max-width: 650px;
    margin-bottom: 18px;
    font-size: clamp(3.5rem, 8vw, 7.8rem);
    line-height: 0.9;
    color: #1b1f2a;
}

.poco-hero .hero-copy {
    max-width: 460px;
    margin-top: 0;
    color: #6a5d55;
    font-weight: 600;
}

.poco-price {
    display: inline-grid;
    gap: 0;
    margin-left: 8px;
    color: var(--secondary);
    font-family: "Poppins", sans-serif;
    line-height: 1;
}

.poco-price span {
    color: var(--primary);
    font-size: 2.25rem;
    font-weight: 900;
}

.poco-price del {
    color: #a99a90;
    font-weight: 800;
}

.poco-hero__image {
    display: grid;
    place-items: center;
    min-height: 560px;
}

.poco-hero__image::before {
    position: absolute;
    inset: 6% 7%;
    z-index: -1;
    border-radius: 50%;
    background: #ffc400;
    box-shadow: 0 35px 80px rgba(255, 196, 0, 0.28);
    content: "";
}

.poco-hero__image img {
    width: min(560px, 92%);
    border: 18px solid #ffffff;
}

.poco-hero__tag {
    position: absolute;
    padding: 12px 18px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--secondary);
    box-shadow: var(--shadow-soft);
    font-weight: 900;
    animation: softFloat 4s ease-in-out infinite;
}

.poco-hero__tag--top {
    top: 12%;
    right: 6%;
}

.poco-hero__tag--bottom {
    bottom: 12%;
    left: 4%;
    background: var(--gradient);
    animation-delay: -1.6s;
}

.hero-section::before,
.hero-section::after {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.12);
    content: "";
    animation: softFloat 7s ease-in-out infinite;
}

.hero-section::before {
    top: 12%;
    right: 7%;
    width: 130px;
    height: 130px;
}

.hero-section::after {
    bottom: 12%;
    left: 8%;
    width: 90px;
    height: 90px;
    animation-delay: -2.5s;
}

.hero-slide {
    position: relative;
    z-index: 1;
    min-height: 720px;
    padding: 105px 0 90px;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 6.8rem);
    line-height: 0.95;
    letter-spacing: -0.07em;
    text-transform: uppercase;
}

.hero-title span {
    color: var(--primary);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    padding: 10px 17px;
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    border-radius: 999px;
    color: var(--primary);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    font-weight: 800;
}

.hero-copy {
    max-width: 620px;
    margin: 25px 0 34px;
    font-size: 1.15rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.hero-image {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.25s ease-out;
}

.hero-image img {
    width: min(560px, 100%);
    max-width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 16px solid var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow);
    animation: heroFoodFloat 5.5s ease-in-out infinite;
}

.hero-price {
    position: absolute;
    right: 6%;
    bottom: 10%;
    display: grid;
    width: 132px;
    height: 132px;
    place-items: center;
    border: 8px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    background: var(--gradient);
    box-shadow: 0 18px 42px rgba(var(--primary-rgb), 0.38);
    font-family: "Poppins", sans-serif;
    font-size: 2rem;
    font-weight: 900;
    animation: pricePulse 2.6s ease-in-out infinite;
}

.hero-old-price {
    position: absolute;
    right: 0;
    bottom: 29%;
    padding: 8px 16px;
    border-radius: 999px;
    color: var(--muted);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    font-weight: 900;
    text-decoration: line-through;
}

.hero-floating-card {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    color: var(--secondary);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-soft);
    font-weight: 900;
    animation: softFloat 4.5s ease-in-out infinite;
}

.hero-floating-card::before {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    content: "";
}

.hero-floating-card--one {
    top: 12%;
    left: 0;
}

.hero-floating-card--two {
    right: 0;
    top: 18%;
    animation-delay: -1.4s;
}

@keyframes heroFoodFloat {
    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    50% {
        transform: translateY(-16px) rotate(1.5deg) scale(1.02);
    }
}

@keyframes softFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -18px, 0);
    }
}

@keyframes pricePulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 18px 42px rgba(var(--primary-rgb), 0.38);
    }

    50% {
        transform: scale(1.07);
        box-shadow: 0 24px 54px rgba(var(--primary-rgb), 0.5);
    }
}

.hero-swiper .swiper-pagination {
    bottom: 34px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary);
}

.search-card {
    position: relative;
    z-index: 3;
    margin-top: -55px;
    padding: 26px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.poco-category-strip {
    position: relative;
    z-index: 4;
    margin-top: -72px;
    padding-bottom: 40px;
}

.poco-strip-card {
    padding: 28px;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(27, 31, 42, 0.1);
}

.poco-strip-title {
    display: block;
    margin-bottom: 18px;
    color: var(--primary);
    font-family: "Poppins", sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
    text-transform: lowercase;
}

.poco-category-item {
    display: grid;
    min-height: 150px;
    place-items: center;
    padding: 20px 14px;
    border-radius: 24px;
    background: #fff7ef;
    text-align: center;
}

.poco-category-item:hover {
    color: var(--secondary);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    transform: translateY(-6px);
}

.poco-category-item span {
    display: grid;
    width: 66px;
    height: 66px;
    margin-bottom: 10px;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--gradient);
    font-size: 1.75rem;
}

.poco-category-item strong {
    color: var(--secondary);
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
}

.poco-category-item small {
    color: var(--muted);
    font-weight: 700;
}

.form-control,
.form-select {
    min-height: 54px;
    border: 1px solid var(--border);
    border-radius: 16px;
    color: var(--secondary);
    box-shadow: none !important;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(var(--primary-rgb), 0.55);
}

.feature-chip,
.category-card,
.food-card,
.offer-card,
.restaurant-card,
.chef-card,
.testimonial-card,
.blog-card,
.stat-card,
.info-card,
.checkout-card,
.auth-card,
.timeline-card,
.gallery-card {
    border: 1px solid rgba(27, 31, 42, 0.06);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.category-card:hover,
.food-card:hover,
.offer-card:hover,
.restaurant-card:hover,
.chef-card:hover,
.testimonial-card:hover,
.blog-card:hover,
.info-card:hover,
.gallery-card:hover {
    border-color: rgba(var(--primary-rgb), 0.18);
    box-shadow: var(--shadow);
    transform: translateY(-9px);
}

.category-card {
    padding: 26px;
    text-align: center;
}

.category-card__icon {
    display: grid;
    width: 92px;
    height: 92px;
    margin: 0 auto 18px;
    place-items: center;
    border-radius: 50%;
    color: var(--primary);
    background: var(--light-bg);
    font-size: 2.4rem;
}

.category-card h5,
.food-card h5,
.restaurant-card h5,
.chef-card h5,
.blog-card h5 {
    margin-bottom: 8px;
}

.food-card {
    position: relative;
    overflow: hidden;
}

.food-card__image {
    position: relative;
    overflow: hidden;
    margin: 14px;
    border-radius: 22px;
}

.food-card__image img {
    width: 100%;
    height: 235px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.food-card:hover .food-card__image img,
.gallery-card:hover img,
.blog-card:hover img {
    transform: scale(1.08);
}

.badge-discount,
.badge-food,
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 900;
}

.badge-discount {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 12px;
    color: var(--white);
    background: var(--gradient);
}

.badge-food {
    color: #0e9f6e;
}

.badge-food.non-veg {
    color: #e02424;
}

.food-card__body {
    padding: 4px 22px 24px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #f7b500;
    font-size: 0.88rem;
}

.food-card__meta,
.food-card__actions,
.product-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.price {
    color: var(--primary);
    font-family: "Poppins", sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
}

.old-price {
    margin-left: 6px;
    color: #9ba1aa;
    font-size: 0.95rem;
    text-decoration: line-through;
}

.food-card__quick {
    position: absolute;
    top: 22px;
    right: 22px;
    display: grid;
    gap: 9px;
    opacity: 0;
    transform: translateX(18px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.food-card:hover .food-card__quick {
    opacity: 1;
    transform: translateX(0);
}

.food-card__quick a {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--secondary);
    background: var(--white);
    box-shadow: 0 10px 24px rgba(27, 31, 42, 0.14);
}

.food-card__quick a:hover {
    color: var(--white);
    background: var(--gradient);
}

.offer-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 190px;
    align-items: center;
    gap: 22px;
    overflow: hidden;
    min-height: 248px;
    padding: 32px;
    color: var(--white);
    background: #151a25;
}

.offer-card::after {
    position: absolute;
    right: -70px;
    bottom: -80px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.18);
    content: "";
}

.offer-card__content,
.offer-card__media {
    position: relative;
    z-index: 2;
}

.offer-card__content {
    min-width: 0;
    max-width: 420px;
}

.offer-card h3,
.offer-card p {
    color: var(--white);
}

.offer-card h3 {
    font-size: clamp(1.55rem, 2.4vw, 2.2rem);
    line-height: 1.08;
}

.offer-card p {
    max-width: 360px;
    margin-bottom: 18px;
    font-size: 0.96rem;
}

.offer-card .section-kicker {
    font-size: 0.78rem;
    letter-spacing: 0.06em;
}

.offer-card img {
    width: 100%;
    height: 145px;
    object-fit: cover;
    border: 8px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.food-card {
    border-radius: 30px;
}

.food-card__image {
    border-radius: 26px;
}

.food-card__body h5 {
    font-size: 1.18rem;
    line-height: 1.28;
}

.deal-strip {
    position: relative;
    overflow: hidden;
    padding: 72px;
    border-radius: 42px;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(27, 31, 42, 0.94), rgba(27, 31, 42, 0.78)),
        url("https://images.unsplash.com/photo-1550547660-d9450f859349?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.deal-strip h2,
.deal-strip p {
    color: var(--white);
}

.poco-store-banner,
.poco-discount-band {
    position: relative;
    overflow: hidden;
    border-radius: 36px;
    box-shadow: var(--shadow-soft);
}

.poco-store-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 48px;
    background:
        linear-gradient(135deg, rgba(27, 31, 42, 0.9), rgba(27, 31, 42, 0.72)),
        url("https://images.unsplash.com/photo-1552566626-52f8b828add9?auto=format&fit=crop&w=1400&q=80") center/cover;
}

.poco-store-banner h2,
.poco-store-banner p {
    color: #ffffff;
}

.poco-store-banner h2 {
    margin-bottom: 10px;
    font-size: clamp(2rem, 4vw, 3.6rem);
}

.poco-store-banner p {
    max-width: 620px;
    margin-bottom: 0;
}

.poco-discount-band {
    min-height: 350px;
    display: flex;
    align-items: center;
    padding: 56px;
    color: #ffffff;
    background:
        linear-gradient(90deg, rgba(27, 31, 42, 0.96) 0%, rgba(27, 31, 42, 0.84) 46%, rgba(255, 106, 0, 0.2) 100%),
        url("https://images.unsplash.com/photo-1612392062631-94dd858cba88?auto=format&fit=crop&w=1400&q=80") center/cover;
}

.poco-discount-band span {
    color: var(--primary);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.poco-discount-band h2 {
    color: #ffffff;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.95;
}

.poco-discount-band p {
    max-width: 430px;
    color: rgba(255, 255, 255, 0.8);
}

.step-card {
    position: relative;
    padding: 34px 26px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.step-card__number {
    display: grid;
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--gradient);
    font-family: "Poppins", sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    box-shadow: 0 16px 36px rgba(var(--primary-rgb), 0.28);
}

.restaurant-card {
    overflow: hidden;
}

.restaurant-card img,
.blog-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.restaurant-card__body,
.blog-card__body {
    padding: 24px;
}

.restaurant-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
}

.restaurant-card__tags span,
.filter-btn,
.status-badge {
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--light-bg);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 800;
}

.chef-card {
    overflow: hidden;
    text-align: center;
}

.chef-card img {
    width: 100%;
    height: 310px;
    object-fit: cover;
}

.chef-card__body {
    padding: 24px;
}

.chef-card__social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.chef-card__social a {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    color: var(--primary);
    background: transparent;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.gallery-card__overlay {
    position: absolute;
    inset: 16px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: var(--white);
    background: rgba(27, 31, 42, 0.58);
    opacity: 0;
    transform: scale(0.94);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-card:hover .gallery-card__overlay {
    opacity: 1;
    transform: scale(1);
}

.app-section {
    overflow: hidden;
    color: var(--white);
    background: var(--secondary);
}

.app-section h2,
.app-section p {
    color: var(--white);
}

.app-mockup {
    position: relative;
    max-width: 360px;
    margin: auto;
    padding: 18px;
    border-radius: 42px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.app-mockup img {
    border-radius: 30px;
}

.testimonial-card {
    padding: 34px;
}

.testimonial-card__head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.testimonial-card__head img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.stat-card {
    padding: 30px;
    text-align: center;
}

.stat-card h3 {
    color: var(--primary);
    font-size: 3rem;
}

.newsletter-card {
    padding: 48px;
    border-radius: 38px;
    background: var(--gradient);
    box-shadow: 0 22px 60px rgba(var(--primary-rgb), 0.24);
}

.newsletter-card h2,
.newsletter-card p {
    color: var(--white);
}

.newsletter-card .form-control {
    min-height: 62px;
    border: 0;
    border-radius: 999px;
}

.site-footer {
    color: rgba(255, 255, 255, 0.72);
    background: #121722;
}

.footer-top {
    padding: 64px 0 48px;
}

.footer-brand {
    display: inline-block;
    margin-bottom: 18px;
}

.site-footer h5 {
    margin-bottom: 24px;
    color: var(--white);
}

.site-footer p,
.site-footer li {
    color: rgba(255, 255, 255, 0.7);
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer li {
    margin-bottom: 12px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.footer-social a:hover {
    background: var(--gradient);
}

.footer-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.footer-gallery img {
    width: 100%;
    height: 82px;
    object-fit: cover;
    border-radius: 14px;
}

.footer-bottom {
    padding: 13px 0;
    border-top: 0;
    background: #04a84f;
}

.footer-bottom a {
    margin-left: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
    color: #ffffff;
    font-size: 0.82rem;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 105px 0;
    background:
        linear-gradient(135deg, rgba(27, 31, 42, 0.9), rgba(27, 31, 42, 0.72)),
        url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.page-hero h1,
.page-hero p,
.breadcrumb {
    color: var(--white);
}

.page-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.7rem);
}

.breadcrumb-item + .breadcrumb-item::before,
.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.72);
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 38px;
}

.filter-btn {
    border: 0;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.filter-btn.active,
.filter-btn:hover {
    color: var(--white);
    background: var(--gradient);
    transform: translateY(-2px);
}

.info-card {
    height: 100%;
    padding: 32px;
}

.info-card__icon {
    display: grid;
    width: 68px;
    height: 68px;
    margin-bottom: 20px;
    place-items: center;
    border-radius: 20px;
    color: var(--primary);
    background: var(--light-bg);
    font-size: 1.8rem;
}

.product-hero-img {
    overflow: hidden;
    border-radius: 36px;
    box-shadow: var(--shadow);
}

.product-hero-img img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.checkout-card,
.auth-card,
.timeline-card {
    padding: 30px;
}

.product-line {
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

.product-line img {
    width: 78px;
    height: 78px;
    border-radius: 18px;
    object-fit: cover;
}

.track-timeline {
    position: relative;
    display: grid;
    gap: 24px;
}

.track-step {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px;
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.track-step__icon {
    display: grid;
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--gradient);
    font-size: 1.35rem;
}

.track-step.pending {
    opacity: 0.56;
}

.accordion-button {
    border-radius: 18px !important;
    color: var(--secondary);
    font-weight: 800;
    box-shadow: none !important;
}

.accordion-item {
    margin-bottom: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 18px !important;
}

.auth-card {
    max-width: 540px;
    margin: auto;
}

.map-placeholder {
    display: grid;
    min-height: 420px;
    place-items: center;
    border-radius: 34px;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(27, 31, 42, 0.85), rgba(27, 31, 42, 0.7)),
        url("https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 24px;
    z-index: 900;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    color: var(--white);
    background: var(--gradient);
    box-shadow: 0 14px 34px rgba(var(--primary-rgb), 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 2100;
    display: none;
    place-items: center;
    padding: 24px;
    background: rgba(18, 23, 34, 0.9);
}

.lightbox-modal.open {
    display: grid;
}

.lightbox-modal img {
    max-height: 86vh;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--secondary);
    background: var(--white);
}

.not-found {
    min-height: 68vh;
    display: grid;
    place-items: center;
    text-align: center;
}

.not-found h1 {
    color: var(--primary);
    font-size: clamp(6rem, 20vw, 13rem);
    line-height: 0.9;
}

/* Screenshot-matched FoodExpress homepage */
.fx-yellow-btn {
    border: 0;
    border-radius: 4px;
    color: var(--secondary) !important;
    background: #ffc928;
    box-shadow: none;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.fx-yellow-btn:hover {
    color: #ffffff !important;
    background: var(--primary);
    transform: translateY(-2px);
}

.fx-hero {
    position: relative;
    overflow: hidden;
    min-height: 790px;
    display: flex;
    align-items: center;
    background: #f4f0ea;
}

.fx-hero::before {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 73% 36%, #ffc928 0 280px, transparent 282px),
        radial-gradient(circle at 9% 88%, rgba(27, 31, 42, 0.08), transparent 0 240px, transparent 242px);
    content: "";
}

.fx-hero::after {
    position: absolute;
    inset: 0;
    opacity: 0.32;
    background-image:
        radial-gradient(circle at 8% 18%, rgba(27, 31, 42, 0.12) 0 2px, transparent 3px),
        radial-gradient(circle at 72% 6%, rgba(255, 106, 0, 0.22) 0 2px, transparent 3px);
    background-size: 42px 42px, 56px 56px;
    content: "";
}

.fx-hero .container {
    position: relative;
    z-index: 2;
}

.fx-hero__content h1 {
    margin: 0 0 10px;
    color: var(--primary);
    font-family: "Poppins", sans-serif;
    font-size: clamp(4.2rem, 8vw, 7.6rem);
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
}

.fx-hero__content h1 span {
    display: block;
    color: var(--secondary);
    font-size: 0.58em;
}

.fx-hero__content h5 {
    color: #149449;
    font-size: 1.55rem;
    font-weight: 900;
}

.fx-hero__content p {
    margin-bottom: 28px;
    color: #6f6a65;
    font-size: 0.98rem;
}

.fx-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    max-width: 100%;
}

.fx-hero__actions strong {
    color: #159449;
    font-family: "Poppins", sans-serif;
    font-size: 2rem;
}

.fx-hero__actions del {
    color: #9f9993;
    font-weight: 800;
}

.fx-hero__visual {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    max-width: 100%;
}

.fx-hero__visual img {
    position: absolute;
    right: 0;
    top: 50%;
    z-index: 2;
    width: min(720px, 100%);
    max-width: 100%;
    height: 460px;
    object-fit: cover;
    border: 0;
    border-radius: 46% 54% 48% 52%;
    box-shadow: none;
    transform: translateY(-50%);
}

.fx-floating-leaf {
    position: absolute;
    z-index: 3;
    width: 54px;
    height: 28px;
    border-radius: 54px 6px;
    background: #32a852;
    filter: blur(0.2px);
    animation: softFloat 4s ease-in-out infinite;
}

.fx-floating-leaf--one {
    top: 20%;
    left: 16%;
    rotate: -20deg;
}

.fx-floating-leaf--two {
    right: 10%;
    bottom: 24%;
    rotate: 22deg;
    animation-delay: -1.5s;
}

.fx-about-food,
.fx-products,
.fx-news {
    padding: 92px 0;
    background: #ffffff;
}

.fx-about-food__image {
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.fx-about-food__image img {
    width: 88%;
    height: 420px;
    object-fit: cover;
    border-radius: 45% 55% 52% 48%;
}

.fx-about-food__image span {
    position: absolute;
    top: 6%;
    right: 14%;
    display: grid;
    width: 112px;
    height: 112px;
    place-items: center;
    border: 3px solid #ffc928;
    border-radius: 50%;
    color: #ffc928;
    background: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1;
    text-align: center;
}

.fx-about-food__content span {
    color: #e1b215;
    font-family: "Poppins", sans-serif;
    font-weight: 900;
}

.fx-about-food__content h2,
.fx-pickup h2 {
    max-width: 520px;
    margin: 12px 0 18px;
    color: var(--secondary);
    font-size: clamp(2.2rem, 4vw, 3.55rem);
    line-height: 1.02;
}

.fx-about-food__content p,
.fx-pickup p {
    max-width: 580px;
    color: #8a837d;
    font-size: 0.95rem;
}

.fx-pickup {
    padding: 76px 0;
    background: #fbf5df;
}

.fx-pickup__box {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    align-items: center;
    gap: 24px;
    max-width: 100%;
}

.fx-pickup__text--right {
    text-align: right;
}

.fx-pickup__text--right h2,
.fx-pickup__text--right p {
    margin-left: auto;
}

.fx-pickup__rider {
    position: relative;
    display: grid;
    overflow: hidden;
    min-height: 255px;
    place-items: center;
    color: var(--primary);
    font-size: clamp(4rem, 12vw, 8rem);
}

.fx-pickup__rider span {
    position: absolute;
    top: 16%;
    right: 10%;
    padding: 12px 18px;
    border-radius: 10px;
    color: var(--primary);
    background: #f8e8d2;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 900;
    rotate: 8deg;
}

.fx-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
}

.fx-section-head h3,
.fx-testimonials h3 {
    margin: 0;
    color: var(--secondary);
    font-size: 1.35rem;
}

.fx-section-head a {
    flex-shrink: 0;
    color: #10a34a;
    font-weight: 900;
}

.fx-product-card {
    position: relative;
    height: 100%;
    padding: 18px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 14px 42px rgba(27, 31, 42, 0.08);
}

.fx-product-card__wish {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    color: #d7d1ca;
}

.fx-product-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.fx-product-card .rating {
    margin: 14px 0 8px;
    font-size: 0.75rem;
}

.fx-product-card h4 {
    margin: 0 0 5px;
    color: var(--secondary);
    font-size: 1rem;
    line-height: 1.25;
}

.fx-product-card p {
    margin-bottom: 12px;
    color: #9a918a;
    font-size: 0.84rem;
    text-transform: capitalize;
}

.fx-product-card > div:last-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fx-product-card strong {
    color: var(--primary);
    font-family: "Poppins", sans-serif;
}

.fx-product-card a {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--secondary);
    background: #ffc928;
}

.fx-testimonials {
    padding: 70px 0;
    background: #fbf5df;
}

.fx-testimonials h3 {
    margin-bottom: 28px;
}

.fx-review-card {
    height: 100%;
    padding: 22px;
    border-radius: 8px;
    background: #ffffff;
}

.fx-review-card__head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.fx-review-card__head img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.fx-review-card__head strong,
.fx-review-card__head small {
    display: block;
    line-height: 1.1;
}

.fx-review-card__head small {
    color: #9a918a;
    font-size: 0.74rem;
}

.fx-review-card__head span {
    margin-left: auto;
    color: #ffc928;
    font-size: 0.7rem;
}

.fx-review-card p {
    margin: 0;
    color: #8d8580;
    font-size: 0.86rem;
}

.fx-three-boxes {
    background: #ffffff;
}

.fx-promo-box {
    position: relative;
    overflow: hidden;
    min-height: 265px;
    padding: 34px;
    color: #ffffff;
}

.fx-promo-box--1 {
    background: #08a84f;
}

.fx-promo-box--2 {
    background: #d8731d;
}

.fx-promo-box--3 {
    background: #ffc928;
}

.fx-promo-box img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.36;
}

.fx-promo-box div {
    position: relative;
    z-index: 2;
}

.fx-promo-box span {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
}

.fx-promo-box h2 {
    color: #ffffff;
    font-size: clamp(2.1rem, 4vw, 3.7rem);
    line-height: 0.92;
}

.fx-promo-box p,
.fx-promo-box a {
    color: #ffffff;
}

.fx-promo-box strong {
    display: block;
    margin-bottom: 14px;
    font-size: 1.15rem;
}

.fx-promo-box a {
    display: inline-block;
    padding: 9px 18px;
    border-radius: 3px;
    background: #ffffff;
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
}

.fx-best-pizza {
    padding-top: 88px;
}

.fx-pizza-banner {
    background: #ffffff;
}

.fx-pizza-banner__box {
    display: flex;
    align-items: center;
    min-height: 360px;
    padding: 56px;
    color: #ffffff;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.18)),
        url("https://images.unsplash.com/photo-1604382354936-07c5d9983bd3?auto=format&fit=crop&w=1600&q=90") center/cover;
}

.fx-pizza-banner__box span {
    font-family: "Poppins", sans-serif;
    font-size: 2rem;
    font-weight: 900;
}

.fx-pizza-banner__box h2 {
    color: #ffffff;
    font-size: clamp(3.6rem, 8vw, 6.7rem);
    line-height: 0.9;
}

.fx-pizza-banner__box p {
    color: #ffffff;
    font-weight: 800;
}

.fx-news-card {
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 42px rgba(27, 31, 42, 0.08);
}

.fx-news-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.fx-news-card div {
    padding: 22px;
}

.fx-news-card h4 {
    font-size: 1.05rem;
    line-height: 1.3;
}

.fx-news-card p {
    color: #8a837d;
    font-size: 0.9rem;
}

.fx-newsletter {
    padding: 54px 0;
    background: #f8f4e8;
}

.fx-newsletter__box {
    display: grid;
    grid-template-columns: 1fr minmax(0, 520px) auto;
    align-items: center;
    gap: 16px;
    max-width: 100%;
}

.fx-newsletter__box span {
    color: var(--secondary);
    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
}

.fx-newsletter__box input {
    min-height: 48px;
    border: 0;
    border-radius: 4px;
    padding: 0 18px;
    box-shadow: 0 8px 26px rgba(27, 31, 42, 0.06);
}

.footer-subscribe {
    display: flex;
    gap: 8px;
}

.footer-subscribe input {
    min-height: 42px;
    min-width: 0;
    border: 0;
    border-radius: 4px;
    padding: 0 12px;
}

.footer-subscribe button {
    border: 0;
    border-radius: 4px;
    padding: 0 14px;
    background: #ffc928;
    color: var(--secondary);
    font-weight: 900;
}

.payment-icons {
    display: inline-flex;
    gap: 10px;
    color: #ffffff;
    font-size: 1.35rem;
}
