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

body {
    color: #191919;
}

.public-brand {
    color: #f90068;
    letter-spacing: 0.02em;
}

.public-brand:hover {
    color: #d9005b;
}

/* =========================================================
   HERO SECTION
   Consolidated responsive styles
   Mobile: display the complete banner without cropping
   ========================================================= */
.public-hero {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: #1a1a1a;
}

.public-hero-banner {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
}

.hero-information-card {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    box-sizing: border-box;
    width: min(520px, 34vw);
    max-width: calc(100% - 40px);
    padding: 2rem 2.5rem;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    color: #ffffff;
    text-align: center;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-information-card:hover {
    transform: translateY(-50%) scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.45);
}

.hero-information-card i {
    display: inline-block;
    margin-bottom: 0.25rem;
    color: #f90068;
    font-size: 2.4rem;
    text-shadow: 0 0 20px rgba(249, 0, 104, 0.3);
}

.hero-information-card h2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}

.hero-information-card h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    margin: 0.5rem auto 0.75rem;
    background: linear-gradient(90deg, #f90068, transparent);
    border-radius: 2px;
}

.hero-information-card p {
    max-width: 100%;
    margin: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.01em;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.55);
}

/* Large Desktop */
@media (min-width: 1400px) {
    .public-hero {
        height: 450px;
    }

    .public-hero-banner {
        object-position: center 25%;
    }

    .hero-information-card {
        width: min(520px, 34vw);
    }
}

/* Desktop */
@media (min-width: 992px) and (max-width: 1399.98px) {
    .public-hero {
        height: 400px;
    }

    .public-hero-banner {
        object-position: center 25%;
    }

    .hero-information-card {
        width: min(460px, 36vw);
        right: 4%;
    }
}

/* Tablet */
@media (max-width: 991.98px) {
    .public-hero {
        height: 420px;
    }

    .public-hero-banner {
        object-position: center 30%;
    }

    .hero-information-card {
        right: 3%;
        width: 280px;
        max-width: calc(100% - 30px);
        padding: 1.5rem 2rem;
    }

    .hero-information-card i {
        font-size: 2rem;
    }

    .hero-information-card h2 {
        font-size: 1.3rem;
    }

    .hero-information-card p {
        font-size: 0.85rem;
    }
}

/* Mobile - show the complete banner */
@media (max-width: 767.98px) {
    .public-hero {
        height: auto;
        min-height: 0;
        overflow: hidden;
        background: #ffffff;
    }

    .public-hero-banner {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center center;
    }

    .hero-information-card {
        top: 50%;
        right: 2%;
        width: 230px;
        max-width: calc(100% - 20px);
        padding: 1.2rem 1.5rem;
        background: rgba(0, 0, 0, 0.75);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
    }

    .hero-information-card i {
        font-size: 1.6rem;
    }

    .hero-information-card h2 {
        margin-top: 0.3rem;
        margin-bottom: 0.3rem;
        font-size: 1.1rem;
    }

    .hero-information-card h2::after {
        width: 35px;
        height: 2px;
        margin: 0.35rem auto 0.5rem;
    }

    .hero-information-card p {
        font-size: 0.78rem;
        line-height: 1.5;
    }
}

/* Small Mobile - complete banner remains visible */
@media (max-width: 575.98px) {
    .public-hero {
        height: auto;
        min-height: 0;
    }

    .public-hero-banner {
        object-fit: contain;
        object-position: center center;
    }

    .hero-information-card {
        width: 190px;
        padding: 1rem 1.2rem;
        right: 2%;
        background: rgba(0, 0, 0, 0.8);
        border-radius: 12px;
    }

    .hero-information-card i {
        margin-bottom: 0;
        font-size: 1.3rem;
    }

    .hero-information-card h2 {
        margin-top: 0.2rem;
        margin-bottom: 0.2rem;
        font-size: 0.9rem;
    }

    .hero-information-card h2::after {
        width: 25px;
        height: 2px;
        margin: 0.25rem auto 0.35rem;
    }

    .hero-information-card p {
        font-size: 0.7rem;
        line-height: 1.4;
    }
}

/* Very Small Mobile */
@media (max-width: 400px) {
    .public-hero {
        height: auto;
        min-height: 0;
    }

    .hero-information-card {
        width: 170px;
        padding: 0.8rem 1rem;
        right: 1.5%;
    }

    .hero-information-card i {
        font-size: 1.1rem;
    }

    .hero-information-card h2 {
        font-size: 0.75rem;
    }

    .hero-information-card p {
        font-size: 0.6rem;
    }
}


.hero-eyebrow,
.section-heading span,
.section-label {
    color: #f90068;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
}


.category-section {
    background-color: #fff7fa;
}

.category-public-card {
    display: block;
    overflow: hidden;
    height: 100%;
    border-radius: 1rem;
    background-color: #ffffff;
    color: #111111;
    box-shadow: 0 0.5rem 1.5rem rgba(17, 17, 17, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-public-card:hover {
    color: #111111;
    transform: translateY(-4px);
    box-shadow: 0 1rem 2rem rgba(17, 17, 17, 0.12);
}

.category-public-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.public-meal-card {
    overflow: hidden;
    border-radius: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.public-meal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 1rem 2rem rgba(17, 17, 17, 0.12) !important;
}

.meal-card-image-wrapper {
    position: relative;
    overflow: hidden;
}

.meal-card-image-wrapper img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.sold-out-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(17, 17, 17, 0.58);
}

.sold-out-overlay span {
    padding: 0.7rem 1.2rem;
    border-radius: 999px;
    background-color: #ffffff;
    color: #dc3545;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.sold-out-meal {
    opacity: 0.88;
}

.meal-category-name {
    color: #f90068;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.meal-price {
    color: #111111;
    font-size: 1.3rem;
    font-weight: 800;
}

.public-meal-detail-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background-color: #fff5f9;
}

.meal-information-box {
    padding: 1rem;
    border-left: 4px solid #f90068;
    background-color: #fff5f9;
}

.public-about {
    background-color: #111111;
    color: #ffffff;
}

.about-feature-card {
    min-height: 170px;
    padding: 2rem;
    border-radius: 1rem;
    background-color: #ffffff;
    color: #111111;
    text-align: center;
}

.about-feature-card i {
    color: #f90068;
    font-size: 2rem;
}

.public-contact {
    background-color: #fff5f9;
}

.public-footer {
    background-color: #111111;
    color: #ffffff;
}

.public-footer a {
    color: #ffffff;
    text-decoration: none;
}

.public-footer a:hover {
    color: #f90068;
}
.addon-quantity-input {
    width: 85px;
    flex: 0 0 85px;
}

.cart-meal-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background-color: #fff5f9;
}

.cart-summary-card {
    position: sticky;
    top: 100px;
}
.gallery-public-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-public-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}

.gallery-public-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.gallery-public-card figcaption {
    background: #fff;
}
/* Public footer section separators */
.public-footer .footer-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.public-footer .footer-section + .footer-section {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

