/* ============================================================
   MIX CHICKEN ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Master Stylesheet
   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 {
     scroll-behavior: smooth;
   }
   
   body {
     font-family: var(--font);
     color: var(--dark);
     background: var(--white);
     overflow-x: hidden;
     line-height: 1.6;
     font-size: 14px;
   }
   
   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;
   }
   
   /* ============================================================
            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;
   }
   
   .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: 9px 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;
   }
   
   .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;
   }
   
   /* ============================================================
            6. HOME PAGE ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â HERO
            ============================================================ */
   .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;
   }
   
   /* ============================================================
            7. HOME PAGE ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â 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;
   }
   
   .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: nowrap;
   }
   
   /* ============================================================
            8. HOME PAGE ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â 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;
   }
   
   .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 .product-card-img {
     width: 100%;
     height: 250px;
     object-fit: contain;
   }
   
   .product-card-body {
     padding: 12px 14px 14px;
   }
   
   .product-name {
     font-size: 21px;
     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 50px;
     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;
}
    .contact-img img{}
   .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);
   }
   
   .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;
     min-width: 18px;
     text-align: center;
   }
   
   .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: var(--gray-text);
     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(3, 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);
   }
   
   .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;
     }
   
     .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;
     }
   
     .hero-body {
       padding: 40px 0;
     }
   
     .cat-track {
       overflow-x: auto;
       scrollbar-width: none;
     }
   
     .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;
     }
   }
   
   @media (max-width: 575.98px) {
     .nav-inner {
       padding: 0 14px;
     }
   
     .hero-title {
       font-size: 24px;
     }
   
     .footer-main {
       padding: 32px 14px;
     }
   
     .auth-card {
       padding: 24px 18px;
     }
   }
   
   .owl-dots {
     margin: 20px 0;
   }
   
   
   .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); }