/* ===== GLOBAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: #ffffff;
    color: #1E1E1E;
}

a {
    text-decoration: none;
}

/* ===== TOP GREEN BAR ===== */
.top-bar {
    width: 100%;
    height: 6px;
    background: #78AF0B;
}

/* ===== NAVBAR ===== */
.navbar {
    background: #ffffff;
    padding: 15px 0;
    box-shadow: none;
}

.logo-img {
    height: 90px;
}

.navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #1E1E1E;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #236832;
}

.navbar-nav .nav-link.active {
    color: #236832;
    font-weight: 600;
    border-bottom: 3px solid #236832;
    padding-bottom: 4px;
}

.cart-wrapper {
    position: relative;
}

.btn-cart {
    background: #FE4519;
    color: #ffffff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-cart:hover {
    background: #e03a12;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #FBBC05;
    color: #000;
    font-size: 14px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
}

.btn-signin {
    font-size: 20px;
    font-weight: 400;
    color: #333;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.btn-signin:hover {
    color: #236832;
}

.btn-signin .user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2e7d32, #43a047);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.user-dropdown-menu {
    min-width: 260px;
    padding: 8px 0;
    border: none;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    margin-top: 10px !important;
}

.user-dropdown-menu .dropdown-header {
    padding: 14px 18px;
}

.user-dropdown-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-dropdown-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2e7d32, #43a047);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.user-dropdown-info div {
    display: flex;
    flex-direction: column;
}

.user-dropdown-info strong {
    font-size: 15px;
    color: #1E1E1E;
}

.user-dropdown-info small {
    font-size: 12px;
    color: #999;
}

.user-dropdown-menu .dropdown-item {
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s;
}

.user-dropdown-menu .dropdown-item:hover {
    background: #f0faf0;
}

.user-dropdown-menu .dropdown-item i {
    font-size: 16px;
}

.user-dropdown-menu .dropdown-divider {
    margin: 4px 0;
}

/* ===== CTA BUTTON (REUSABLE) ===== */
.btn-cta {
    display: inline-block;
    background: #FE4519;
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    padding: 12px 35px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-cta:hover {
    background: #e03a12;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(254, 69, 25, 0.3);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 780px;
    padding-top: 100px;
    /* overflow: hidden; */
    /* background: #236832; */
}

/* Union background image - contains gradient + brush stroke */
.hero-union-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    z-index: 1;
}

/* Paan leaf top right - rotated like in Figma */
.hero-leaf-top {
    position: absolute;
    top: -20px;
    right: -10px;
    width: 280px;
    z-index: 4;
    transform: rotate(-90deg);
    transform-origin: center;
}

/* Paan plate image */
.hero-paan-img {
    position: absolute;
    right: 10%;
    top: 18%;
    width: 34%;
    max-width: 620px;
    z-index: 3;
}
.fixed-top {
    position: fixed !important; 
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}
/* Paan leaves bottom right */
.hero-leaf-bottom {
    position: absolute;
    right: 0;
    bottom: -30px;
    width: 400px;
    z-index: 4;
}

.hero-content {
    position: relative;
    z-index: 5;
    padding-top: 120px;
    padding-bottom: 140px;
    padding-left: 110px;
}

.hero-content h1 {
    font-weight: 800;
    font-size: 3.4rem;
    line-height: 60px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
}

.hero-content p {
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 35px;
    letter-spacing: 0.02em;
    color: #ffffff;
    max-width: 560px;
    margin-bottom: 25px;
}

/* ===== TAGLINE SECTION ===== */
.tagline-section {
    padding: 80px 0 60px;
    position: relative;
}

.tagline-icon {
    margin-bottom: 25px;
}

.tagline-text {
    font-weight: 500;
    font-size: 1.7rem;
    line-height: 50px;
    text-align: center;
    color: #1E1E1E;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== WELCOME / ABOUT SECTION ===== */
.welcome-section {
    padding: 20px 0 100px;
    position: relative;
    /* overflow: hidden; */
}

.blob-green-left {
    position: absolute;
    width: 306px;
    height: 306px;
    left: -122px;
    bottom: 5%;
    background: #CFF09E;
    border-radius: 50%;
    z-index: 0;
}

.blob-orange-right {
    position: absolute;
    width: 1040px;
    height: 1040px;
    left: 100%;
    top: -30%;
    background: #F5C589;
    border-radius: 50%;
    z-index: -1;
    transform: translateX(-50%);
}

.blob-green-small {
    position: absolute;
    width: 180px;
    height: 180px;
    left: -60px;
    top: 10%;
    background: #CFF09E;
    border-radius: 50%;
    z-index: 0;
    opacity: 0.6;
}

/* Paan leaf decoration - top right */
.welcome-leaf {
    position: absolute;
    top: -30px;
    right: 2%;
    width: 280px;
    z-index: 1;
    transform: rotate(30deg);
}

/* Wrapper for overlapping layout */
.welcome-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 700px;
}

/* Image positioned to the right */
.welcome-img-box {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 100%;
    z-index: 1;
}

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

/* Orange text box overlapping image from the left */
.welcome-text-box {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 45%;
    background: #FF9000;
    padding: 45px 40px;
    z-index: 2;
}

.welcome-text-box h3 {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 40px;
    text-transform: uppercase;
    color: #1E1E1E;
    margin-bottom: 15px;
}

.welcome-text-box p {
    font-weight: 400;
    font-size: 1rem;
    line-height: 26px;
    color: #1E1E1E;
    margin-bottom: 12px;
}

.welcome-text-box .btn-cta {
    display: inline-block;
    font-size: 1.2rem;
    padding: 10px 30px;
    border: 1px solid #ffffff;
    margin-top: 5px;
}

/* ===== MENU SECTION ===== */
.menu-section {
    padding: 60px 0 0;
    position: relative;
}

.menu-title {
    font-weight: 600;
    font-size: 3.2rem;
    line-height: 70px;
    color: #000000;
    margin-bottom: 40px;
}

.menu-items-wrapper {
    position: relative;
    margin-top: 20px;
    height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Pseudo-element for bg image so mix-blend-mode doesn't affect children */
.menu-items-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./all_images/home/menu1.png');
    background-size: cover;
    background-position: center;
    mix-blend-mode: multiply;
    z-index: 0;
}

