/* ============================================================
   Bootstrap 5 + Custom CSS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap'); /* ============================================================
            1. CSS VARIABLES
            ============================================================ */
:root {
    --yellow: #FAD02F;
    --yellow-hover: #E8A900;
    --yellow-light: #FFF8E1;
    --red: #DC0013;
    --red-hover: #780006;
    --hero-bg: #780006;
    --dark: #1A1A1A;
    --dark-2: #333333;
    --white: #FFFFFF;
    --gray-bg: #F8F8F8;
    --gray-light: #F2F2F2;
    --gray-border: #E5E5E5;
    --gray-text: #888888;
    --gray-text-d: #555555;
    --green: #00E264;
    --font: 'Poppins', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.07);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.11);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 20px;
    --r-pill: 50px;
}

/* ============================================================
            2. RESET & BASE
            ============================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

html {
    scrollbar-color: #e87a18 #ffffff;
    scroll-margin: 10px;
    scroll-padding: 10px;
    scrollbar-width: thin;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    font-size: 14px !important;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color .2s;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: var(--font);
}

input, textarea, select {
    font-family: var(--font);
    outline: none;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.25;
}

.pr-3 {
    padding: 0 50px;
}

/* ============================================================
            3. GLOBAL COMPONENTS
            ============================================================ */
/* --- Buttons --- */
.btn-yellow {
    background: var(--yellow);
    color: var(--dark);
    border: none;
    border-radius: var(--r-pill);
    padding: 11px 28px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: background .2s, transform .1s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
}

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

.btn-yellow-block {
    background: var(--yellow);
    color: var(--dark);
    border: none;
    border-radius: var(--r-pill);
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font);
    cursor: pointer;
    transition: background .2s;
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
}

.btn-yellow-block:hover {
    background: var(--yellow-hover);
    color: var(--dark);
}

.btn-red {
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: var(--r-pill);
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: background .2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    justify-content: center;
}

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

.btn-outline-gray {
    background: transparent;
    color: var(--dark);
    border: 1.5px solid var(--gray-border);
    border-radius: var(--r-pill);
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    cursor: pointer;
    transition: border-color .2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.btn-outline-gray:hover {
    border-color: var(--dark);
    color: var(--dark);
}

/* --- Form Controls --- */
.fc {
    width: 100%;
    border: 1.5px solid var(--gray-border);
    border-radius: var(--r-sm);
    padding: 10px 14px;
    font-size: 14px;
    font-family: var(--font);
    color: var(--dark);
    background: var(--white);
    transition: border-color .2s, box-shadow .2s;
    display: block;
}

.fc:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(251, 187, 18, .12);
}

.fc::placeholder {
    color: #BBBBBB;
}

textarea.fc {
    resize: vertical;
    min-height: 120px;
}

select.fc {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.fc-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
    display: block;
}

/* --- Breadcrumb --- */
.breadcrumb-bar {
    padding: 14px 0;
}

.bc-list {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray-text);
}

.bc-list a {
    color: var(--gray-text);
}

.bc-list a:hover {
    color: var(--red);
}

.bc-list .bc-sep {
    font-size: 11px;
    color: #BBBBBB;
}

.bc-list .bc-cur {
    color: var(--dark);
    font-weight: 500;
}

/* --- Section Titles --- */
.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 6px;
}

.section-bar {
    width: 130px;
    height: 3px;
    background: var(--yellow);
    border-radius: 2px;
    margin: 0 auto 36px;
}

/* --- Status Badges --- */
.badge-delivered {
    background: #DCFCE7;
    color: #16A34A;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--r-pill);
    display: inline-block;
}

.badge-cancelled {
    background: #FEE2E2;
    color: #DC2626;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--r-pill);
    display: inline-block;
}

.badge-processing {
    background: #FEF3C7;
    color: #D97706;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--r-pill);
    display: inline-block;
}

/* ============================================================
            4. NAVBAR
            ============================================================ */
.nav-main {
    background: var(--yellow);
    height: 100px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo img {
    height: 90px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-size: 19px;
    font-weight: 500;
    color: var(--dark);
    white-space: nowrap;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-icon-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--dark);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    transition: color .2s;
}

.nav-icon-btn:hover {
    color: var(--red);
}

.nav-login {
    background: var(--red);
    color: var(--white);
    border-radius: var(--r-pill);
    padding: 11px 22px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font);
    border: none;
    cursor: pointer;
    transition: background .2s;
    text-decoration: none;
    display: inline-block;
}

.nav-login:hover {
    background: var(--red-hover);
    color: var(--white);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--dark);
}

.nav-mobile-menu {
    background: var(--yellow);
    border-top: 1px solid rgba(0, 0, 0, .08);
    position: absolute;
    top: 100px;
    width: 100%;
    transition: all .5s ease-in-out;
    opacity: 0;
    display: none;
}

.nav-mobile-menu.open {
    display: block;
    opacity: 1;
    z-index: 9999999999999999999999999999999;
}

.nav-mobile-menu a {
    display: block;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.nav-mobile-menu a:hover {
    color: var(--red);
}

.nav-cart-badge {
    position: relative;
}

.nav-cart-badge .badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--red);
    color: white;
    font-size: 10px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================================
            5. FOOTER
            ============================================================ */
.footer-main {
    background: var(--yellow);
    padding: 170px 40px 36px;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
}

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

.footer-col-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 18px;
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 10px;
    transition: color .2s;
}

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

.footer-socials {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    color: var(--dark);
    text-decoration: none;
    transition: opacity .2s;
}

.footer-social-icon:hover {
    opacity: .8;
    color: var(--white);
}

.si-insta {
    /* background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); */
}

.si-fb {
    /* background: #1877F2; */
}

.si-yt {
    /* background: #FF0000; */
}

.footer-hotline {
    padding: 0;
}

.footer-hotline img {
    width: 130px;
}

.footer-hotline .hl-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-hotline .hl-num {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 1px;
}

/* ============================================================
            
            ============================================================ */
.hero {
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 75% 50%, rgba(190, 21, 34, .35) 0%, transparent 65%);
    pointer-events: none;
}

