* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: #ffffff;
    color: #243447;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(135deg, #1a2a3a, #2c3e50);
    backdrop-filter: blur(8px);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.brand h1 {
    margin: 0;
    font-size: 1.1rem;
}

.brand p {
    margin: 0;
    opacity: 0.85;
    font-size: 0.8rem;
}

.nav-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    opacity: 0.9;
}

.nav-links a:hover {
    opacity: 1;
    color: #f8c291;
}

main {
    max-width: 1240px;
    margin: 0 auto;
    padding: 18px;
}

.hero {
    background-image: linear-gradient(120deg, rgba(18, 28, 42, 0.9), rgba(25, 39, 58, 0.78));
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    border: 1px solid #d9e2ec;
    border-radius: 18px;
    padding: 28px 24px;
    margin-bottom: 16px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
    color: #ffffff;
}

.hero > * {
    position: relative;
    z-index: 2;
}

.hero-fire {
    background-image: linear-gradient(120deg, rgba(18, 28, 42, 0.9), rgba(25, 39, 58, 0.75));
    background-size: cover;
    background-position: center;
}

.hero-fire::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(18, 28, 42, 0.82), rgba(25, 39, 58, 0.65));
    z-index: 1;
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.eyebrow {
    margin: 0 0 8px;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffd28f;
}

.hero h2 {
    margin: 0 0 10px;
    font-size: clamp(1.55rem, 2.5vw, 2.4rem);
    line-height: 1.16;
}

.hero-text {
    margin: 0 0 16px;
    color: #eef5ff;
    max-width: 780px;
}

.hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.primary-btn,
.ghost-btn {
    text-decoration: none;
    padding: 11px 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.92rem;
}

.primary-btn {
    background: #e67e22;
    color: #ffffff;
}

.ghost-btn {
    border: 1px solid rgba(255, 255, 255, 0.75);
    color: #ffffff;
}

.hero-stats {
    display: grid;
    gap: 12px;
}

.stat-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 14px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 12px 26px rgba(6, 11, 20, 0.22);
    backdrop-filter: blur(4px);
    animation: statFloat 5.5s ease-in-out infinite;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat-card:nth-child(2) {
    animation-delay: 0.35s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.7s;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(6, 11, 20, 0.28);
}

.stat-card-top {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-icon {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.24);
    color: #ffffff;
    font-size: 0.95rem;
}

.stat-icon i {
    font-size: 0.9rem;
}

.stat-card strong {
    font-size: 1.95rem;
    line-height: 1;
    color: #ffffff;
    font-variant-numeric: tabular-nums;
}

.stat-label {
    color: #f2f7ff;
    font-size: 0.82rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-weight: 600;
}

@keyframes statFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.section {
    margin-top: 20px;
}

.section-title-wrap {
    margin-bottom: 12px;
}

.section-title-wrap h3 {
    margin: 0 0 5px;
    font-size: 1.22rem;
}

.section-title-wrap p {
    margin: 0;
    color: #5f7288;
    font-size: 0.9rem;
}

.spotlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 14px;
}

.spotlight-card {
    background: #ffffff;
    border: 1px solid #e4e9f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(23, 35, 51, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.spotlight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(23, 35, 51, 0.12);
}

.spotlight-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.spotlight-image-wrap {
    width: 100%;
    height: 148px;
    background: #f3f6fb;
    overflow: hidden;
}

.spotlight-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.spotlight-content {
    padding: 12px;
}

.spotlight-card strong {
    display: block;
    color: #2a3d52;
    font-size: 0.96rem;
    margin-bottom: 5px;
}

.spotlight-desc {
    margin: 0 0 8px;
    font-size: 0.82rem;
    color: #5f7288;
    min-height: 38px;
    line-height: 1.45;
}

.spotlight-card span {
    color: #6b7f96;
    font-size: 0.82rem;
    font-weight: 600;
}

.order-section {
    background: #ffffff;
    border: 1px solid #e4e9f0;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 10px 24px rgba(22, 35, 53, 0.08);
}

.menu-toolbar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
}

#menuSearch {
    width: 100%;
    border: 1px solid #d9e2ec;
    background: #ffffff;
    color: #243447;
    border-radius: 10px;
    padding: 10px 12px;
    font-family: inherit;
}

.order-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 14px;
}