.drip-svg {
    position: relative;
    z-index: 2;
    width: 100%;
    line-height: 0;
}

.drip-top {
    margin-bottom: -2px;
}

.drip-bottom {
    margin-top: -2px;
}

.menu-bg {
    padding: 60px 0 50px;
    position: relative;
    z-index: 1;
    width: 80%;
}

.menu-btn-wrapper {
    position: relative;
    z-index: 1;
}

.menu-circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 18px solid #ffffff;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.menu-circle:hover {
    transform: scale(1.05);
}

.menu-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-label {
    font-weight: 500;
    font-size: 1.7rem;
    line-height: 70px;
    color: #ffffff;
    margin: 0;
}

.menu-btn-wrapper {
    position: relative;
    z-index: 3;
    margin-top: -30px;
    margin-bottom: 10px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.testimonial-blob-green {
    position: absolute;
    /* width: 370px;
    height: 700px; */
    left: -7px;
    top: 12%;
    /* background: #CFF09E; */
    /* border-radius: 40% 60% 50% 50%; */
    z-index: 0;
}

.testimonial-blob-orange {
    position: absolute;
    /* width: 366px;
    height: 380px; */
    right: -5px;
    top: 33%;
    /* background: #F5C589; */
    /* border-radius: 50%; */
    z-index: 0;
}

.section-heading {
    font-weight: 600;
    font-size: 3.2rem;
    line-height: 70px;
    color: #000000;
    margin-bottom: 50px;
}

.testimonial-card-wrapper {
    position: relative;
    z-index: 2;
    max-width: 80%;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-img-box {
    height: 100%;
    min-height: 450px;
    aspect-ratio: 1/1;
}

.testimonial-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-review-box {
    background: #FF9000;
    padding: 50px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

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

.reviewer-stars {
    display: flex;
    gap: 8px;
}

.reviewer-stars i {
    color: #FFCC00;
    font-size: 1.6rem;
    -webkit-text-stroke: 1px #ffffff;
}

.review-text {
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 35px;
    color: #1E1E1E;
    margin-bottom: 20px;
}

.reviewer-name {
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 36px;
    color: #1E1E1E;
    margin-bottom: 25px;
}

/* Review slider */
.review-slider {
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.review-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.review-slide.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.review-dots {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.review-dots .dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffffff;
    display: inline-block;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
}

.review-dots .dot:hover {
    background: #ffb89e;
}

.review-dots .dot.active {
    background: #FE4519;
}

/* ===== FOOTER ===== */
.footer-section {
    background-image: url('./all_images/footer/footer.png');
    background-size: cover;
    position: relative;
}

.footer-wave {
    line-height: 0;
    margin-bottom: -2px;
}

.footer-wave svg {
    display: block;
    width: 100%;
}

.footer-main {
    /* background: linear-gradient(357.48deg, #013A1C 50%, #236832 100%); */
    padding: 126px 0 30px;
}

.footer-main .sub-footer {
    width: 90%;
    margin: 0 auto;
}

.footer-bottom .sub-footer {
    width: 90%;
    margin: 0 auto;
}


.footer-heading {
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 30px;
    color: #ffffff;
    margin-bottom: 12px;
}

.footer-heading i {
    margin-right: 6px;
    font-size: 18px;
}

.footer-text {
    font-weight: 400;
    font-size: 1rem;
    line-height: 30px;
    color: #ffffff;
    letter-spacing: 0.03em;
}

.footer-bottom {
    /* background: #013A1C; */
    padding: 20px 0 0 0;
    border-top: 1px solid #348318;
}

.footer-copyright {
    font-weight: 300;
    font-size: 1rem;
    line-height: 45px;
    letter-spacing: 0.1em;
    color: #ffffff;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-size: 22px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: #78AF0B;
    border-color: #78AF0B;
    color: #ffffff;
}

/* ===== MENU PAGE (aboute.html) ===== */

/* Banner */
.menu-banner {
    height: 520px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-banner {
    background: url('./all_images/background.png');
    background-size: cover;
}

.menu-banner-bg {
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.menu-banner-title {
    font-weight: 800;
    font-size: 80px;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
}

.menu-banner-leaf-left {
    position: absolute;
    left: -30px;
    top: 10%;
    width: 220px;
    z-index: 2;
    transform: rotate(-15deg);
    opacity: 0.9;
}

.menu-banner-drink-left {
    position: absolute;
    left: 12%;
    bottom: 0;
    height: 85%;
    z-index: 3;
}

.menu-banner-drink-right {
    position: absolute;
    right: 12%;
    bottom: 0;
    height: 80%;
    z-index: 3;
}

.menu-banner-leaf-right {
    position: absolute;
    right: -30px;
    top: 5%;
    width: 220px;
    z-index: 2;
    transform: rotate(15deg);
    opacity: 0.9;
}

.menu-banner-wave {
    margin-top: -2px;
    line-height: 0;
    background: #1a5226;
}

.menu-banner-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* Browse Menu Section */
.browse-menu-section {
    padding: 60px 0 80px;
}

.browse-menu-title {
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    color: #236832;
    margin-bottom: 50px;
}

/* Category Tabs - Rectangular cards with overlaid text */
.menu-category-tabs {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-tab {
    position: relative;
    width: 200px;
    height: 130px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    border: 4px solid transparent;
}

.category-tab.active {
    border-color: #FE4519;
}

.category-tab:hover {
    transform: scale(1.03);
}

.category-tab img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-tab::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: background 0.3s;
}

.category-tab:hover::after {
    background: rgba(0, 0, 0, 0.2);
}

.category-tab span {
    position: absolute;
    bottom: 50%;
    left: 0;
    right: 0;
    transform: translateY(50%);
    padding: 10px;
    font-weight: 600;
    font-size: 18px;
    color: #ffffff;
    text-align: center;
    z-index: 1;
}

/* Menu Items Grid */
.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1250px;
    margin: 0 auto;
}

.menu-item-card {
    display: flex;
    background: #ffffff;
    border-radius: 24px;
    padding: 18px;
    box-shadow: none;
    border: 1px solid #808386;
    transition: transform 0.3s;
    gap: 18px;
    align-items: stretch;
}

.menu-item-card:hover {
    transform: translateY(-4px);
}

.menu-item-img {
    width: 170px;
    min-height: 170px;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    border: none;
}

.menu-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-item-info {
    padding: 4px 6px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.menu-item-name {
    font-weight: 700;
    font-size: 20px;
    color: #1E1E1E;
    margin-bottom: 6px;
}

.menu-item-desc {
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: #888888;
    margin-bottom: 14px;
}

.menu-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.btn-add-item {
    background-color: #e65100;
    color: #fff;
    border: none;
    padding: 8px 22px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-add-item:hover {
    background-color: #bf360c;
}

.btn-remove-cart {
    background: none;
    border: none;
    color: #e53935;
    font-size: 18px;
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.3s;
}

.btn-remove-cart:hover {
    color: #b71c1c;
}

/* Order Modal */
.order-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.order-modal-content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    width: 90%;
    max-width: 700px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.order-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.order-modal-header h3 {
    font-weight: 700;
    margin: 0;
    color: #1E1E1E;
}

.order-modal-close {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #999;
    line-height: 1;
}

.order-modal-close:hover {
    color: #333;
}

/* Order Cards Grid */
.order-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    max-width: 1250px;
    margin: 0 auto;
}

.order-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    padding: 28px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: default;
}

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

.order-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.order-card-logo {
    width: 65px;
    height: 65px;
    flex-shrink: 0;
}

.order-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.order-card-info {
    flex: 1;
}

.order-card-id {
    font-weight: 700;
    font-size: 18px;
    color: #1E1E1E;
    margin: 0;
}

.order-card-status {
    font-size: 14px;
    color: #2e7d32;
    font-weight: 600;
}

.order-card-details {
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    padding: 14px 0;
    margin-bottom: 18px;
}

.order-card-date,
.order-card-items {
    font-size: 15px;
    color: #777;
    margin: 4px 0;
}

.order-card-date i,
.order-card-items i {
    margin-right: 6px;
    color: #999;
}

.order-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.order-card-total {
    font-weight: 700;
    font-size: 22px;
    color: #1E1E1E;
}

.btn-view-order {
    background-color: #e65100;
    color: #fff;
    border: none;
    padding: 10px 26px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-view-order:hover {
    background-color: #bf360c;
}

@media (max-width: 1100px) {
    .order-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .order-cards-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
}

.menu-item-price {
    font-weight: 700;
    font-size: 22px;
    color: #1E1E1E;
}

.btn-add-item {
    background: #FE4519;
    color: #ffffff;
    border: none;
    padding: 8px 24px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-add-item:hover {
    background: #e03a12;
    transform: translateY(-1px);
}

/* Quantity Control - Circular icon buttons */
.qty-control {
    display: flex;
    align-items: center;
    gap: 0;
    background: #FE4519;
    border-radius: 50px;
    padding: 3px 5px;
}

.qty-btn {
    background: none;
    color: #ffffff;
    border: none;
    width: 32px;
    height: 32px;
    font-size: 26px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
    padding: 0;
}

.qty-btn i {
    font-size: 26px;
}

.qty-btn:hover {
    opacity: 0.8;
}

.qty-value {
    font-weight: 600;
    font-size: 18px;
    color: #ffffff;
    min-width: 30px;
    text-align: center;
}

/* ===== CHECKOUT PAGE ===== */
.checkout-section {
    padding: 60px 0 80px;
}

.checkout-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #1B2141;
    margin-bottom: 30px;
}

.order-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 700px;
}

.order-item-card {
    display: flex;
    align-items: center;
    border: 1px solid #808386;
    border-radius: 16px;
    padding: 16px;
    gap: 16px;
}

.order-item-img {
    width: 120px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
}

.order-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.order-item-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #1B2141;
    margin-bottom: 4px;
}

.order-item-desc {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #7A7A8E;
    margin-bottom: 8px;
}

.order-item-price {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #1B2141;
}

.order-item-qty {
    flex-shrink: 0;
}

.btn-add-more {
    display: inline-block;
    margin-top: 30px;
    background: #FE4519;
    color: #ffffff;
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s;
}

.btn-add-more:hover {
    background: #e03a12;
    color: #ffffff;
}

.checkout-divider {
    margin: 40px 0;
    border: none;
    border-top: 2px solid #999696;
    max-width: 1000px;
}

.bill-details {
    max-width: 400px;
    /* margin-bottom: 40px; */
}

.bill-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #1B2141;
    margin-bottom: 20px;
}

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

.bill-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #5A5A6E;
    min-width: 100px;
}

.bill-colon {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #5A5A6E;
    margin: 0 20px;
}

.bill-value {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #5A5A6E;
}

.bill-total-row {
    margin-top: 16px;
}

.bill-label-total {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #1B2141;
    min-width: 120px;
}

.bill-value-total {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #FE4519;
}

.btn-make-payment {
    display: inline-block;
    background: #FE4519;
    color: #ffffff;
    border: none;
    padding: 16px 60px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-make-payment:hover {
    background: #e03a12;
}

/* ===== LOGIN PAGE ===== */
.login-section {
    padding: 45px 0 40px;
}

.login-form-wrapper {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.login-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 36px;
    color: #FE4519;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-style: normal;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.login-input-group {
    position: relative;
}

.login-input {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #d0d0d0;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #1B2141;
    background: #ffffff;
    outline: none;
    transition: border-color 0.3s;
}

.login-input::placeholder {
    color: #a0a0a0;
    font-weight: 400;
}

.login-input:focus {
    border-color: #FE4519;
}

.password-group {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #1B2141;
    font-size: 18px;
    padding: 0;
}

.login-forgot {
    text-align: right;
    margin-top: -8px;
}

.login-forgot a {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #1B2141;
    text-decoration: none;
}

.login-forgot a:hover {
    color: #FE4519;
}

.btn-login {
    width: 100%;
    padding: 16px;
    background: #FE4519;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.btn-login:hover {
    background: #e03a12;
}

.login-signup-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #1B2141;
    margin-top: 10px;
}

.login-signup-text a {
    color: #FE4519;
    font-weight: 500;
    text-decoration: none;
}

.login-signup-text a:hover {
    text-decoration: underline;
}

/* ===== SIGN UP PAGE ===== */
.phone-input-group {
    display: flex;
    border: 1px solid #d0d0d0;
    border-radius: 12px;
    overflow: hidden;
}

.phone-code-select {
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-right: 1px solid #d0d0d0;
    background: #ffffff;
}

.phone-code {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #1B2141;
    border: none;
    outline: none;
    background: transparent;
    cursor: pointer;
    padding: 4px 0;
}

.phone-number-input {
    border: none !important;
    border-radius: 0 !important;
}

.terms-check {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.terms-checkbox {
    width: 20px;
    height: 20px;
    accent-color: #1B2141;
    flex-shrink: 0;
    cursor: pointer;
}

.terms-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #1B2141;
}

.terms-label a {
    color: #FE4519;
    text-decoration: none;
    font-weight: 500;
}

.terms-label a:hover {
    text-decoration: underline;
}

/* ===== OTP VERIFICATION PAGE ===== */
.otp-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #1B2141;
    margin-bottom: 6px;
}

.otp-desc {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #1B2141;
    margin-bottom: 30px;
}

.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.otp-box {
    width: 60px;
    height: 70px;
    border: 1px solid #d0d0d0;
    border-radius: 12px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #1B2141;
    outline: none;
    transition: border-color 0.3s;
}

.otp-box:focus {
    border-color: #FE4519;
}

.otp-resend {
    margin-bottom: 8px;
}

.otp-resend a {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #FE4519;
    text-decoration: none;
}

.otp-resend a:hover {
    text-decoration: underline;
}

.otp-timer {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #1B2141;
    margin-bottom: 20px;
}

/* ===== ORDER DETAILS PAGE ===== */
.order-details-section {
    padding: 60px 0 80px;
}

/* Status Card */
.od-status-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 12px;
}