.hero-body {
    /* position: relative; */
    z-index: 2;
    /* padding: 60px 0; */
    /* background-size: cover; */
    /* background-position: center; */
    /* background-repeat: no-repeat; */
    /* min-height: 500px; */
}

.hero-title {
    font-size: 38px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 14px;
}

.hero-desc {
    font-size: 19px;
    color: rgba(255, 255, 255, .88);
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 420px;
}

.hero-cta {
    background: var(--yellow);
    color: var(--dark);
    border: none;
    border-radius: var(--r-lg);
    padding: 13px 34px;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font);
    cursor: pointer;
    transition: background .2s;
    display: inline-block;
    text-decoration: none;
}

.hero-cta:hover {
    background: var(--yellow-hover);
    color: var(--dark);
}

.hero-dots {
    display: flex;
    gap: 8px;
    margin-top: 22px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .38);
    cursor: pointer;
    transition: background .2s;
    border: none;
    padding: 0;
}

.hero-dot.active {
    background: var(--white);
}

.hero-img-col {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
    padding: 30px 0;
}

.hero-img-col img {
    max-height: 460px;
    object-fit: contain;
}

/* ============================================================
            ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â CATEGORY SLIDER
            ============================================================ */
.cat-section {
    background: var(--yellow);
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-border);
}

.cat-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--gray-border);
    background: var(--white);
    font-size: 13px;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .2s;
}

.cat-arrow:hover {
    border-color: var(--yellow);
    background: var(--yellow);
}

.cat-track {
    display: flex;
    gap: 14px;
    overflow: hidden;
    flex: 1;
    transition: transform .3s ease;
}

.cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    background: var(--gray-bg);
    border: 1.5px solid var(--gray-border);
    border-radius: 90px;
    padding: 14px 20px 12px;
    cursor: pointer;
    width: 130px;
    flex-shrink: 0;
    transition: all .2s;
    gap: 5px;
    height: 215px;
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.15);
    margin: 6px auto;
    overflow: hidden;
    text-align: center;
}

.cat-img {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 54px;
}

.cat-img img {
}

.cat-item:hover, .cat-item.active {
    border-color: var(--yellow);
    background: var(--yellow-light);
}

.cat-item img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.cat-item span {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    white-space: pre-wrap;
}

/* ============================================================
            8. ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â DISCOVER MENU
            ============================================================ */
.discover-section {
    padding: 56px 0;
    background: var(--white);
}

.discover-card {
    position: relative;
    border-radius: var(--r-md);
    min-height: 220px;
    background: var(--dark);
    display: flex;
    align-items: flex-start;
    box-shadow: var(--shadow-md);
}

.discover-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .45;
    border-radius: 13px;
}

.discover-card-body {
    position: relative;
    z-index: 2;
    padding: 30px 25px 30px;
    flex: 1;
}

.discover-card-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
}

.discover-card-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, .85);
}

.discover-price {
    position: absolute;
    bottom: -10px;
    left: 20px;
    z-index: 3;
    background: var(--yellow);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 800;
    line-height: 1.15;
}

.discover-price .dp-num {
    font-size: 15px;
    color: var(--dark);
    font-weight: 500;
}

.discover-price .dp-unit {
    font-size: 12px;
    color: var(--red);
    font-weight: 600;
}

/* ============================================================
            9. HOME PAGEÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â FEATURED DISHES / PRODUCT CARDS
            ============================================================ */
.featured-section {
    padding: 56px 0;
    background: var(--white);
}

.product-card {
    background: var(--white);
    border: 1.5px solid var(--gray-border);
    border-radius: var(--r-lg);
    overflow: hidden;
    position: relative;
    transition: box-shadow .2s, transform .2s;
    height: 100%;
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    width: 46px;
    height: 46px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    text-align: center;
    z-index: 2;
    line-height: 1.1;
}
    
.product-badge .pct {
    font-size: 13px;
    font-weight: 900;
}

.product-img {
    width: 100%;
    height: 250px;
}

.product-img img {
    width: 100%;
    height: 250px;
    object-fit: contain;
}

.product-card-body {
    padding: 12px 14px 14px;
}

.product-name {
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.product-prices {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price-new {
    font-size: 17px;
    font-weight: 700;
    color: var(--red);
}

.product-price-old {
    font-size: 12px;
    color: var(--gray-text);
    text-decoration: line-through;
}

.product-cart-btn {
    background: var(--yellow);
    border: none;
    border-radius: var(--r-sm);
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 15px;
    transition: background .2s;
    flex-shrink: 0;
}

.product-cart-btn:hover {
    background: var(--yellow-hover);
}

.product-cart-btn img {
    width: 20px;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.product-cart-btn:hover img, .product-cart-btn:focus img, .product-cart-btn:active img {
    -webkit-animation-name: hvr-buzz-out;
    animation-name: hvr-buzz-out;
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

@-webkit-keyframes hvr-buzz-out {
    10% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }

    20% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }

    30% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }

    40% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }

    50% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }

    60% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }

    70% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }

    80% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }

    90% {
        -webkit-transform: translateX(1px) rotate(0);
        transform: translateX(1px) rotate(0);
    }

    100% {
        -webkit-transform: translateX(-1px) rotate(0);
        transform: translateX(-1px) rotate(0);
    }
}

@keyframes hvr-buzz-out {
    10% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }

    20% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }

    30% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }

    40% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }

    50% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }

    60% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }

    70% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }

    80% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }

    90% {
        -webkit-transform: translateX(1px) rotate(0);
        transform: translateX(1px) rotate(0);
    }

    100% {
        -webkit-transform: translateX(-1px) rotate(0);
        transform: translateX(-1px) rotate(0);
    }
}

/* ============================================================
            10. HOME PAGE  CONTACT SECTION
            ============================================================ */
.home-contact {
    padding: 40px 10px;
    position: relative;
    background-image: url('../img/contact-bg.jpg');
    border-radius: 30px;
    margin-bottom: -120px;
    margin-top: 100px;
}

.contact-img {
    width: 320px;
    position: absolute;
    top: -152px;
}