.benefit-card {
    background: #ffffff;
    border: 1px solid #e4e9f0;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    box-shadow: 0 8px 18px rgba(23, 35, 51, 0.06);
}

.benefit-card i {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #fff1e2;
    color: #e67e22;
    display: grid;
    place-items: center;
}

.benefit-card strong {
    display: block;
    color: #1f3144;
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.benefit-card p {
    margin: 0;
    color: #637b93;
    font-size: 0.8rem;
}

.order-headline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.order-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #47627d;
    border: 1px solid #dce7f3;
    background: #f8fbff;
    border-radius: 999px;
    padding: 7px 11px;
}

.order-note i {
    color: #2f6fb6;
}

.search-wrap {
    position: relative;
}

.search-wrap i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #7c8fa5;
    font-size: 0.85rem;
}

.search-wrap #menuSearch {
    padding-left: 34px;
    padding-right: 40px;
}

.search-clear-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    width: 26px;
    height: 26px;
    border-radius: 7px;
    background: #eef3f9;
    color: #48627f;
    cursor: pointer;
}

.menu-section-head {
    margin-bottom: 12px;
}

.menu-section-head h4 {
    margin: 0 0 4px;
    font-size: 1rem;
    color: #203246;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.menu-section-head h4 i {
    color: #e67e22;
}

.menu-section-head p {
    margin: 0;
    color: #627a91;
    font-size: 0.84rem;
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill {
    border: 1px solid #d3dce8;
    background: #ffffff;
    color: #2c3e50;
    border-radius: 999px;
    padding: 8px 13px;
    font-weight: 600;
    cursor: pointer;
}

.pill.active {
    background: #2c3e50;
    border-color: #2c3e50;
    color: #ffffff;
}

.layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
}

.menu-section,
.cart-panel {
    background: #ffffff;
    border: 1px solid #e4e9f0;
    border-radius: 14px;
    padding: 16px;
}

.menu-section h3,
.cart-panel h3 {
    margin-top: 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}

.menu-card {
    border: 1px solid #e4e9f0;
    background: #ffffff;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.menu-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(23, 35, 51, 0.1);
    border-color: #d5e0ee;
}

.menu-card-head {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.item-name {
    margin: 0;
    font-size: 0.97rem;
}

.item-price {
    font-weight: 700;
    color: #e67e22;
}

.item-desc {
    margin: 0;
    font-size: 0.85rem;
    color: #5f7288;
    min-height: 34px;
}

.size-select {
    width: 100%;
    border: 1px solid #d3dce8;
    background: #ffffff;
    color: #2c3e50;
    border-radius: 8px;
    padding: 8px;
    font-family: inherit;
}

.add-btn,
#placeOrderBtn {
    border: 0;
    border-radius: 10px;
    background: #e67e22;
    color: #ffffff;
    font-weight: 700;
    padding: 10px;
    cursor: pointer;
}

.add-btn:hover,
#placeOrderBtn:hover {
    filter: brightness(0.97);
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 120px;
    max-height: 330px;
    overflow: auto;
    padding-right: 4px;
}

.cart-panel {
    position: sticky;
    top: 86px;
}

.cart-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.cart-panel-head h4 {
    margin: 0;
}

.cart-badge {
    font-size: 0.75rem;
    background: #fff4e6;
    border: 1px solid #ffd8aa;
    color: #a85a12;
    border-radius: 999px;
    padding: 5px 9px;
    display: inline-flex;
    gap: 6px;
    align-items: center;
    white-space: nowrap;
}

.cart-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e4e9f0;
    background: #ffffff;
    border-radius: 10px;
    padding: 8px;
    gap: 8px;
}

.cart-left {
    min-width: 0;
}

.cart-left h5 {
    margin: 0;
    font-size: 0.9rem;
}

.cart-left p {
    margin: 0;
    font-size: 0.8rem;
    color: #6b7f96;
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 6px;
}