.od-order-id {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #1B2141;
    margin-bottom: 4px;
}

.od-order-date {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

.od-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
}

.od-status-confirmed {
    background: #E8F5E9;
    color: #2E7D32;
}

/* Progress Tracker */
.od-progress-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    gap: 0;
}

.od-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 80px;
}

.od-progress-step span {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #999;
    font-weight: 500;
}

.od-progress-step.active span {
    color: #1B2141;
    font-weight: 600;
}

.od-progress-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.od-progress-step.active .od-progress-icon {
    background: #2E7D32;
    color: #fff;
}

.od-progress-line {
    flex: 1;
    height: 3px;
    background: #e0e0e0;
    margin: 0 4px;
    margin-bottom: 28px;
}

.od-progress-line.active {
    background: #2E7D32;
}

/* Section Titles */
.od-section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #1B2141;
    margin-bottom: 16px;
}

/* Qty Label (static, not editable) */
.od-qty-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #1B2141;
    background: #f5f5f5;
    padding: 6px 16px;
    border-radius: 20px;
}

/* Delivery Details */
.od-delivery-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 10px;
}

.od-delivery-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.od-delivery-icon {
    font-size: 20px;
    color: #FE4519;
    margin-top: 2px;
}

.od-delivery-label {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #999;
    margin-bottom: 2px;
}