.home-contact-title {
    font-size: 33px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    text-align: center;
}

.home-contact-mascot {
    max-height: 260px;
    object-fit: contain;
    margin-top: 16px;
}

.home-contact-form {
    background: transparent;
    border-radius: var(--r-md);
    padding: 28px;
}

/* ============================================================
            11. MENU PAGE
            ============================================================ */
.menu-page {
    padding-bottom: 60px;
}

.menu-cat-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-border);
}

.menu-cat-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
}

/* ============================================================
            12. CART PAGE
            ============================================================ */
.cart-page {
    padding: 36px 0 60px;
    min-height: calc(100vh - 65px - 200px);
}

.cart-items-wrap {
    background: var(--white);
    border: 1.5px solid var(--gray-border);
    border-radius: var(--r-md);
    padding: 20px;
}

.cart-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-border);
    position: relative;
}

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

.cart-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid var(--gray-border);
}

.cart-item-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
}

.cart-item-sub {
    font-size: 12px;
    color: var(--gray-text);
    margin-bottom: 8px;
}

.cart-item-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qty-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1.5px solid var(--gray-border);
    border-radius: var(--r-sm);
    padding: 2px 6px;
}

.qty-btn {
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .2s;
}

.qty-btn:hover {
    color: var(--red);
}

.qty-val {
    font-size: 14px;
    font-weight: 600;
    width: 60px;
    text-align: center;
    border: 0;
}

.del-btn {
    background: none;
    border: none;
    color: var(--red);
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    transition: opacity .2s;
}

.del-btn:hover {
    opacity: .7;
}

.order-summary {
    background: var(--white);
    border: 1.5px solid var(--gray-border);
    border-radius: var(--r-md);
    padding: 24px;
}

.os-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.os-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.os-row .lbl {
    color: var(--gray-text-d);
}

.os-row .val {
    font-weight: 500;
}

.os-divider {
    border: none;
    border-top: 1.5px solid var(--gray-border);
    margin: 12px 0;
}

.os-total {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 20px;
}

.cart-note-box {
    background: var(--white);
    border: 1.5px solid var(--gray-border);
    border-radius: var(--r-md);
    padding: 20px;
    margin-top: 16px;
}

.cart-note-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

/* ============================================================
            13. CHECKOUT PAGE
            ============================================================ */
.checkout-page {
    padding: 36px 0 60px;
    min-height: calc(100vh - 65px - 200px);
}

.checkout-card {
    background: var(--white);
    border: 1.5px solid var(--gray-border);
    border-radius: var(--r-md);
    padding: 28px 32px;
}

/* ============================================================
            14. ORDER TRACKING PAGE
            ============================================================ */
.track-page {
    padding: 40px 0 60px;
}

.track-header {
    text-align: center;
    margin-bottom: 32px;
}

.track-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.track-order-num {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.track-status-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 21px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.track-status-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 13px;
}

.track-status-circle.orange {
    background: #F59E0B;
}

.track-desc {
    font-size: 13px;
    color: var(--gray-text);
}

.track-steps {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 12px;
}

.track-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 180px;
}

.track-step-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #a71b1a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.track-step-icon.inactive {
    background: var(--gray-border);
}

.track-step-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.track-step-name {
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    color: var(--dark);
    margin-bottom: 2px;
}

.track-step-desc {
    font-size: 11px;
    color: var(--gray-text);
    text-align: center;
    line-height: 1.4;
    max-width: 130px;
}

.track-progress-row {
    display: flex;
    align-items: center;
    padding: 0 80px;
    margin-bottom: 32px;
}

.track-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--yellow);
    flex-shrink: 0;
    border: 2px solid var(--white);
    box-shadow: 0 0 0 2px var(--yellow);
}

.track-dot.inactive {
    background: var(--gray-border);
    box-shadow: 0 0 0 2px var(--gray-border);
}

.track-bar {
    flex: 1;
    height: 5px;
    background: var(--gray-border);
    border-radius: 3px;
    position: relative;
}

.track-bar .fill {
    height: 100%;
    background: var(--yellow);
    border-radius: 3px;
}

.track-card {
    background: var(--white);
    border: 1.5px solid var(--gray-border);
    border-radius: var(--r-md);
    padding: 24px;
}

.track-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 16px;
}

.track-order-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-border);
}

.track-order-row:last-of-type {
    border-bottom: none;
}

.track-order-row .item-name {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
}

.track-order-row .item-price {
    font-size: 16px;
    font-weight: 600;
}

.track-subtotals {
    margin-top: 12px;
    padding-top: 12px;
}

.track-subtotals .ts-row {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    margin-bottom: 6px;
}

.track-subtotals .ts-total {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 700;
    color: var(--red);
    margin-top: 6px;
    padding-top: 5px;
    border-top: 1px solid var(--gray-border);
}

.track-addr-card {
    background: var(--white);
    border: 1.5px solid var(--gray-border);
    border-radius: var(--r-md);
    padding: 24px;
}

.track-addr-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--dark);
    line-height: 1.6;
}

.track-addr-line i {
    color: var(--red);
    margin-top: 2px;
    font-size: 18px;
}

.est-time-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
}

.est-time-wrap i {
    color: var(--gray-text);
    font-size: 16px;
}

.est-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
}

.est-val {
    font-size: 14px;
    font-weight: 700;
    color: var(--red);
}

/* Delivery Partner card */
.delivery-partner-card {
    background: var(--white);
    border: 1.5px solid var(--gray-border);
    border-radius: var(--r-md);
    padding: 24px;
}

.dp-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 14px;
}

.dp-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.dp-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.dp-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
}

.dp-rating {
    font-size: 12px;
    color: #F59E0B;
    font-weight: 600;
}

.dp-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dp-phone {
    border: 1.5px solid var(--gray-border);
    border-radius: var(--r-pill);
    background: var(--white);
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-family: var(--font);
    transition: border-color .2s;
}

.dp-phone:hover {
    border-color: var(--dark);
}