.qty-controls button {
    border: 1px solid #d3dce8;
    background: #ffffff;
    color: #2c3e50;
    border-radius: 6px;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.cart-summary {
    border-top: 1px dashed #d9e2ec;
    margin-top: 10px;
    padding-top: 10px;
}

.cart-summary div {
    display: flex;
    justify-content: space-between;
}

.checkout-form {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checkout-form h4 {
    margin: 4px 0;
}

.checkout-form input,
.checkout-form textarea {
    border: 1px solid #d3dce8;
    background: #ffffff;
    color: #2c3e50;
    border-radius: 10px;
    padding: 10px;
    font: inherit;
}

.checkout-form textarea {
    min-height: 70px;
    resize: vertical;
}

.checkout-help {
    margin: 2px 0 2px;
    font-size: 0.78rem;
    color: #5d748d;
    line-height: 1.45;
}

.orders-feed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}

.process-showcase-wrap {
    background: #ffffff;
    border: 1px solid #e4e9f0;
    border-radius: 14px;
    padding: 12px;
    margin-bottom: 12px;
}

.process-showcase-wrap h4 {
    margin: 0 0 10px;
    color: #1d2a3a;
}

.how-to-order-desc {
    margin-bottom: 12px;
    background: #f8fafd;
    border: 1px solid #e7edf5;
    border-radius: 10px;
    padding: 10px 12px;
}

.how-to-order-desc p {
    margin: 0 0 8px;
    color: #4f647d;
    font-size: 0.88rem;
}

.how-to-order-desc ol {
    margin: 0;
    padding-left: 18px;
    color: #4f647d;
    display: grid;
    gap: 4px;
    font-size: 0.83rem;
    line-height: 1.45;
}

.how-to-order-desc strong {
    color: #1f3045;
}

.process-showcase,
.order-process {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.order-step {
    border: 1px dashed #d4dde8;
    border-radius: 10px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    background: #f8fafc;
    transition: all 0.2s ease;
}

.order-step-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #edf2f7;
    color: #5a6f8a;
    font-size: 0.85rem;
}

.order-step-label {
    font-size: 0.74rem;
    font-weight: 600;
    color: #5a6f8a;
    line-height: 1.3;
}

.order-step.active {
    border-color: #f3c081;
    background: #fff9f1;
}

.order-step.active .order-step-icon {
    background: #e67e22;
    color: #fff;
}

.order-step.active .order-step-label {
    color: #a15a16;
}

.order-step.completed {
    border-color: #b8e3c8;
    background: #f3fcf6;
}

.order-step.completed .order-step-icon {
    background: #27ae60;
    color: #fff;
}

.order-step.completed .order-step-label {
    color: #1f7f49;
}

.order-card {
    background: #ffffff;
    border: 1px solid #e4e9f0;
    border-radius: 12px;
    padding: 12px;
}

.order-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.badge {
    font-size: 0.74rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 999px;
    background: #e9f7ef;
    color: #1e8449;
}

.badge.status-booked {
    background: #fff3e0;
    color: #a35a00;
}

.badge.status-preparing {
    background: #fff7d9;
    color: #9a7a00;
}

.badge.status-rider_tracking {
    background: #e9f2ff;
    color: #1f5fbf;
}

.badge.status-delivered {
    background: #e9f7ef;
    color: #1e8449;
}

.order-items {
    margin: 8px 0;
    padding-left: 18px;
}

.order-meta {
    font-size: 0.82rem;
    color: #5f7288;
}

.order-meta a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.order-actions {
    margin-top: 10px;
}

.order-action-btn {
    border: 0;
    border-radius: 9px;
    background: #e67e22;
    color: #fff;
    padding: 8px 10px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.order-action-btn:hover {
    filter: brightness(0.95);
}

/* About Section */
.about-section {
    background: #fff;
    border: 1px solid #e8edf5;
    border-radius: 18px;
    padding: 32px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff4e6;
    color: #e67e22;
    border: 1px solid #fcd8a8;
    border-radius: 999px;
    padding: 5px 14px;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.about-title {
    margin: 0 0 12px;
    font-size: clamp(1.35rem, 2vw, 1.9rem);
    color: #1c2a38;
    line-height: 1.2;
}

.about-lead {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 12px;
    line-height: 1.6;
}

.about-body {
    font-size: 0.92rem;
    color: #5f7288;
    line-height: 1.7;
    margin: 0 0 12px;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.highlight-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #f9fafb;
    border: 1px solid #e8edf5;
    border-radius: 12px;
    padding: 12px;
}

.highlight-icon {
    min-width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #e67e22, #f39c12);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.highlight-card strong {
    display: block;
    font-size: 0.88rem;
    color: #1c2a38;
    margin-bottom: 2px;
}

.highlight-card p {
    margin: 0;
    font-size: 0.8rem;
    color: #6b7f96;
    line-height: 1.5;
}

.contact-card {
    background: #ffffff;
    border: 1px solid #e4e9f0;
    border-radius: 12px;
    padding: 14px;
}

.contact-card h4 {
    margin-top: 0;
}

.contact-card p {
    color: #5f7288;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    border: 1px solid #d3dce8;
    color: #2c3e50;
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.social-links a i {
    font-size: 0.95rem;
}

.social-links a:hover {
    border-color: #e67e22;
    color: #a85a12;
    background: #fff8ef;
}

.social-facebook i {
    color: #1877f2;
}

.social-instagram i {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.social-tiktok i {
    color: #111111;
    text-shadow: -1px 0 #25f4ee, 1px 0 #fe2c55;
}

.social-whatsapp i {
    color: #25d366;
}

.social-maps i {
    color: #ea4335;
}

.map-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.map-wrap {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #dbe5f1;
    height: 180px;
    background: #f7f9fc;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #ffffff;
    background: #e67e22;
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 0.86rem;
    font-weight: 700;
}

.footer {
    border-top: 1px solid #e4e9f0;
    margin-top: 24px;
    text-align: center;
    color: #5f7288;
    padding: 14px 18px 24px;
}

.empty {
    text-align: center;
    color: #6b7f96;
    padding: 20px 8px;
}

.mobile-tabbar {
    display: none;
}

.wa-widget {
    position: fixed;
    z-index: 140;
    right: 18px;
    bottom: 108px;
    width: 76px;
    user-select: none;
}

.wa-widget.dragging {
    cursor: grabbing;
}

.wa-bubble {
    position: relative;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: linear-gradient(145deg, #25d366, #14a947);
    color: #fff;
    font-size: 1.6rem;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 26px rgba(17, 100, 45, 0.45);
}

.wa-bubble::before {
    content: "";
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    background:
        conic-gradient(from 0deg, rgba(255, 210, 120, 0.95), rgba(255, 120, 40, 0.95), rgba(255, 66, 30, 0.9), rgba(255, 210, 120, 0.95));
    filter: blur(1.2px);
    animation: waFlameSpin 3s linear infinite, waFlamePulse 1.35s ease-in-out infinite;
    z-index: -1;
}

.wa-bubble::after {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 130, 30, 0.45);
    animation: waFlameOuter 1.9s ease-out infinite;
    z-index: -2;
}

.wa-card {
    position: absolute;
    right: 0;
    bottom: 76px;
    width: min(270px, calc(100vw - 26px));
    background: #fff;
    border: 2px solid #ffb24a;
    border-radius: 14px;
    padding: 12px;
    box-shadow:
        0 14px 32px rgba(20, 32, 48, 0.26),
        0 0 0 2px rgba(255, 168, 64, 0.35) inset,
        0 0 30px rgba(255, 98, 27, 0.2);
    display: none;
    overflow: hidden;
}

.wa-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 10% 100%, rgba(255, 162, 64, 0.28), transparent 45%),
        radial-gradient(circle at 95% 0%, rgba(255, 99, 27, 0.25), transparent 40%);
}

.wa-widget.open .wa-card {
    display: block;
}

.wa-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.wa-card-head strong {
    color: #19324a;
    font-size: 0.9rem;
}

.wa-close {
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 7px;
    background: #ffe9c8;
    color: #a15300;
    cursor: pointer;
}

.wa-card p {
    margin: 0 0 10px;
    color: #415b76;
    font-size: 0.82rem;
    line-height: 1.45;
    position: relative;
    z-index: 1;
}

.wa-chat-btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #1db954, #149045);
    border-radius: 10px;
    padding: 9px 12px;
    font-size: 0.82rem;
    font-weight: 700;
}

@keyframes waFlameSpin {
    to { transform: rotate(360deg); }
}

@keyframes waFlamePulse {
    0%, 100% { filter: blur(1.2px) brightness(1); }
    50% { filter: blur(1.8px) brightness(1.2); }
}

@keyframes waFlameOuter {
    0% { transform: scale(0.9); opacity: 0.8; }
    100% { transform: scale(1.15); opacity: 0; }
}

@media (max-width: 980px) {
    .hero,
    .layout {
        grid-template-columns: 1fr;
    }
    .order-benefits {
        grid-template-columns: 1fr;
    }
    .order-headline {
        flex-direction: column;
        align-items: flex-start;
    }
    .about-grid,
    .about-highlights,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .process-showcase,
    .order-process {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .cart-panel {
        position: static;
    }
}

@media (max-width: 900px) {
    body.mobile-app-page {
        background: #f3f6fb;
    }

    .topbar {
        padding: 10px 14px;
        border-radius: 0 0 14px 14px;
    }

    .brand-logo {
        width: 46px;
        height: 46px;
        border-radius: 10px;
    }

    .brand h1 {
        font-size: 1rem;
    }

    .brand p {
        font-size: 0.75rem;
    }

    .nav-links {
        display: none;
    }

    main {
        padding: 12px 12px calc(92px + env(safe-area-inset-bottom));
    }

    .hero,
    .order-section,
    .about-section,
    .menu-section,
    .cart-panel,
    .contact-card,
    .process-showcase-wrap,
    .spotlight-card,
    .benefit-card {
        border-radius: 14px;
        box-shadow: 0 8px 20px rgba(26, 43, 63, 0.08);
    }

    .hero {
        padding: 18px 16px;
    }

    .hero-fire {
        background-image: linear-gradient(120deg, rgba(18, 28, 42, 0.92), rgba(25, 39, 58, 0.82));
    }

    .hero-fire .hero-bg-video {
        display: none;
    }

    .hero h2 {
        font-size: 1.35rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 12px;
    }

    .stat-card strong {
        font-size: 1.55rem;
    }

    .order-section {
        padding: 14px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-card {
        padding: 11px;
    }

    .cart-summary {
        margin-top: 12px;
    }

    .checkout-form {
        margin-top: 12px;
    }

    .footer {
        padding-bottom: calc(90px + env(safe-area-inset-bottom));
    }

    .mobile-tabbar {
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: calc(10px + env(safe-area-inset-bottom));
        z-index: 120;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
        background: rgba(255, 255, 255, 0.97);
        border: 1px solid #dce5f0;
        border-radius: 16px;
        box-shadow: 0 12px 30px rgba(19, 31, 46, 0.2);
        padding: 8px;
        backdrop-filter: blur(8px);
    }

    .wa-widget {
        bottom: calc(92px + env(safe-area-inset-bottom));
        right: 14px;
    }

    .wa-card {
        right: 0;
        width: min(250px, calc(100vw - 24px));
    }

    .mobile-tabbar a {
        text-decoration: none;
        color: #617b94;
        border-radius: 12px;
        padding: 7px 6px;
        font-size: 0.7rem;
        font-weight: 700;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        transition: all 0.2s ease;
    }

    .mobile-tabbar a i {
        font-size: 1rem;
    }

    .mobile-tabbar a.active {
        background: #e67e22;
        color: #fff;
        box-shadow: 0 6px 14px rgba(230, 126, 34, 0.35);
    }
}

@media (max-width: 680px) {
    .topbar {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }

    .brand {
        width: 100%;
    }
}

/* ============================================================
   PWA INSTALL BANNER
   ============================================================ */

.pwa-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 160;
    background: rgba(22, 34, 49, 0.96);
    color: #fff;
    border-radius: 0;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(10, 20, 34, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    transform: translateY(-110%);
    transition: transform 0.3s ease;
    pointer-events: none;
}

.pwa-banner.visible {
    transform: translateY(0);
    pointer-events: all;
}

.pwa-banner-left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.pwa-banner-icon {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.15);
}

.pwa-banner-left strong {
    display: block;
    font-size: 0.78rem;
    color: #fff;
    line-height: 1.15;
}

.pwa-banner-left p {
    display: none;
    margin: 0;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.65);
}

.pwa-banner-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.pwa-install-btn {
    border: none;
    border-radius: 7px;
    background: #e67e22;
    color: #fff;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.74rem;
    padding: 6px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    box-shadow: 0 3px 8px rgba(230,126,34,0.32);
}

.pwa-dismiss-btn {
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.75);
    font-size: 0.76rem;
    cursor: pointer;
}

.topbar {
    transition: top 0.24s ease;
}

body.pwa-banner-visible .topbar {
    top: 34px;
}

@media (max-width: 520px) {
    .pwa-banner-left strong {
        font-size: 0.72rem;
    }
    .pwa-install-btn {
        font-size: 0.7rem;
        padding: 5px 8px;
    }
    body.pwa-banner-visible .topbar {
        top: 32px;
    }
}

/* ============================================================
   PREMIUM MENU PAGE
   ============================================================ */

/* Sticky category tab bar */
.menu-cat-bar {
    position: sticky;
    top: 64px;
    z-index: 40;
    background: #ffffff;
    border-bottom: 1px solid #e4e9f0;
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0 12px;
    box-shadow: 0 2px 8px rgba(22,35,53,0.07);
}

.menu-cat-bar::-webkit-scrollbar { display: none; }

.menu-cat-tab {
    flex-shrink: 0;
    padding: 12px 16px;
    font-size: 0.84rem;
    font-weight: 700;
    color: #617b94;
    border: none;
    background: none;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    transition: color 0.2s, border-color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.menu-cat-tab.active,
.menu-cat-tab:hover {
    color: #e67e22;
    border-bottom-color: #e67e22;
}

.menu-cat-tab img {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    object-fit: cover;
}

/* Search bar */
.menu-search-bar {
    background: #f3f6fb;
    padding: 10px 16px;
    position: sticky;
    top: 113px;
    z-index: 39;
}

/* Main layout */
.menu-page-main {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 0;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 12px 120px;
    align-items: start;
}

/* Menu content column */
.menu-content {
    padding: 16px 20px 16px 0;
}

.menu-loading {
    color: #7a92a8;
    padding: 48px 0;
    text-align: center;
    font-size: 1.05rem;
}

/* Category section */
.menu-cat-section {
    margin-bottom: 36px;
}

.menu-cat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.menu-cat-header-img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid #f0e4d4;
    flex-shrink: 0;
}

.menu-cat-header-text h3 {
    margin: 0 0 2px;
    font-size: 1.05rem;
    color: #1f3144;
}

.menu-cat-header-text p {
    margin: 0;
    font-size: 0.8rem;
    color: #7a92a8;
}

.menu-cat-divider {
    flex: 1;
    height: 1px;
    background: #e8edf4;
}

/* New card grid */
.menu-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
}