.od-delivery-value {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #1B2141;
    font-weight: 500;
    margin-bottom: 0;
}

/* Payment Info */
.od-payment-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 12px;
}

.od-payment-method {
    display: flex;
    align-items: center;
    gap: 12px;
}

.od-card-number {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #1B2141;
    font-weight: 500;
    letter-spacing: 1px;
}

.od-payment-status {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2E7D32;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Action Buttons */
.od-actions {
    text-align: center;
    margin-top: 30px;
}

.od-actions .btn-make-payment {
    text-decoration: none;
    display: inline-block;
}

/* ===== PAYMENT PAGE ===== */
.payment-section {
    padding: 60px 0 80px;
}

.payment-wrapper {
    max-width: 700px;
}

.payment-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #1B2141;
    margin-bottom: 10px;
}

.payment-line-gray {
    border: none;
    border-top: 2px solid #808386;
    margin: 0 0 16px 0;
}

.payment-amount-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.payment-amount-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #1B2141;
}

.payment-amount-value {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #1B2141;
}

.payment-total-row {
    text-align: right;
    margin-bottom: 40px;
    padding: 8px 0;
}

.payment-total-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #1B2141;
}

.payment-subheading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #1B2141;
    margin-bottom: 16px;
}
.payment-section .container-fluid{
    padding: 0 60px;
}
.saved-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #808386;
    border-radius: 7px;
    padding: 16px 20px;
    margin-bottom: 36px;
    max-width: 480px;
}

.saved-card-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.card-brand-img {
    width: 55px;
    height: 36px;
    object-fit: contain;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    padding: 3px 5px;
    background: #fff;
}

.saved-card-number {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #1B2141;
    letter-spacing: 2px;
}

.saved-card-check {
    width: 22px;
    height: 22px;
    accent-color: #1B2141;
    cursor: pointer;
    border: 2px solid #808386;
    border-radius: 3px;
    /* appearance: none; */
    /* -webkit-appearance: none; */
    background: #fff;
}

.payment-card-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #1B2141;
    margin-bottom: 16px;
}

.payment-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 480px;
}

.payment-input-group {
    position: relative;
}

.payment-input {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #808386;
    border-radius: 7px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #1B2141;
    background: #ffffff;
    outline: none;
    transition: border-color 0.3s;
}

.payment-input::placeholder {
    color: #b0b0b0;
    font-weight: 400;
    font-size: 14px;
}

.payment-input:focus {
    border-color: #FE4519;
}

.stripe-element {
    display: flex;
    align-items: center;
}

.stripe-element .StripeElement {
    width: 100%;
}

.payment-row-half {
    display: flex;
    gap: 16px;
}

.payment-row-half .payment-input-group {
    flex: 1;
}

.cvv-group {
    position: relative;
}

.cvv-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #1B2141;
}

.btn-pay-now {
    display: inline-block;
    width: auto;
    padding: 16px 60px;
    background: #FE4519;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.btn-pay-now:hover {
    background: #e03a12;
}

/* ===== ABOUT US PAGE ===== */

/* Intro Section */
.about-intro-section {
    padding: 60px 0 25px;
}

.about-intro-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.about-intro-icon {
    width: 40px;
    margin-bottom: 12px;
}

.about-intro-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #333;
    line-height: 1.3;
}

.about-main-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #1B2141;
    margin-bottom: 16px;
}

.about-text {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #333;
    line-height: 1.7;
}

/* About Image with Badge */
.about-image-wrapper {
    position: relative;
    display: inline-block;
}