.dp-chat {
    background: var(--yellow);
    border: none;
    border-radius: var(--r-pill);
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-family: var(--font);
    transition: background .2s;
}

.dp-chat:hover {
    background: var(--yellow-hover);
}

.map-embed {
    width: 100%;
    height: 300px;
    background: #E8F0E8;
    border-radius: var(--r-sm);
    overflow: hidden;
    position: relative;
    margin-top: 14px;
}

.map-embed img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.track-location-btn {
    width: max-content;
    margin-top: 12px;
    background: var(--yellow);
    border: none;
    border-radius: var(--r-pill);
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background .2s;
}

.track-location-btn:hover {
    background: var(--yellow-hover);
}

/* Delivered state */
.rating-wrap {
    display: flex;
    gap: 6px;
    margin: 10px 0;
}

.rating-star {
    font-size: 26px;
    color: var(--yellow);
    cursor: pointer;
}

.reorder-card {
    text-align: left;
}

.reorder-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 6px;
}

.reorder-sub {
    font-size: 13px;
    color: var(--dark);
    line-height: 1.6;
}

.thank-note {
    background: #F0FDF4;
    border: 0;
    padding: 12px 16px;
    font-size: 13px;
    color: var(--bs-black);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    text-align: center;
    justify-content: center;
}

.thank-note i {
    font-size: 18px;
    color: #00e264;
}

.track-state-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
    justify-content: center;
    flex-wrap: wrap;
}

.track-tab {
    padding: 7px 16px;
    border: 1.5px solid var(--gray-border);
    border-radius: var(--r-pill);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    background: var(--white);
    font-family: var(--font);
    transition: all .2s;
    color: var(--dark);
}

.track-tab.active, .track-tab:hover {
    background: var(--yellow);
    border-color: var(--yellow);
}

/* ============================================================
            15. ABOUT PAGE
            ============================================================ */
.about-hero {
    position: relative;
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
    height: 650px;
}

.about-hero-body {
    position: relative;
    z-index: 2;
    padding: 60px 0;
    height: 650px;
    /* fallback for old browsers */
    /* Chrome 10-25, Safari 5.1-6 */
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background-image: url('../img/about2.png');
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
}

.about-hero-body .about-data {
    display: flex;
    flex-direction: column;
    padding: 40px 100px;
}

.about-hero-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 14px;
}

.about-hero-text {
    font-size: 17px;
    color: #000;
    max-width: 360px;
}

.about-hero-img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    object-fit: cover;
    width: auto;
}

.feat-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 40px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    height: 100%;
    border: 1px solid #ebebeb;
    margin-top: -200px;
    position: relative;
    z-index: 9;
}

.feat-card .card {
    border: 0;
    border-right: 1px solid #efefef;
    border-radius: 0;
    padding: 60px 15px;
}

.feat-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 14px;
    background: #fffaeb;
    border-radius: 50%;
}

.feat-icon img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    margin: 10px auto;
    vertical-align: middle;
}

.feat-title {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feat-text {
    font-size: 18px;
    color: var(--gray-text);
    line-height: 1.6;
}

.about-sub-section {
    padding: 40px 20px;
    margin: 30px 0;
    background: #fff9eb;
    border-radius: 15px;
}

.about-sub-title {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-sub-text {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.75;
}

.wh-box {
    background: var(--gray-bg);
    border-radius: var(--r-md);
    overflow: hidden;
    border: 1px solid var(--gray-border);
}

.wh-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--gray-border);
    background: #fff;
}

.wh-row:last-child {
    border-bottom: none;
}

.wh-icon {
    color: var(--red);
    font-size: 20px;
}

.wh-day {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
}

.wh-time {
    font-size: 17px;
    color: var(--gray-text-d);
}

.wh-note {
    font-size: 15px;
    color: var(--gray-text);
    padding: 8px 20px;
}

.about-note {
    background: #fff9eb;
    border-radius: var(--r-sm);
    padding: 14px 18px;
    font-size: 16px;
    color: var(--gray-text-d);
    margin-top: 14px;
}

.delivery-steps-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
    margin-bottom: 20px;
}

.delivery-step {
    flex: 1;
    max-width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.delivery-step-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.delivery-step-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.delivery-step-lbl {
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    color: var(--dark);
}

.delivery-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.di-item {
    text-align: center;
    border-right: 1px solid var(--gray-border);
}

.di-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.di-item p {
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.6;
}

.di-item .hi {
    font-weight: 700;
    color: var(--dark);
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 18px;
}

.pm-card {
    background: var(--white);
    border: 0;
    border-radius: 0;
    padding: 20px;
    text-align: center;
    border-right: 1px solid var(--gray-border);
}

.pm-card h3 {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pm-card p {
    font-size: 16px;
    color: var(--gray-text);
    line-height: 1.6;
}

/* ============================================================
            16. CONTACT PAGE
            ============================================================ */
.contact-page {
    padding: 40px 0 60px;
}

.ci-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

.ci-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--dark);
    flex-shrink: 0;
}

.ci-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.ci-val {
    font-size: 13px;
    color: var(--gray-text-d);
}

.contact-form-card {
    background: var(--white);
    border: 1.5px solid var(--gray-border);
    border-radius: var(--r-md);
    padding: 30px;
}

.contact-form-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 22px;
}

/* ============================================================
            17. PRIVACY POLICY PAGE
            ============================================================ */
.privacy-page {
    padding: 40px 0 60px;
}

.privacy-page h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
}

.privacy-page .updated {
    font-size: 13px;
    color: var(--gray-text);
    margin-bottom: 20px;
}

.privacy-page p {
    font-size: 14px;
    color: var(--gray-text-d);
    line-height: 1.8;
    margin-bottom: 18px;
}

.privacy-page h2 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 10px;
}

.privacy-mascot-wrap {
    display: flex;
    justify-content: flex-end;
    padding-top: 20px;
}

.privacy-mascot-wrap img {
    max-height: 280px;
    object-fit: contain;
}

/* ============================================================
            18. PROFILE PAGE
            ============================================================ */
.profile-page {
    padding: 40px 0 60px;
    min-height: calc(100vh - 65px - 200px);
}