/* Premium card */
.menu-item-card {
    background: #ffffff;
    border: 1px solid #e8edf4;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.menu-item-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(22,35,53,0.13);
    border-color: #f0c990;
}

.menu-item-img-wrap {
    width: 100%;
    height: 130px;
    background: #f3f6fb;
    overflow: hidden;
    position: relative;
}

.menu-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.menu-item-card:hover .menu-item-img {
    transform: scale(1.05);
}

.menu-item-img-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    font-size: 2rem;
    color: #c8d6e4;
    background: linear-gradient(135deg, #f5f8fb, #edf2f7);
}

.menu-item-badges {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.menu-badge {
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 7px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.menu-badge-hot { background: #fff0e0; color: #c05e00; }
.menu-badge-new { background: #e0f0ff; color: #1060c0; }
.menu-badge-best { background: #fef3c0; color: #92610a; }
.menu-badge-combo { background: #e8f5e9; color: #1b7a3e; }

.menu-item-body {
    padding: 10px 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.menu-item-name {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 700;
    color: #1f3144;
    line-height: 1.25;
}

.menu-item-desc {
    margin: 0;
    font-size: 0.78rem;
    color: #7a92a8;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.menu-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.menu-item-price {
    font-size: 0.95rem;
    font-weight: 800;
    color: #e67e22;
}

.menu-item-add-btn {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    border: none;
    background: #e67e22;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: background 0.2s;
}

.menu-item-add-btn:hover { background: #cf6e17; }

/* Cart panel (desktop) */
.cart-panel {
    position: sticky;
    top: 88px;
    background: #ffffff;
    border: 1px solid #e4e9f0;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 8px 22px rgba(22,35,53,0.09);
    margin-top: 16px;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-top: 1px dashed #d9e2ec;
    margin-top: 10px;
}

/* Mobile cart FAB */
.mobile-cart-fab {
    display: none;
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: calc(86px + env(safe-area-inset-bottom));
    z-index: 110;
    background: linear-gradient(135deg, #e67e22, #cf6e17);
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 14px 18px;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(200, 90, 10, 0.38);
    display: none;
    align-items: center;
    gap: 10px;
}

.mobile-cart-fab i { font-size: 1.1rem; }

.fab-count {
    background: rgba(255,255,255,0.3);
    border-radius: 999px;
    padding: 2px 7px;
    font-size: 0.78rem;
}

.fab-total { margin-left: auto; font-size: 0.88rem; opacity: 0.95; }

/* Cart drawer */
.cart-drawer-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15,25,40,0.5);
    z-index: 200;
    backdrop-filter: blur(3px);
}

.cart-drawer-backdrop.open { display: block; }

.cart-drawer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 210;
    background: #ffffff;
    border-radius: 22px 22px 0 0;
    box-shadow: 0 -14px 40px rgba(15,25,40,0.22);
    padding: 0 0 calc(24px + env(safe-area-inset-bottom));
    transform: translateY(100%);
    transition: transform 0.32s cubic-bezier(0.32, 0.84, 0.4, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.cart-drawer.open { transform: translateY(0); }

.cart-drawer-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 16px 8px;
    position: sticky;
    top: 0;
    background: #fff;
    border-bottom: 1px solid #f0f4f9;
}

.cart-drawer-head h4 { margin: 0; }

.cart-drawer-close {
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: #f0f4f9;
    color: #4a6278;
    font-size: 1rem;
    cursor: pointer;
}

.cart-items-drawer { padding: 8px 16px 0; min-height: 80px; }

.cart-summary-drawer { padding: 0 16px; }

.checkout-form-drawer { padding: 0 16px; }

/* Item modal */
.item-modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15,25,40,0.6);
    z-index: 300;
    backdrop-filter: blur(4px);
}

.item-modal-backdrop.open { display: block; }

.item-modal {
    position: fixed;
    z-index: 310;
    background: #fff;
    border-radius: 22px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.92);
    width: min(460px, calc(100vw - 24px));
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 56px rgba(15,25,40,0.28);
    transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), opacity 0.25s;
    opacity: 0;
    pointer-events: none;
}

.item-modal.open {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    pointer-events: all;
}

.item-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 1;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(255,255,255,0.9);
    color: #4a6278;
    cursor: pointer;
    font-size: 0.95rem;
}

.item-modal-img-wrap {
    width: 100%;
    height: 200px;
    background: #f3f6fb;
    overflow: hidden;
    border-radius: 22px 22px 0 0;
}

.item-modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-modal-body {
    padding: 16px 20px 24px;
}

.item-modal-tags { display: flex; gap: 6px; margin-bottom: 8px; flex-wrap: wrap; }

.item-modal-body h3 {
    margin: 0 0 6px;
    font-size: 1.2rem;
    color: #1f3144;
}

.item-modal-body p {
    color: #6a849c;
    font-size: 0.88rem;
    margin: 0 0 14px;
    line-height: 1.5;
}

.item-modal-sizes {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.modal-size-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border: 2px solid #e4e9f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.18s;
}

.modal-size-option.selected {
    border-color: #e67e22;
    background: #fff8f0;
}

.modal-size-option strong { font-size: 0.88rem; color: #1f3144; }
.modal-size-option span { font-size: 0.88rem; font-weight: 700; color: #e67e22; }

.item-modal-qty {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.item-modal-qty button {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid #d3dce8;
    background: #f3f6fb;
    color: #2c3e50;
    font-size: 1rem;
    cursor: pointer;
}

.item-modal-qty span {
    font-size: 1.1rem;
    font-weight: 700;
    min-width: 28px;
    text-align: center;
    color: #1f3144;
}

.item-modal-add {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #e67e22, #cf6e17);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.98rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(200,90,10,0.3);
    transition: filter 0.2s;
}

.item-modal-add:hover { filter: brightness(0.95); }

/* Mobile-specific menu layout overrides */
@media (max-width: 900px) {
    .menu-page-main {
        grid-template-columns: 1fr;
        padding: 0 0 150px;
    }

    .menu-content {
        padding: 12px 12px 0;
    }

    .cart-panel { display: none; }

    .mobile-cart-fab {
        display: flex;
    }

    .menu-cat-bar {
        top: 62px;
    }

    .menu-search-bar {
        top: 108px;
    }

    .menu-cat-tab {
        padding: 10px 12px;
        font-size: 0.8rem;
    }

    .menu-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .menu-item-img-wrap { height: 110px; }
}

@media (max-width: 400px) {
    .menu-card-grid {
        grid-template-columns: 1fr;
    }
}