.about-main-img {
    width: 100%;
    max-width: 520px;
    object-fit: cover;
    border: 6px solid #fff;
    border-radius: 8px;
}

.about-badge {
    position: absolute;
    top: 10%;
    left: 10%;
    background: #FE4519;
    color: #fff;
    padding: 15px;
    border-radius: 50%;
    z-index: 2;
    text-align: center;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-badge h4 {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
}

.about-badge p {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
}

/* Story Section */
.about-story-section {
    padding: 20px 0 60px;
}

.about-story-img {
    width: 100%;
    max-width: 490px;
    border-radius: 8px;
}

/* Flavors Section */
.about-flavors-section {
    min-height: 100vh;
    background: url('./all_images/about/bg_pattern.png') repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.about-flavors-inner {
    position: relative;
    width: 650px;
    max-width: 100%;
}

.about-flavors-shape {
    width: 100%;
    display: block;
}

.about-flavors-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    text-align: center;
}

.about-flavors-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #1B2141;
    margin-bottom: 12px;
}

.about-flavors-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #333;
    margin-bottom: 12px;
}

.about-flavors-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-view-menu {
    display: inline-block;
    background: #FE4519;
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-view-menu:hover {
    background: #e03a12;
    color: #fff;
}

/* ===== CONTACT US PAGE ===== */
.contact-cards-section {
    padding: 70px 0 60px;
}

.contact-cards-row {
    display: flex;
    justify-content: space-evenly;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-card {
    position: relative;
    width: 350px;
    aspect-ratio: 1 / 1.1;
    text-align: center;
    border-radius: 16px;
    overflow: hidden;
}

.contact-card-bg {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: fill;
    border-radius: 16px;
}


.contact-card-inner {
    padding: 30px 24px 40px;
    position: relative;
    z-index: 1;
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 28px;
    color: #ffffff;
}

.contact-icon-orange {
    background: #E8941E;
}

.contact-icon-green {
    background: #5C8A60;
}

.contact-card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #1B2141;
    margin-bottom: 12px;
}

.contact-card-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #1B2141;
    line-height: 22px;
    margin-bottom: 0;
}

/* Map Section */
.contact-map-section {
    padding: 40px 60px 80px;
}

.map-wrapper {
    position: relative;
    
    margin: 0 auto;
    margin-top: 50px;
    overflow: hidden;
    border-radius: 0px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
}

.map-wrapper iframe {
    display: block;
}

.btn-get-directions {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #FE4519;
    color: #ffffff;
    border: none;
    padding: 10px 30px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 2;
}

.btn-get-directions:hover {
    background: #e03a12;
    color: #ffffff;
}
.totalbtn{
 
    display: grid;
 
    max-width: 1250px;
    margin: 0 auto;
 
}

/* ===== RESPONSIVE ===== */

/* --- XXL: 1400px+ (handled by base styles) --- */

/* --- XL: 1200–1399px --- */
@media (max-width: 1399px) {
    .hero-content h1 {
        font-size: 56px;
        line-height: 66px;
    }

    .hero-content p {
        font-size: 20px;
    }

    .menu-circle {
        width: 210px;
        height: 210px;
    }

    .menu-items-wrapper {
        height: 800px;
    }

    /* Menu Page */
    .menu-banner-title {
        font-size: 65px;
    }

    .browse-menu-title {
        font-size: 42px;
    }
}

/* --- LG: 992–1199px (tablet landscape) --- */
@media (max-width: 1199px) {
    .hero-content h1 {
        font-size: 48px;
        line-height: 58px;
    }

    .hero-content p {
        font-size: 18px;
        line-height: 30px;
    }

    .hero-paan-img {
        width: 38%;
    }

    .hero-leaf-bottom {
        width: 300px;
    }

    .tagline-text {
        font-size: 28px;
        line-height: 42px;
    }

    /* Welcome */
    .welcome-wrapper {
        min-height: 550px;
    }

    .welcome-text-box {
        width: 48%;
        padding: 35px 30px;
    }

    .welcome-text-box h3 {
        font-size: 22px;
        line-height: 34px;
    }

    .welcome-text-box p {
        font-size: 14px;
        line-height: 24px;
    }

    /* Menu */
    .menu-items-wrapper {
        height: 700px;
    }

    .menu-circle {
        width: 180px;
        height: 180px;
        border-width: 12px;
    }

    .menu-label {
        font-size: 22px;
        line-height: 50px;
    }

    .menu-bg {
        width: 90%;
    }

    /* Testimonials */
    .testimonial-card-wrapper {
        max-width: 90%;
    }

    .section-heading,
    .menu-title {
        font-size: 45px;
        line-height: 60px;
    }

    /* Menu Page */
    .menu-banner-title {
        font-size: 55px;
    }

    .menu-banner-drink-left,
    .menu-banner-drink-right {
        height: 75%;
    }

    .browse-menu-title {
        font-size: 38px;
        margin-bottom: 40px;
    }

    .category-tab {
        width: 170px;
        height: 110px;
    }

    .menu-category-tabs {
        gap: 20px;
    }

    .menu-item-img {
        width: 160px;
        height: 160px;
    }

    .menu-item-name {
        font-size: 20px;
    }

    .menu-item-desc {
        font-size: 13px;
        line-height: 20px;
    }

    .menu-item-price {
        font-size: 20px;
    }
}