.profile-sidebar {
    background: var(--white);
    overflow: hidden;
    border: 0;
}

.profile-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    cursor: 1px solid var(--gray-border);
    transition: background .2s;
    text-decoration: none;
    border-radius: var(--r-md);
    cursor: pointer;
}

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

.profile-nav-item:hover {
    background: var(--gray-bg);
    color: var(--dark);
}

.profile-nav-item.active {
    background: var(--yellow);
    font-weight: 600;
    color: var(--dark);
}

.profile-nav-item i {
    width: 18px;
    font-size: 15px;
}

.profile-content {
    background: var(--white);
    border: 1.5px solid var(--gray-border);
    border-radius: var(--r-md);
    padding: 28px;
}

.profile-user-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

.profile-avatar {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--yellow);
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-user-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
}

.profile-user-email {
    font-size: 13px;
    color: var(--gray-text);
}

.profile-user-phone {
    font-size: 13px;
    color: var(--gray-text);
}

.profile-user-city {
    font-size: 13px;
    color: var(--gray-text);
}

.profile-info-row {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-border);
    font-size: 14px;
}

.profile-info-row:last-child {
    border-bottom: none;
}

.pir-label {
    width: 160px;
    color: var(--gray-text-d);
    font-weight: 500;
    flex-shrink: 0;
}

.pir-value {
    color: var(--gray-text);
}

/* Order History Table */
.oh-table {
    width: 100%;
    border-collapse: collapse;
}

.oh-table th {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-text);
    padding: 10px 12px;
    border-bottom: 2px solid var(--gray-border);
    text-align: left;
}

.oh-table td {
    font-size: 13px;
    padding: 12px;
    border-bottom: 1px solid var(--gray-border);
    white-space: nowrap;
}

.oh-table tr:last-child td {
    border-bottom: none;
}

.pagination-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    font-size: 13px;
    color: var(--gray-text);
}

.pag-nums {
    display: flex;
    gap: 6px;
}

.pag-num {
    width: 30px;
    height: 30px;
    border: 1.5px solid var(--gray-border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    background: var(--white);
    color: var(--dark);
    transition: all .2s;
}

.pag-num.active {
    background: var(--yellow);
    border-color: var(--yellow);
}

.pag-arrow {
    width: 30px;
    height: 30px;
    border: 1.5px solid var(--gray-border);
    border-radius: 6px;
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--dark);
}

/* Payment Methods */
.add-card-btn {
    background: var(--yellow);
    border: none;
    border-radius: var(--r-pill);
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background .2s;
    margin-bottom: 16px;
    margin-left: auto;
}

.add-card-btn:hover {
    background: var(--yellow-hover);
}

.payment-card-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-bottom: 1px solid var(--gray-border);
}

.payment-card-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #ebebeb;
    display: flex;
}

.payment-card-img img {
    width: 60px;
    height: auto;
    margin: auto;
}

.payment-card-row:last-child {
    border-bottom: none;
}

.pc-logo {
    width: 52px;
}

.pc-info {
    flex: 1;
}

.pc-num {
    font-size: 14px;
    font-weight: 600;
}

.pc-expiry {
    font-size: 12px;
    color: var(--gray-text);
}

.pc-default {
    background: #DCFCE7;
    color: #16A34A;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--r-pill);
}

.pc-more {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--gray-text);
    cursor: pointer;
    letter-spacing: 2px;
}

.secure-note {
    font-size: 12px;
    color: var(--gray-text);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
}

/* My Orders */
.my-order-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-border);
}

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

.mo-img {
    width: 56px;
    height: 56px;
    border-radius: var(--r-sm);
    object-fit: cover;
}

.mo-info {
    flex: 1;
}

.mo-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.mo-price {
    font-size: 13px;
    color: var(--gray-text);
}

.view-det-btn {
    background: none;
    border: 1.5px solid var(--gray-border);
    border-radius: var(--r-pill);
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font);
    transition: all .2s;
}

.view-det-btn:hover {
    background: var(--yellow);
    border-color: var(--yellow);
}

/* ============================================================
            19. AUTH PAGES (LOGIN / REGISTER)
            ============================================================ */
.auth-page {
    min-height: calc(100vh - 65px);
    display: flex;
    align-items: stretch;
}

.auth-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    position: relative;
}

.auth-mascot-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 24px;
}

.auth-mascot-circle img {
    width: 150px;
    object-fit: contain;
}

.auth-speech {
    position: absolute;
    top: 20px;
    right: -20px;
    background: var(--white);
    border-radius: 12px;
    padding: 9px 13px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    box-shadow: var(--shadow-md);
    max-width: 160px;
    text-align: center;
    line-height: 1.45;
}

.auth-speech::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: var(--white);
    border-bottom: none;
}

.auth-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 40px;
}

.auth-card {
    background: var(--white);
    border: 1.5px solid var(--gray-border);
    border-radius: var(--r-lg);
    padding: 36px 32px;
    max-width: 480px;
    width: 100%;
}

.auth-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 4px;
}

.auth-subtitle {
    font-size: 13px;
    color: var(--gray-text);
    margin-bottom: 24px;
}

.auth-link {
    color: var(--red);
    font-weight: 600;
}

.auth-link:hover {
    color: var(--red-hover);
    text-decoration: underline;
}

.pw-wrap {
    position: relative;
}

.pw-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-text);
    font-size: 15px;
}

.divider-or {
    text-align: center;
    font-size: 13px;
    color: var(--gray-text);
    position: relative;
    margin: 16px 0;
}

.divider-or::before, .divider-or::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 42%;
    height: 1px;
    background: var(--gray-border);
}

.divider-or::before {
    left: 0;
}

.divider-or::after {
    right: 0;
}

.social-btn {
    flex: 1;
    border: 1.5px solid var(--gray-border);
    background: var(--white);
    border-radius: var(--r-pill);
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font);
    transition: border-color .2s;
}

.social-btn:hover {
    border-color: var(--dark);
}

.forgot-link {
    font-size: 13px;
    color: var(--yellow);
    font-weight: 600;
    text-decoration: none;
}

.forgot-link:hover {
    text-decoration: underline;
}

.check-wrap {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-text-d);
    cursor: pointer;
}

.check-wrap input[type="checkbox"] {
    margin-top: 2px;
    accent-color: var(--yellow);
}

/* ============================================================
            20. CAREERS PAGE
            ============================================================ */
.careers-page {
    padding: 40px 0 60px;
    min-height: calc(100vh - 65px - 200px);
}

.careers-card {
    background: var(--white);
    border: 1.5px solid var(--gray-border);
    border-radius: var(--r-md);
    padding: 28px 32px;
}

.careers-note {
    background: var(--yellow-light);
    border: 1px solid #FDE68A;
    border-radius: var(--r-sm);
    padding: 12px 16px;
    font-size: 13px;
    color: var(--dark);
    text-align: center;
    margin-top: 14px;
}

.file-input-wrap {
    border: 1.5px solid var(--gray-border);
    border-radius: var(--r-sm);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.file-input-wrap input[type="file"] {
    flex: 1;
    padding: 8px 12px;
    border: none;
    font-size: 13px;
    font-family: var(--font);
    background: var(--white);
}

/* ============================================================
            21. BRANCHES PAGE
            ============================================================ */
.branches-page {
    padding: 40px 0 60px;
}

.branch-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-bottom: 1px solid var(--gray-border);
    cursor: pointer;
    transition: opacity .2s;
}

.branch-item:hover {
    opacity: .8;
}

.branch-pin {
    color: var(--red);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.branch-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.branch-addr {
    font-size: 13px;
    color: var(--gray-text);
    margin-bottom: 2px;
}

.branch-hours {
    font-size: 12px;
    color: var(--gray-text);
}

.branch-map-link {
    color: var(--red);
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-top: 3px;
}

.branch-map-link:hover {
    text-decoration: underline;
    color: var(--red);
}

.map-wrap {
    border-radius: var(--r-md);
    overflow: hidden;
    height: 500px;
    background: #E8EEE8;
    position: relative;
}

.map-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-tooltip {
    position: absolute;
    background: var(--white);
    border-radius: var(--r-md);
    padding: 14px;
    box-shadow: var(--shadow-lg);
    width: 200px;
    bottom: 38%;
    right: 12%;
}

.map-tooltip-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.map-tooltip-addr {
    font-size: 12px;
    color: var(--gray-text);
    margin-bottom: 10px;
}

/* ============================================================
            22. RESPONSIVE
            ============================================================ */
@media (max-width: 1199.98px) {
    .nav-inner {
        padding: 0 24px;
    }

    .footer-main {
        padding: 40px 24px;
    }

    .hero-title {
        font-size: 32px;
    }
}

@media (max-width: 991.98px) {
    .nav-links {
        display: none;
    }

    .profile-menu, .nav-cart-badge i, .change-lang {
        font-size: 15px !important;
    }

    .nav-toggle {
        display: block;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-img-col {
        justify-content: center;
    }

    .delivery-info-grid, .payment-methods-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-img {
        opacity: .2;
    }

    .auth-left {
        display: none;
    }

    .auth-right {
        padding: 40px 24px;
    }

    .auth-card {
        max-width: 100%;
    }

    .profile-sidebar {
        margin-bottom: 20px;
    }
}

@media (max-width: 767.98px) {
    .hero-img-col {
        display: none;
    }
    .cart-item{
        display: block;
    text-align: center;
    }
    .about-hero-body .about-data{
        padding: 20px;
    }
    .cart-img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        border: 1px solid var(--gray-border);
        margin: auto;
        margin-bottom: 20px;
    }
    .about-hero-body {
        background-position: right;
        /* background-image: url(../img/about2-r.png); */
    }
    .hero-body {
        /* padding: 40px 0; */
    }
    .product-name, .product-price-new{
        font-size: 14px;
    }
    .nav-login, .btn-yellow{
        font-size: 11px;
    }
    .cat-track {
        overflow-x: auto;
        scrollbar-width: none;
    }
    .nav-logo img {
        height: 50px;
        width: auto;
    }
    .cat-track::-webkit-scrollbar {
        display: none;
    }

    .section-title {
        font-size: 22px;
    }

    .map-wrap {
        height: 300px;
    }

    .track-progress-row {
        padding: 0 24px;
    }

    .track-step {
        max-width: 80px;
    }

    .track-step-name {
        font-size: 11px;
    }

    .track-step-desc {
        display: none;
    }

    .delivery-info-grid {
        grid-template-columns: 1fr;
    }

    .checkout-card {
        padding: 20px;
    }

    .cart-item-actions {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        margin-top: 10px;
    }
}

@media (max-width: 575.98px) {
    .nav-inner {
        padding: 0 14px;
    }

    .hero-title {
        font-size: 24px;
    }

    .footer-main {
        padding: 47px 14px;
        padding-top: 50px;
    }

    .auth-card {
        padding: 24px 18px;
    }
}

.owl-dots {
    margin: 20px 0;
    position: absolute;
    bottom: 0;
    left: 15px;
}

.owl-carousel button.owl-dot {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50px;
    margin: 5px;
}

.owl-carousel button.owl-dot.active {
    background: var(--yellow);
}

.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    background: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50px;
    font-size: 25px;
    line-height: 0;
    z-index: 9;
}

.owl-carousel .owl-nav button.owl-prev {
    left: 0;
}

.owl-carousel .owl-nav button.owl-next {
    right: 0px;
}