/* --- MD: 768–991px (tablet portrait) --- */
@media (max-width: 991px) {

    /* Navbar */
    .navbar {
        position: relative;
    }

    .navbar .container-fluid {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .navbar-brand {
        order: 1;
    }

    .nav-right {
        order: 2;
        margin-left: auto;
    }

    /* .btn-signin {
        display: none !important;
    } */

    .navbar-toggler {
        order: 3;
        border: none;
        padding: 6px 0 6px 10px;
        font-size: 28px;
        color: #1B2141;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .offcanvas-end {
        width: 280px;
    }

    .offcanvas-header {
        border-bottom: 1px solid #e0e0e0;
        padding: 16px 20px;
    }

    .offcanvas-title {
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        font-size: 20px;
        color: #1B2141;
    }

    .offcanvas-body .navbar-nav {
        gap: 0 !important;
    }

    .offcanvas-body .navbar-nav .nav-link {
        padding: 12px 20px;
        font-size: 16px;
        border-bottom: 1px solid #f0f0f0;
    }

    .logo-img {
        height: 55px;
    }

    .navbar-nav .nav-link {
        font-size: 17px;
    }

    .btn-cart {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .cart-badge {
        width: 22px;
        height: 22px;
        font-size: 12px;
    }

    .btn-signin {
        font-size: 16px;
    }

    /* Hero */
    .hero-section {
        min-height: 520px;
    }

    .hero-content {
        padding-top: 70px;
        padding-bottom: 80px;
        padding-left: 40px;
    }

    .hero-content h1 {
        font-size: 38px;
        line-height: 46px;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 26px;
        max-width: 400px;
    }
    .checkout-divider {
    margin: 20px 0;
    border: none;
    border-top: 2px solid #999696;
    max-width: 1000px;
}

    .hero-paan-img {
        width: 35%;
        top: 15%;
    }

    .hero-leaf-top {
        width: 180px;
    }

    .hero-leaf-bottom {
        width: 220px;
        bottom: -20px;
    }

    /* Tagline */
    .tagline-section {
        padding: 60px 0 40px;
    }

    .tagline-text {
        font-size: 22px;
        line-height: 36px;
    }

    .tagline-icon img {
        height: 70px;
    }

    /* Welcome */
    .welcome-section {
        padding: 40px 0 80px;
    }

    .welcome-wrapper {
        min-height: 450px;
    }

    .welcome-img-box {
        width: 75%;
    }

    .welcome-text-box {
        width: 55%;
        padding: 25px 22px;
    }

    .welcome-text-box h3 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 10px;
    }

    .welcome-text-box p {
        font-size: 13px;
        line-height: 21px;
        margin-bottom: 8px;
    }

    .welcome-text-box .btn-cta {
        font-size: 15px;
        padding: 8px 22px;
    }

    .blob-orange-right {
        width: 500px;
        height: 500px;
    }

    /* Menu */
    .menu-section {
        padding: 60px 0 0;
    }

    .section-heading,
    .menu-title {
        font-size: 38px;
        line-height: 50px;
        margin-bottom: 25px;
    }

    .menu-items-wrapper {
        height: 580px;
    }

    .menu-bg {
        width: 95%;
        padding: 40px 0 30px;
    }

    .menu-circle {
        width: 150px;
        height: 150px;
        border-width: 10px;
    }

    .menu-label {
        font-size: 20px;
        line-height: 40px;
    }

    /* Testimonials */
    .testimonials-section {
        padding: 70px 0 80px;
    }

    .testimonial-card-wrapper {
        max-width: 95%;
    }

    .testimonial-img-box {
        min-height: 350px;
    }

    .review-text {
        font-size: 17px;
        line-height: 30px;
    }

    .reviewer-avatar {
        width: 70px;
        height: 70px;
    }

    .reviewer-name {
        font-size: 20px;
    }

    /* Footer */
    .footer-main {
        padding: 100px 0 25px;
    }

    .footer-main .sub-footer,
    .footer-bottom .sub-footer {
        width: 90%;
    }

    .footer-heading {
        font-size: 18px;
    }

    .footer-text {
        font-size: 14px;
        line-height: 26px;
    }

    .footer-social a {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    /* Menu Page */
    .menu-banner-bg {
        padding: 60px 0 50px;
    }

    .menu-banner-title {
        font-size: 45px;
    }

    .menu-banner-leaf-left,
    .menu-banner-leaf-right {
        width: 160px;
    }

    .menu-banner-drink-left,
    .menu-banner-drink-right {
        height: 70%;
    }

    .browse-menu-title {
        font-size: 34px;
        line-height: 46px;
        margin-bottom: 35px;
    }

    .category-tab {
        width: 160px;
        height: 100px;
    }

    .category-tab span {
        font-size: 14px;
    }

    .menu-items-grid {
        gap: 20px;
    }

    .menu-item-card {
        padding: 12px;
        gap: 12px;
    }

    .menu-item-img {
        width: 150px;
        height: 150px;
    }

    .menu-item-info {
        padding: 5px 8px;
    }

    .menu-item-name {
        font-size: 17px;
    }

    .menu-item-desc {
        font-size: 12px;
        line-height: 19px;
        margin-bottom: 10px;
    }

    .menu-item-price {
        font-size: 18px;
    }

    .btn-add-item {
        font-size: 13px;
        padding: 7px 18px;
    }
}

/* --- SM: 576–767px (mobile landscape) --- */
@media (max-width: 768px) {

    /* Navbar */
    .logo-img {
        height: 50px;
    }
    .hero-content {
        padding-top: 70px;
        padding-bottom: 80px;
        padding-left: 40px;
    }
    .menu-banner {
    height: 400px;

}
.hero-content h1 {
    font-size: 2rem !important;
    line-height: 46px;
}
    /* .nav-right .btn-signin {
        display: none !important;
    } */

    .btn-cart {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    /* Order Details */
    .od-status-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .od-order-id {
        font-size: 18px;
    }

    .od-progress-wrapper {
        gap: 0;
    }

    .od-progress-step {
        min-width: 60px;
    }

    .od-progress-step span {
        font-size: 10px;
    }

    .od-progress-icon {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    /* About Page */
    .about-intro-section {
        padding: 40px 0 30px;
    }

    .about-intro-tagline {
        font-size: 16px;
    }

    .about-intro-header {
        margin-bottom: 30px;
    }

    .about-main-title {
        font-size: 22px;
    }

    .about-text {
        font-size: 14px;
    }

    .about-main-img {
        max-width: 100%;
    }

    .about-badge {
        width: 100px;
        height: 100px;
        padding: 10px;
    }
.about-badge {

    top: 15%;
    left: 12%;

}
    .about-badge h4 {
        font-size: 18px;
    }

    .about-badge p {
        font-size: 9px;
    }

    .about-story-section {
        padding: 30px 0 40px;
    }

    .about-story-img {
        max-width: 100%;
    }

    .about-flavors-section {
        min-height: auto;
        padding: 40px 15px;
    }

    .about-flavors-content {
        width: 80%;
    }

    .about-flavors-title {
        font-size: 1.5rem;
    }

    .about-flavors-subtitle {
        font-size: 1.2rem;
    }

    .about-flavors-desc {
        font-size: 12px;
    }

    /* Contact Cards */
    .contact-cards-row {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .contact-card {
        width: 100%;
        max-width: 400px;
    }

    /* Contact Map */
    .contact-cards-section {
        padding: 40px 0 30px;
    }

    .contact-map-section {
        padding: 20px 0 50px;
    }

    .map-wrapper {
        margin-top: 20px;
    }

    .map-wrapper iframe {
        height: 300px;
        border-radius: 12px;
    }

    .btn-get-directions {
        bottom: 15px;
        padding: 8px 24px;
        font-size: 13px;
    }

    /* Hero */
    .hero-section {
        min-height: 400px;
    }

    .hero-content {
        padding-top: 50px;
        padding-bottom: 60px;
    }

    .hero-content h1 {
        font-size: 30px;
        line-height: 38px;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 22px;
        max-width: 320px;
    }

    .hero-paan-img {
        width: 21%;
        top: 44%;
        right: 13%;
    }

    .hero-leaf-top {
        width: 120px;
        top: -10px;
    }

    .hero-leaf-bottom {
        width: 180px;
        bottom: -15px;
    }

    .hero-union-bg {
        object-position: 70% bottom;
    }

    /* Tagline */
    .tagline-section {
        padding: 50px 15px 30px;
    }

    .tagline-text {
        font-size: 18px;
        line-height: 30px;
    }

    .tagline-icon img {
        height: 55px;
    }

    /* Welcome - stack vertically */
    .welcome-section {
        padding: 30px 0 30px;
    }

    .welcome-wrapper {
        min-height: auto;
    }

    .welcome-img-box {
        position: relative;
        width: 100%;
        height: 300px;
    }
   

    .welcome-text-box {
        position: relative;
        width: 90%;
        top: auto;
        left: 5%;
        transform: none;
        margin-top: -50px;
        padding: 30px 25px;
    }

    .welcome-text-box h3 {
        font-size: 20px;
        line-height: 30px;
    }

    .welcome-text-box p {
        font-size: 14px;
        line-height: 24px;
    }

    .welcome-leaf {
        display: none;
    }

    .blob-orange-right {
        display: none;
    }

    .blob-green-left {
        width: 180px;
        height: 180px;
    }

    /* Menu */
    .menu-section {
        padding: 25px 0 0;
    }

    .menu-title,
    .section-heading {
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 30px;
    }

    .menu-items-wrapper {
        height: auto;
        min-height: 500px;
    }

    .menu-bg {
        width: 100%;
        padding: 35px 10px 25px;
    }

    .menu-circle {
        width: 130px !important;
        height: 130px !important;
        border-width: 8px;
        margin-bottom: 5px;
    }
    .menu-circle img {
    width: 100% !important;
    height: 100%;
    object-fit: cover;
}

    .menu-label {
        font-size: 16px;
        line-height: 30px;
        margin-bottom: 15px;
    }

    .menu-btn-wrapper {
        margin-top: 10px;
        margin-bottom: 0;
    }

    /* Testimonials */
    .testimonials-section {
        padding: 60px 0 70px;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .testimonial-card-wrapper {
        max-width: 100%;
    }

    .testimonial-img-box {
        min-height: 250px;
        aspect-ratio: auto;
    }

    .testimonial-review-box {
        padding: 30px 25px;
    }

    .review-text {
        font-size: 15px;
        line-height: 26px;
    }

    .reviewer-avatar {
        width: 55px;
        height: 55px;
    }

    .reviewer-name {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .reviewer-stars i {
        font-size: 18px;
    }

    .testimonial-blob-green,
    .testimonial-blob-orange {
        display: none;
    }

    /* Footer */
    .footer-main {
        padding: 80px 0 20px;
    }

    .footer-main .sub-footer,
    .footer-bottom .sub-footer {
        width: 92%;
    }

    .footer-heading {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .footer-text {
        font-size: 13px;
        line-height: 24px;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .footer-social {
        gap: 12px;
    }

    .footer-copyright {
        font-size: 12px;
        line-height: 24px;
        letter-spacing: 0.04em;
        text-align: center;
    }

    .footer-bottom {
        padding: 15px 0;
    }

    /* CTA button */
    .btn-cta {
        font-size: 16px;
        padding: 10px 28px;
    }

    /* Menu Page */
    .menu-banner-bg {
        padding: 50px 0 40px;
    }

    .menu-banner-title {
        font-size: 38px;
    }

    .menu-banner-leaf-left,
    .menu-banner-leaf-right {
        width: 120px;
    }

    .menu-banner-drink-left {
        left: 5%;
        height: 65%;
    }

    .menu-banner-drink-right {
        right: 5%;
        height: 60%;
    }

    .browse-menu-section {
        padding: 40px 0 60px;
    }

    .browse-menu-title {
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 30px;
    }

    .menu-category-tabs {
        gap: 15px;
        margin-bottom: 35px;
    }

    .category-tab {
        width: 140px;
        height: 90px;
        border-width: 3px;
    }

    .category-tab span {
        font-size: 13px;
    }

    .menu-items-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
        gap: 20px;
    }

    .menu-item-card {
        padding: 12px;
    }

    .menu-item-img {
        width: 150px;
        height: 150px;
    }

    .menu-item-info {
        padding: 5px 10px;
    }

    .menu-item-name {
        font-size: 18px;
    }

    .menu-item-desc {
        font-size: 13px;
        line-height: 21px;
    }
    .totalbtn {
 
 
        grid-template-columns: 1fr;
        max-width: 550px;
 
    }
}

/* --- XS: <576px (mobile portrait) --- */
@media (max-width: 575px) {

    /* Navbar */
    .logo-img {
        height: 42px;
    }
.tagline-section {
    padding: 30px 15px 15px;
}
     .totalbtn {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    /* Hero */
    .hero-section {
        min-height: 350px;
    }

    .hero-content {
        padding-top: 35px;
        padding-bottom: 50px;
        padding-left: 20px;
    }

    .hero-content h1 {
        font-size: 1.5rem !important ;
        line-height: 32px;
        margin-bottom: 12px;
    }

    .hero-content p {
        font-size: 12px;
        line-height: 20px;
        max-width: 250px;
        margin-bottom: 20px;
    }

    .hero-paan-img {
        width: 31%;
        top: 49%;
        right: 3%;
    }

    .hero-leaf-top {
        width: 90px;
    }

    .hero-leaf-bottom {
        width: 140px;
    }

    .btn-cta {
        font-size: 14px;
        padding: 8px 22px;
    }

    /* Tagline */
    .tagline-text {
        font-size: 16px;
        line-height: 26px;
    }

    .tagline-icon img {
        height: 45px;
    }
.menu-banner {
    height: 300px;
  
}
.about-badge {
  
    top: 3%;
    left: 2%;
  
}
.about-flavors-desc {
    font-size: 10px;
}
.about-flavors-subtitle {
    font-size: 10px;
}
.about-flavors-content {
  
    top: 58%;

}
.about-flavors-title {
    font-size: 13px;
}
    /* Welcome */
    .welcome-img-box {
        height: 220px;
    }

    .welcome-text-box {
        width: 92%;
        left: 4%;
        padding: 22px 18px;
    }

    .welcome-text-box h3 {
        font-size: 18px;
        line-height: 26px;
    }

    .welcome-text-box p {
        font-size: 13px;
        line-height: 22px;
    }

    .welcome-text-box .btn-cta {
        font-size: 14px;
        padding: 8px 20px;
    }

    /* Menu */
    .menu-title,
    .section-heading {
        font-size: 28px;
        line-height: 38px;
    }

    .menu-items-wrapper {
        min-height: 580px;
    }

    .menu-circle {
        width: 110px;
        height: 110px;
        border-width: 6px;
    }

    .menu-label {
        font-size: 14px;
        line-height: 24px;
    }

    /* Testimonials */
    .testimonials-section {
        padding: 20px 0 60px;
    }

    .testimonial-img-box {
        min-height: 200px;
    }

    .testimonial-review-box {
        padding: 22px 18px;
    }

    .review-text {
        font-size: 13px;
        line-height: 22px;
    }

    .reviewer-avatar {
        width: 45px;
        height: 45px;
    }
    .order-item-card {
    display: flex;
    border: 1px solid #808386;
    border-radius: 16px;
    padding: 16px;
    gap: 16px;
    flex-direction: column;
    align-content: stretch;
    justify-content: center;
    align-items: flex-start;
}
.payment-section .container-fluid {
    padding: 0 20px;
}
    .reviewer-stars i {
        font-size: 15px;
    }

    .reviewer-name {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .review-dots .dot {
        width: 12px;
        height: 12px;
    }

    .review-dots {
        gap: 10px;
    }

    /* Footer */
    .footer-main {
        padding: 100px 0 15px;
    }

    .footer-main .sub-footer,
    .footer-bottom .sub-footer {
        width: 95%;
    }

    .footer-heading {
        font-size: 15px;
    }

    .footer-text {
        font-size: 12px;
        line-height: 22px;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .footer-copyright {
        font-size: 11px;
        letter-spacing: 0.03em;
    }

    /* Menu Page */
    .menu-banner-bg {
        padding: 40px 0 30px;
    }

    .menu-banner-title {
        font-size: 32px;
    }

    .menu-banner-leaf-left,
    .menu-banner-leaf-right {
        width: 90px;
    }

    .menu-banner-drink-left,
    .menu-banner-drink-right {
        height: 55%;
    }

    .browse-menu-section {
        padding: 30px 0 50px;
    }

    .browse-menu-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 25px;
    }

    .menu-category-tabs {
        gap: 12px;
        margin-bottom: 30px;
    }

    .category-tab {
        width: 120px;
        height: 80px;
        border-radius: 12px;
    }

    .category-tab span {
        font-size: 11px;
        padding: 6px;
    }

    .menu-items-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 16px;
    }

    .menu-item-card {
        flex-direction: column;
        padding: 0;
        border-radius: 16px;
        gap: 0;
        overflow: hidden;
    }

    .menu-item-img {
        width: 100%;
        height: 200px;
        border-radius: 0;
        min-height: auto;
    }

    .menu-item-info {
        padding: 14px 16px 16px;
    }

    .menu-item-name {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .menu-item-desc {
        font-size: 13px;
        line-height: 20px;
        margin-bottom: 12px;
        color: #777;
    }

    .menu-item-bottom {
        align-items: center;
    }

    .menu-item-price {
        font-size: 20px;
    }

    .btn-add-item {
        font-size: 13px;
        padding: 8px 20px;
        border-radius: 25px;
    }

    .qty-btn {
        width: 30px;
        height: 30px;
    }

    .qty-btn i {
        font-size: 22px;
    }

    .qty-value {
        font-size: 14px;
        min-width: 24px;
    }
}

/* --- XXS: <400px (very small phones) --- */
@media (max-width: 400px) {
    .hero-content h1 {
        font-size: 20px;
        line-height: 28px;
    }

    .hero-content p {
        font-size: 11px;
        line-height: 18px;
        max-width: 200px;
    }

    .hero-section {
        min-height: 300px;
    }

    .menu-circle {
        width: 90px;
        height: 90px;
        border-width: 5px;
    }

    .menu-label {
        font-size: 12px;
    }

    .welcome-text-box h3 {
        font-size: 16px;
        line-height: 24px;
    }

    .welcome-text-box p {
        font-size: 12px;
        line-height: 20px;
    }

    .tagline-text {
        font-size: 14px;
        line-height: 22px;
    }

    /* Menu Page */
    .menu-banner-title {
        font-size: 26px;
    }

    .menu-banner-leaf-left,
    .menu-banner-leaf-right {
        width: 70px;
    }

    .menu-banner-drink-left,
    .menu-banner-drink-right {
        height: 50%;
    }

    .browse-menu-title {
        font-size: 20px;
    }

    .category-tab {
        width: 100px;
        height: 70px;
        border-width: 2px;
        border-radius: 10px;
    }

    .category-tab span {
        font-size: 10px;
        padding: 4px;
    }

    .menu-item-img {
        height: 170px;
    }

    .menu-item-info {
        padding: 12px 14px 14px;
    }

    .menu-item-name {
        font-size: 16px;
    }

    .menu-item-desc {
        font-size: 12px;
        line-height: 18px;
    }

    .menu-item-price {
        font-size: 18px;
    }

    .btn-add-item {
        font-size: 12px;
        padding: 7px 16px;
    }

    .qty-btn {
        width: 26px;
        height: 26px;
    }

    .qty-btn i {
        font-size: 20px;
    }

    .qty-value {
        font-size: 13px;
        min-width: 20px;
    }
}