/* Loader */
.fullpage-loader {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    background: var(--yellow);
    z-index: 9999;
    opacity: 1;
    transition: opacity .5s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fullpage-loader__logo {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0;
    text-align: center;
    overflow: hidden;
}

.fullpage-loader__logo img {
    max-height: 100%;
    margin: 0 auto;
}

.fullpage-loader__logo:after {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    animation: shine 2.5s infinite cubic-bezier(0.42, 0, 0.58, 1);
    background: #fad02f;
    background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #fad02f5c 0%, #fad02fad 50%, #fad02f5c 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#00ffffff',GradientType=1 );
    /* IE6-9 */
}

@keyframes shine {
    0% {
        transform: translateX(-100%) skew(-30deg);
    }

    100% {
        transform: translateX(200%) skew(-30deg);
    }
}

.fullpage-loader--invisible {
    opacity: 0;
    display: none;
}

.track-status {
    font-size: 13px;
    color: var(--gray-text);
    margin-top: 12px;
    padding: 15px;
    border-radius: 15px;
    background: var(--yellow-light);
}

.track-time {
    font-size: 22px;
    font-weight: 800;
    color: var(--red);
    margin-top: 4px;
    margin-left: 24px;
}

.track-status i {
    font-size: 20px;
    color: var(--yellow);
}

.track-status p {
    margin: 0;
}

.track-status .d-flex {
    align-items: center;
    gap: 12px;
}

.preparing {
    flex-shrink: 0;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #a71b1a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    overflow: hidden;
}

.preparing img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.br-0 {
    border-right: 0 !important;
}

.white-bk {
    background: #fff !important;
}

.about-page {
    padding-bottom: 80px;
}

.branch-item.selected {
    background: var(--yellow-light);
    border-radius: var(--r-md);
}

.branch-item.selected .branch-pin {
    color: var(--red);
}

.change-lang {
    font-size: 17px;
}

.home-breadcrumb, .pages-breadcrumb {
    position: fixed;
    top: 100px;
    z-index: 999;
    margin: 0 auto;
    text-align: center;
    background: #db0014;
    border-radius: 50px;
    box-shadow: 0 0 20px -10px;
    right: 0;
    left: 0;
    width: fit-content;
    padding: 0 10px;
}

.pages-breadcrumb {
    position: relative;
    top: inherit;
    margin-top: 0;
    margin-left: auto;
    right: inherit;
    left: inherit;
    padding: 1px 10px;
    z-index: 9;
    background: transparent;
    border: none;
    box-shadow: none;
}

.home-breadcrumb h4, .pages-breadcrumb h4 {
    font-size: 15px;
}

.home-breadcrumb button, .pages-breadcrumb button {
    background: #f9cf2f;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.home-breadcrumb button:hover, .pages-breadcrumb button:hover {
    border: 1px solid #f9cf2f;
    color: #f9cf2f;
}
.home-breadcrumb .red_btn, .pages-breadcrumb .red_btn {
    background: #dc0013;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #fff
}

.home-breadcrumb .red_btn:hover, .pages-breadcrumb .red_btn:hover {
    border: 1px solid var(--red-hover);
    background: var(--red-hover);
    color: #fff
}

.home-breadcrumb button.outline_btn, .pages-breadcrumb button.outline_btn {
    background: #f9cf2f;
}
.home-breadcrumb button.outline_btn, .pages-breadcrumb button.outline_btn {
    background: transparent;
    border-radius: 50px;
    font-size: 13px;
     border: 1px solid #f9cf2f;
    color: #f9cf2f;
    font-weight: 600;
}

.home-breadcrumb button.outline_btn:hover, .pages-breadcrumb button.outline_btn:hover {
    border: 1px solid #f9cf2f;
    background: #f9cf2f;
    color: #000
}
.outline_btn {
    background: #f9cf2f;
}
.outline_btn {
    background: transparent;
    border-radius: 50px;
    font-size: 13px;
     border: 1px solid #f9cf2f;
    color: #f9cf2f;
    font-weight: 600;
}

.outline_btn:hover {
    border: 1px solid #f9cf2f;
    background: #f9cf2f;
    color: #000
}
.hero .hero-img {
    position: relative;
    z-index: 2;
    padding: 60px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
}

.breadcrumb {
    margin: 0;
}

.breadcrumb-area li {
    padding-inline-end: 8px;}

.breadcrumb-area li a {
    color: #db0014;
}

.breadcrumb-area li a:hover {
    color: #000;
}

.breadcrumb-area li.active {
    color: #f9cf2f;
    font-weight: 600;
}

.meal_title {
    font-size: 30px;
    color: #db0014;
}

.meal_text {
    font-size: 16px;
}

.section_title {
    font-size: 24px;
    color: #db0014;
    font-weight: 600;
}

.form-check-input:checked {
    background-color: #db0014;
    border-color: #db0014;
}

.form_check label, .form_check input {
    cursor: pointer;
}

.optional {
    margin-bottom: 15px;
}

.optional h5 {
    font-size: 16px;
}

.optional span {
    font-size: 14px;
    color: #f9cf2f;
}

.meal-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.meal-price .btn {
    background: #f9cf2f;
    border-radius: 60px;
    color: #db0014;
    font-weight: 600;
    margin-inline-end: 5px;
    font-size: 14px;
    }

.meal-price .btn img {
    width: 25px;
    margin-inline-end: 4px; }

.meal-price .btn:hover {
    background: #db0014;
    color: #f9cf2f;
}

.form-check-input:focus {
    border-color: #db001491;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(219 0 20 / 20%);
}

.order_sammary {
    background-color: #f9cf2f24;
    border-radius: 20px;
    padding: 24px;
    font-weight: 600;
    font-size: 15px;
    line-height: 100%;
    color: #000;
}

.total_price_sammary {
    border-top: 1px dashed var(--m-main);
    margin-top: 20px;
}

.total_price_sammary .item_type {
    margin-top: 20px;
    color: var(--m-main);
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
}

.total_price_sammary .item_type span {
    padding-top: 10px;
    display: block;
    color: var(--m-main);
    font-weight: 500;
    font-size: 14px;
}

.total_price_sammary .item_value {
    margin-top: 20px;
    color: var(--m-second);
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
}

.order_details {
    background-color: #f9cf2f24;
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 20px;
}

.order_items_count {
    background-color: #f9cf2f;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    color: #000000;
    font-weight: 700;
    font-size: 16px;
    margin-inline-start: 10px; }

.cart_item {
    color: #db0014;
    font-weight: 600;
    font-size: 18px;
}

.item_data {
    background-color: #fff;
    border-radius: 20px;
    padding: 16px;
    position: relative;
}

.restorant_modal h2 {
    font-size: 22px;
}

.item_data img {
    width: 100px;
    max-width: 100px;
    min-width: 100px;
    height: 100px;
    border-radius: 20px;
    margin-right: 12px;
    object-fit: contain;
}

.item_data h2 a {
    color: #000;
    font-size: 18px;
    font-weight: 700;
}

.delete-item {
    /* position: absolute; */
    /* right: 16px; */
    /* bottom: 16px; */
    font-size: 18px;
    color: #db0014;
}

.item_data p {
    color: #000;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
}

.cart_item_price {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.add_address_wrapper {
    background-color: #f9cf2f24;
    border-radius: 20px;
    padding: 24px 40px;
}

.add_address_options {
    background-color: #f9cf2f24;
    border-radius: 20px;
    padding: 20px 20px 16px;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    color: #000;
    margin-top: 15px;
}

.delivery_time {
    font-size: 18px;
}

.delivery_time div {
    font-weight: 700;
}

.order_special_requests .section_title {
    font-weight: 700;
    font-size: 18px;
    padding-bottom: 12px;
}

.add_address_options p {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    padding-top: 10px;
}

.radio-card {
    display: block;
    position: relative;
    background: #fff;
    border: 1px solid #46200B1A;
    border-radius: 16px;
    padding: 12px 16px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 16px;
    color: var(--m-main);
    transition: border 0.2s ease;
}

.radio-card.no_border {
    border: none;
    padding: 0 16px;
}

.radio-card:last-of-type {
    margin-bottom: 0px;
}

.radio-card:hover {
    border-color: var(--m-second);
}

.radio-card input[type="radio"] {
    display: none;
}

.custom-radio {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    border: 1px solid #46200B80;
    border-radius: 50%;
    background: #fff;
}

.radio-card input[type="radio"]:checked~.custom-radio {
    border: 2px solid #db0014;
    background: radial-gradient(circle at center, #db0014 35%, #ffffff 60%);
}

.radio-label {
    margin-left: 24px;
    display: flex;
    gap: 5px;
}

.nav-tabs .nav-link.active {
    color: #fff !important;
    border: none;
    border-bottom: 2px solid #ff7f00;
    font-weight: 600;
    background: linear-gradient(180deg, #FCB203 0%, #F15A25 100%);
    transition: all 0.5s ease-in-out;
}

.nav-tabs .nav-link {
    border: none;
    color: #6c757d;
    font-weight: 500;
}

.btn-gradient {
    background: linear-gradient(90deg, #ff9900, #ff6600);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 600;
}

.modal-content {
    border-radius: 15px;
    padding: 20px;
}

.form-control:focus {
    color: var(--m-main);
    background-color: #fff;
    border-color: var(--m-main);
    outline: 0;
    box-shadow: none;
}

.restorant_modal .nav-tabs .nav-item {
    width: 50%;
}

.restorant_modal .nav-tabs {
    border-bottom: 1px solid #46200B1A
}

.restorant_modal .nav-tabs .nav-link {
    border: none;
    color: var(--m-main);
    font-weight: 700;
    font-size: 20px;
}

.restorant_modal .nav-tabs .nav-link.active {
    border: none;
    border-bottom: 2px solid #ff7f00;
    font-weight: 700;
    font-size: 20px;
    background: linear-gradient(180deg, #FCB203 0%, #F15A25 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.restorant_modal .nav-tabs .nav-link svg {
    width: 45px;
    height: 45px;
    margin-right: 10px;
}

.restorant_modal .nav-tabs .nav-link svg path {
    fill: var(--m-main);
}

.restorant_modal .nav-tabs .nav-link.active svg path {
    fill: #ff7f00;
}

.restorant_modal .nav-link {
    display: block;
    padding: 15px;
}

.restorant_modal h5 {
    font-size: 18px;
}

.restorant_modal p {
    font-size: 16px;
    font-weight: 500;
    color: var(--m-main);
}

.restorant_modal .modal-dialog {
    max-width: 600px;
}

.restorant_modal .custom-select select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    width: 100%;
    background-image: url(../img/icons/arrow_down.png);
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 24px;
}

.fs-12 {
    font-size: 12px !important;
}

.fs-18 {
    font-size: 18px !important;
}
.fs-22{
    font-size: 22px !important;
}
.btn-outline-login {
    padding: .25rem 1rem;
    font-size: 18px;
    border-radius: 1.2rem;
    color: var(--m-main);
    border: 1px solid #28272580;
}

.btn-outline-login i {
    font-size: 13px;
    font-weight: 700;
    padding-left: 8px;
}

.restorant_modal .main_btn {
    font-weight: 600;
}

.header .dropdown-submenu {
    position: relative;
}

.header .dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}

.header .dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.header .dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}

.header .dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}

.header .dropdown-submenu.pull-left {
    float: none;
}

.header .dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}

.dropdown-menu.show {
    position: absolute;
    right: 0;
    left: inherit;
    background: #f8cf2e;
    border: 0;
    box-shadow: 0 0 20px -11px;
    padding: 0;
    overflow: hidden;
    top: 29px;
    z-index: 99999999;
}

.dropdown-menu .dropdown-item {
    padding: 2px 20px;
    font-size: 14px;
}

.dropdown-menu .dropdown-item:hover {
    background: #db0015;
    color: #f8ce2e;
}

.profile-menu {
    cursor: pointer;
}

.modal-header .btn-close {
    font-size: 20px;
    line-height: 0;
}

.modal-header .btn-close:hover {
    color: #000;
}

.delete_address_btn {
    color: #dc3545;
    background: none;
    border: 0;
}

.delete_address_btn:hover, .btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    color: #b02a37;
    background: 0;
}

.empty_cart {
    max-height: 500px;
    object-fit: contain;
}
.btn-small{
    font-size: 12px;
    padding: 5px 15px;
}
.breadcrumb-area {
    box-shadow: 0 0 20px -10px #f8cf2e;
    
}
.dynamic_price{padding: 0 5px;}
#dynamic_price {
    padding-left: 8px;
}