@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* Root Colors */
:root {
    --primary: #000000;
    --accent: #e63538;
    --accent-hover: #e63538;
    --green-line: #b40817;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #212529;
}

a {
    text-decoration: none;
}

.bg-theme {
    background-color: var(--accent);
}

.text-theme {
    color: var(--accent);
}

/* General Reset */
body {
    font-family: "Poppins", sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
    margin: 0;
}

::placeholder {
    color: #666666;
}

.green-text {
    color: var(--accent);
}

/* Top Bar */
.top-bar {
    height: 5px;
    background-color: var(--green-line);
}

/* ---------- HEADER LAYOUT ---------- */

.container-fluid {
    padding-left: 100px;
    padding-right: 100px;
}

.header .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* --- Left (Logo + Location) --- */
.header .d-flex.align-items-center.gap-5.mb-2 {
    flex: 1;
    justify-content: flex-start;
    align-items: center;
}

.logo {
    width: 130px;
    height: auto;
}

.location-box {
    display: flex;
    align-items: center;
}

.location-box p.text-dark {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 4px;
}

.location-box p.text-muted {
    font-size: 16px;
    color: #1e1e1e !important;
}

.location-box i.bi-chevron-down {
    font-size: 14px;
    margin-left: 6px;
    font-weight: 700;
}

/* --- Center (Search Box) --- */
.search-container {
    flex: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-box {
    border: 1px solid #000;
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 5px 10px;
    width: 100%;
    max-width: 550px;
    height: 60px;
}

.search-box .input-group-text {
    border: none;
    background-color: transparent;
    color: #000;
    font-size: 18px;
    padding: 0 10px;
}

.search-box .form-control {
    border: none;
    box-shadow: none !important;
    font-size: 16px;
}

.search-box .form-control:focus {
    outline: none;
    box-shadow: none;
}

/* --- Right (Cart / Sign In / My Profile) --- */
.header .align-items-center.d-flex.gap-5.justify-content-between.w-25 {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 48px;
    flex-wrap: nowrap !important;
}

.header .align-items-center.d-flex.gap-5.justify-content-between.w-25 a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(15px, 1.2vw, 18px);
    color: #1e1e1e !important;
    text-decoration: none;
    gap: 6px;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.3s;
}

.header .align-items-center.d-flex.gap-5.justify-content-between.w-25 a:hover {
    color: var(--accent);
}

.header .align-items-center.d-flex.gap-5.justify-content-between.w-25 i {
    font-size: clamp(18px, 1.5vw, 22px);
    line-height: 1;
    display: inline-block;
}

/* ---------- NAVBAR (Centered) ---------- */
.nav-section {
    background-color: var(--primary);
    text-align: center;
}

.hero-content strong {
    font-weight: 700 !important;
}

.nav-section .navbar-nav {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 16px;
}

.nav-section .nav-link {
    color: var(--white);
    font-weight: 500;
    padding: 22px 22px !important;
    font-size: clamp(13px, 1vw, 18px);
    transition: all 0.3s ease;
}

.nav-section .nav-link.active,
.nav-section .nav-link:hover {
    background-color: var(--accent);
    color: var(--white);
    border-radius: 4px;
}

.month-prev,
.month-next {
    border: 0;
    background: transparent;
    font-size: 14px;
}

/* ---------- RESPONSIVE ---------- */

/* ✅ Large (1200px–1400px) */
@media (max-width: 1540px) {
    .container-fluid {
        padding: 20px 70px;
    }
    .hero-content h1 {
        font-size: 100px;
        font-weight: 600;
        line-height: 44px !important;
    }

    .pay-ui .bg-layer {
        padding: 13px 13px 9px 7px !important;
    }

    .restaurant-name {
        /* width: 250px !important; */
        font-size: 21px !important;
    }

    .schedule-ui .sch-sub {
        font-size: 18px !important;
        margin: 0 !important;
    }

    .schedule-ui .sch-title {
        font-size: 24px !important;
    }

    .schedule-ui .calendar-grid div {
        padding: 10px 2px !important;
    }

    .schedule-ui .time-box {
        padding: 1px 0 !important;
    }

    .schedule-ui .time-val {
        font-size: 12px !important;
        padding: 2px 0 !important;
    }

    .logo {
        width: 85px;
    }

    .restaurant-info .text-muted {
        font-size: 15px !important;
    }

    .restaurant-info .text-secondary {
        font-size: 14px !important;
    }

    .search-box {
        max-width: 500px;
        height: 56px;
    }

    .fav-btn {
        font-size: 21px !important;
    }

    .location-box p.text-dark {
        font-size: 16px;
    }

    .schedule-ui .schedule-popup {
        width: 520px !important;
        height: 59vh;
        overflow-y: scroll;
    }

    .schedule-ui .sch-save {
        padding: 5px 22% !important;
        font-size: 22px !important;
        margin: 5px auto !important;
    }

    .location-box p.text-muted {
        font-size: 11px;
        max-width: 178px;
    }

    .location-box .fa-location-dot {
        font-size: 11px !important;
    }

    .header .align-items-center.d-flex.gap-5.justify-content-between.w-25 a {
        font-size: 16px;
    }

    .header .align-items-center.d-flex.gap-5.justify-content-between.w-25 i {
        font-size: 16px;
    }

    .section-padding {
        margin-top: 10px !important;
        margin-bottom: 20px !important;
    }

    .hero-banner {
        min-height: 580px !important;
    }

    .hero-content h2 {
        font-size: 37px !important;
    }

    .hero-content strong {
        font-size: 53px !important;
    }

    .hero-content p,
    .app-left .text-white.mb-4,
    .app-left .fw-semibold {
        font-size: 26px !important;
    }

    .nav-section .nav-link {
        padding: 12px 22px !important;
    }

    .btn.btn-pink {
        padding: 8px 21px !important;
        font-size: 15px !important;
    }

    .header-text h2,
    .app-left h2 {
        font-size: 26px !important;
    }

    .rating-badge {
        font-size: 14px !important;
    }

    .rating-badge .bi-star-fill {
        font-size: 16px !important;
    }

    .logo-badge {
        width: 73px !important;
        height: 71px !important;
    }

    .app-download-section .app-box {
        padding: 0px 60px 0px 39px !important;
    }

    .footer-title {
        font-size: 17px !important;
    }

    .footer-links a {
        font-size: 13px !important;
    }

    .footer-links li {
        margin-bottom: 6px !important;
    }

    .footer-logo {
        /* width: 84px !important; */
    }

    .location-popup h4 {
        font-size: 21px !important;
        margin: 0 !important;
    }

    .location-popup {
        width: 700px !important;
        padding: 27px 23px !important;
    }

    .location-popup h4 {
        font-size: 24px !important;
    }

    .location-popup .slider-text span {
        font-size: 18px !important;
        padding: 7px 2px 1px 14px !important;
    }

    /* Track */
    .form-range::-webkit-slider-runnable-track {
        height: 7px !important;
    }

    /* Thumb */
    .form-range::-webkit-slider-thumb {
        width: 29px !important;
        height: 29px !important;
        margin-top: -10px !important;
    }

    .center-section {
        padding: 11px 0 !important;
        margin: 11px 0 !important;
    }

    #locationPopup .center-section strong {
        font-size: 17px !important;
    }

    #locationPopup .center-section .text-muted,
    .checkout-ui-bill-table td {
        font-size: 17px !important;
    }

    .center-section button {
        font-size: 16px !important;
        padding: 3px 14px !important;
    }

    .search-box-last {
        padding: 1px !important;
        margin: 9px 0 !important;
    }

    .form-control,
    .checkout-ui-schedule-time {
        font-size: 16px !important;
    }

    #locationPopup .form-control {
        height: 34px;
    }

    .search-box-last i {
        font-size: 18px !important;
    }

    .location-icon {
        padding: 5px !important;
    }

    .location-icon img {
        width: 105px !important;
    }

    .banner-title {
        font-size: 47px !important;
    }

    .breadcrumb-box a,
    .breadcrumb-box p {
        font-size: 27px !important;
    }

    .page-banner {
        height: 408px !important;
    }

    .open-filter i {
        padding: 8px 20px !important;
    }

    .fs-3 {
        font-size: 1.2rem !important;
    }

    .restaurant-card .slider-img {
        height: 410px !important;
    }

    .menu-section-ui .menu-tabs {
        padding: 13px 17px !important;
    }

    .menu-section-ui .menu-tabs .nav-link {
        border-radius: 25px !important;
        padding: 5px 20px !important;
        font-size: 15px !important;
    }

    .menu-section-ui .add-item-btn,
    .checkout-ui-add-item,
    .checkout-ui-method,
    .checkout-ui-coupon-input,
    .checkout-ui-apply-btn,
    /* .checkout-ui-btn-row button, */
    .splitbill-ui .sb-split-btn,
    .splitbill-ui .sb-box,
    .ps-save,
    .btn-add {
        padding: 10px 16px !important;
        font-size: 13px !important;
    }

    .feedback-submit {
        padding: 10px 45px !important;
        font-size: 15px !important;
    }

    .btn-pay {
        padding: 10px 16px !important;
        font-size: 19px !important;
    }

    .btn-success {
        padding: 10px 12px !important;
        font-size: 16px !important;
    }

    .reward-ui .reward-card button,
    .reward-ui .invite-box button {
        padding: 14px 16px !important;
        font-size: 12px !important;
    }

    .orders-ui .btn-outline-success,
    .orders-ui .btn-success .btn-pay-success,
    .favorites-ui .fav-add-btn,
    .favorites-ui .fav-toggle .fav-btn,
    .about-btn,
    .pp-btn,
    .main-container-contect .btn-submit {
        height: 100%;
        padding: 11px 20px !important;
        font-size: 15px !important;
        line-height: 1 !important;
    }

    .pay-ui .load-card-btn {
        padding: 5px 4px !important;
        font-size: 12px !important;
        line-height: 0;
    }

    .splitbill-ui .sb-box {
        padding: 6px 18px !important;
    }

    .reward-ui .reward-badge {
        padding: 6px 11px !important;
        font-size: 14px !important;
    }

    .menu-section-ui .menu-price,
    .feedback-ui .stars i,
    .faq-section-title,
    .faq-question h5 {
        font-size: 18px !important;
    }

    .menu-section-ui .menu-desc,
    .orders-ui .order-desc,
    .pp-text {
        font-size: 14px !important;
    }

    .menu-section-ui .menu-title,
    .checkout-ui-heading,
    .splitbill-ui .sb-date,
    .orders-ui .order-id {
        font-size: 18px !important;
    }

    .menu-section-ui .menu-cal {
        font-size: 14px !important;
    }

    .border-top {
        padding-top: 2% !important;
    }

    .rating-ui-section h3 {
        font-size: 35px !important;
    }

    .rating-ui-summary .summary-title,
    .orders-ui .pickup {
        font-size: 16px !important;
    }

    .rating-ui-summary .summary-number,
    .checkout-ui-rating,
    .splitbill-ui .sb-title {
        font-size: 28px !important;
    }

    .rating-ui-star-big {
        font-size: 30px !important;
    }

    .rating-ui-bars .bar-label,
    .pay-ui .tab-pane p {
        font-size: 15px !important;
    }

    .fs-1,
    .checkout-ui-title {
        font-size: 1.5rem !important;
    }

    .rating-ui-review .review-meta,
    .checkout-ui-timing {
        font-size: 14px !important;
    }

    .rating-ui-review .review-text,
    .favorites-ui .fav-desc,
    .oi-customize,
    .feedback-ui .fb-label {
        font-size: 15px !important;
    }

    .rating-ui-viewmore,
    .checkout-ui-subtext,
    .orders-ui .order-price,
    .view-details,
    .favorites-ui .fav-title {
        font-size: 16px !important;
    }

    .rating-ui-section hr,
    .addon-ui-section hr {
        margin: 10px !important;
    }

    .restaurant-slider .owl-dots .owl-dot span {
        width: 11px !important;
        height: 11px !important;
    }

    .addon-ui-title,
    .section-title,
    .favorites-ui .fav-price {
        font-size: 1.4rem !important;
    }

    .addon-ui-group h6 {
        font-size: 16px !important;
    }

    .addon-ui-check,
    .reward-summary p,
    .loadcard-tabs .nav-link {
        font-size: 16px !important;
    }

    .pay-ui .pay-tabs .nav-link {
        padding: 7px 21px !important;
        font-size: 18px !important;
    }

    .addon-ui-check input {
        margin-right: -3px !important;
        width: 19px !important;
        height: 16px !important;
    }

    .addon-price,
    .about-ui h4 {
        font-size: 20px !important;
    }

    .img-fluid {
        max-width: 74% !important;
        height: auto;
    }

    .reorder {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .view-details {
        text-decoration: none !important;
        background: var(--accent) !important;
        border: 2px solid var(--accent) !important;
        color: white !important;
        width: fit-content !important;
        padding: 10px 12px !important;
        font-size: 16px !important;
    }

    .checkout-ui-logo,
    .sb-logo,
    .otp-card img,
    .orders-ui .order-logo,
    .pay-ui .wallet-logo,
    .about-logo {
        /* width: 110px !important;
    height: 110px !important; */
    }

    .splitbill-ui .sb-user-img {
        width: 48px !important;
        height: 48px !important;
    }

    .participants-section-ui .ps-user img,
    .bill-logo {
        width: 67px !important;
        height: 67px !important;
    }

    .participants-section-ui .ps-empty {
        padding: 13px 8px !important;
    }

    .participants-section-ui .ps-row {
        padding: 7px 10px !important;
    }

    .participants-section-ui .ps-row span {
        font-size: 18px !important;
    }

    .total-section {
        padding: 0 13px !important;
    }

    #paymentModal .modal-header .btn-close {
        position: absolute;
        right: 16px;
        top: 10%;
    }

    .pay-ui .barcode-img {
        width: 69% !important;
        display: flex;
        justify-content: center;
        margin: auto;
    }

    #paymentModal .modal-content {
        padding: 0 !important;
    }

    .reward-ui .reward-sticker {
        top: 32% !important;
        padding: 0px 53px !important;
        width: 200px !important;
    }

    .menu-section-ui .qty-box {
        padding: 3px 5px !important;
        gap: 7px !important;
    }

    .food-card .qty-box {
        padding: 3px 5px !important;
        gap: 7px !important;
    }

    .tab {
        padding: 6px !important;
        font-size: 1.1rem !important;
    }

    .card-description,
    .faq-answer p {
        font-size: 14px !important;
    }

    .reward-ui .title,
    .feedback-ui .fb-title {
        font-size: 25px !important;
    }

    .reward-ui .menu-btn {
        padding: 9px 10px !important;
        font-size: 14px !important;
    }

    .reward-ui .nav-pills img {
        width: 19px;
    }

    .reward-summary h5 {
        font-size: 20px !important;
    }

    .reward-ui .tab-pane .reward-card {
        height: 261px !important;
    }

    .reward-summary h6 {
        font-size: 21px !important;
    }

    .feedback-ui .fb-stars i {
        font-size: 37px !important;
    }

    .feedback-ui .fb-textarea {
        height: 175px !important;
    }

    .feedback-ui .fb-submit {
        padding: 7px 15% !important;
        font-size: 16px !important;
        margin: 1px auto !important;
    }

    .main-container-profile .sections-title {
        margin: 28px 0px !important;
    }

    .feedback-ui .fb-modal {
        width: 40% !important;
        padding: 23px 2% !important;
    }
}

@media (min-width: 1540px) and (max-width: 1920px) {
    .checkout-ui-method {
        font-size: 21px !important;
    }

    .checkout-ui-add-item {
        font-size: 22px !important;
    }

    .checkout-ui-apply-btn {
        font-size: 22px !important;
    }

    .checkout-ui-btn-row button {
        font-size: 22px !important;
    }

    .filter-popup .chip {
        font-size: 20px !important;
    }

    .schedule-ui .schedule-popup {
        width: 580px !important;
        height: 57vh !important;
    }
}

/* ✅ Medium (992px–1199px) */
@media (max-width: 1199px) {
    .container-fluid {
        padding: 0 0;
    }

    .logo {
        width: 110px;
    }

    .search-box {
        max-width: 460px;
        height: 52px;
    }

    .header .align-items-center.d-flex.gap-5.justify-content-between.w-25 {
        gap: 21px !important;
    }
}

/* ✅ Tablet (768px–991px) */
@media (max-width: 991px) {
    .header .container-fluid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
        padding: 10px 30px;
    }

    .header .d-flex.align-items-center.gap-5.mb-2 {
        justify-content: center;
    }

    .search-container {
        flex: unset;
        width: 100%;
        justify-content: center;
    }

    .search-box {
        height: 52px;
        max-width: 90%;
    }

    .header .align-items-center.d-flex.gap-5.justify-content-between.w-25 {
        justify-content: center;
        gap: 32px;
    }

    .header .align-items-center.d-flex.gap-5.justify-content-between.w-25 a {
        font-size: 16px;
    }

    .profile-popup {
        top: 31% !important;
    }
}

/* ✅ Mobile (≤767px) */
@media (max-width: 767px) {
    .container-fluid {
        padding: 0 20px;
    }

    .logo {
        width: 90px;
    }

    .search-box {
        height: 52px;
        max-width: 100%;
    }

    .location-box p.text-dark {
        font-size: 16px;
    }

    .location-box p.text-muted {
        font-size: 14px;
    }

    /* Keep icons inline, just smaller gap */
    .header .align-items-center.d-flex.gap-5.justify-content-between.w-25 {
        flex-wrap: nowrap;
        justify-content: center;
        gap: 24px;
    }

    .header .align-items-center.d-flex.gap-5.justify-content-between.w-25 a {
        font-size: 14px;
    }

    .header .align-items-center.d-flex.gap-5.justify-content-between.w-25 i {
        font-size: 16px;
    }

    .nav-section .nav-link {
        padding: 10px 12px !important;
        font-size: 13px;
    }
}

/* ✅ Extra Small (≤480px) */
@media (max-width: 480px) {
    .container-fluid {
        padding: 10px 15px;
    }

    .checkout-ui-add-item {
        padding: 7px 18px !important;
        font-size: 15px !important;
    }

    .logo {
        width: 75px;
    }

    .hero-content strong {
        font-size: 30px !important;
    }
    .btn-order {
        padding: 1px 13px !important;
        font-size: 17px !important;
    }
    .btn-orders {
        padding: 8px 13px !important;
        font-size: 14px !important;
    }
    .checkout-ui-bill-table td {
        padding: 3px 14px 10px 6px !important;
        font-size: 15px !important;
        color: #555555;
    }
    .btn-menu{
        padding: 8px 13px !important;
        font-size: 14px !important;
    }

    .header .align-items-center.d-flex.gap-5.justify-content-between.w-25 {
        gap: 20px;
    }

    .header .align-items-center.d-flex.gap-5.justify-content-between.w-25 a {
        font-size: 13px;
    }

    .header .align-items-center.d-flex.gap-5.justify-content-between.w-25 i {
        font-size: 15px;
    }
    .store-btns{
        flex-wrap: wrap !important;
    }

    .img-fluid {
        max-width: 60% !important;
        height: auto;
    }
}

/* Drawer Navigation for Mobile */
.drawer-menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 0;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.4);
    transition: width 0.3s ease;
    z-index: 1050;
}

.drawer-menu.show {
    width: 100%;
}

.drawer-content {
    position: absolute;
    top: 0;
    left: -300px;
    height: 100%;
    width: 280px;
    background-color: var(--primary);
    padding: 25px 20px;
    transition: all 0.3s ease;
}

.drawer-menu.show .drawer-content {
    left: 0;
}

.drawer-overlay {
    position: absolute;
    top: 0;
    left: 280px;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.drawer-menu.show .drawer-overlay {
    opacity: 1;
    pointer-events: all;
}

.drawer-content .btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
    filter: invert(1);
    opacity: 0.8;
}

.drawer-content ul.navbar-nav {
    padding-left: 0;
    margin-top: 50px;
}

.drawer-content .nav-link {
    display: block;
    color: var(--white);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 500;
    font-size: 16px;
}

.drawer-content .nav-link.active,
.drawer-content .nav-link:hover {
    background: none;
    color: var(--accent);
}

@media (min-width: 992px) {
    .drawer-menu {
        display: none !important;
    }
}

/* ====== FOOTER ====== */
.footer {
    background-color: var(--primary);
    color: var(--white);
    font-family: "Poppins", sans-serif;
}

.footer-top {
    background-color: var(--primary);
}

.footer-logo {
    width: 130px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

/* Social Icons */
.social-icons .social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-icons .social-link:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

/* Column Titles */
.footer-title {
    font-weight: 600;
    margin-bottom: 24px;
    font-size: 25px;
    color: var(--white);
    text-align: left;
}

/* Links */
.footer-links li {
    margin-bottom: 13px;
    text-align: left;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-links .city-link {
    color: var(--accent);
}

.footer-links .city-link i {
    font-size: 12px;
    margin-left: 3px;
}

/* Bottom Bar */
.footer-bottom {
    background-color: #000000;
    color: var(--white);
    font-size: 14px;
    border-top: 1px solid #989797;
}

/* Responsive */
@media (max-width: 991px) {
    /* .footer-top .row > div {
        text-align: center;
    } */

    .footer-logo {
        margin: 0 auto 20px;
    }

    .social-icons {
        justify-content: center !important;
    }

    .footer-title {
        margin-top: 25px;
    }
}

@media (max-width: 576px) {
    .footer-links a {
        font-size: 14px;
    }

    .footer-text {
        font-size: 13px;
    }

    .social-icons .social-link {
        width: 36px;
        height: 36px;
    }

    .profile-popup {
        top: 28% !important;
        right: 7px !important;
    }
}

/* ====== HERO SECTION ====== */
.hero-banner {
    /* border-radius: 20px; */
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    /* border-radius: 30px; */
}

/* Dark overlay for better contrast */
.hero-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 70px;
}

.hero-content h2 {
    font-size: 60px;
    font-weight: 400;
}

.hero-content h1 span {
    font-weight: 400 !important;
    font-size: 60px;
    line-height: 20px;
}

.hero-content h1 {
    font-size: 100px;
    font-weight: 600;
    line-height: 90px;
}

.hero-content p {
    font-size: 35px;
    font-weight: 500;
}

.btn-pink {
    background-color: var(--accent);
    color: var(--white);
    border-radius: 30px !important;
    padding: 12px 28px !important;
    font-weight: 500;
    font-size: 20px;
    border: none;
    transition: all 0.3s ease;
}

.btn-pink:hover {
    background-color: var(--accent-hover);
    color: var(--white);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1199px) {
    .hero-content {
        padding: 50px 50px;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .hero-content h1 {
        font-size: 50px;
    }

    .hero-content p {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .hero-banner {
        min-height: 380px;
        /* border-radius: 15px; */
    }

    .hero-content {
        padding: 40px;
    }

    .hero-content h1 {
        font-size: 44px;
    }
}

@media (max-width: 767px) {
    .hero-banner {
        min-height: 320px;
    }

    .hero-content {
        padding: 30px 25px;
        text-align: left;
    }

    .hero-content h2 {
        font-size: 24px !important;
    }

    .hero-content h1 {
        font-size: 68px;
    }

    .hero-content h1 span {
        font-size: 20px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .btn-pink {
        padding: 6px 12px !important;
        font-size: 11px;
    }

    .logo-badge {
        width: 60px !important;
        height: 60px !important;
    }

    .rating-badge .bi-star-fill {
        font-size: 14px !important;
    }

    .rating-badge {
        font-size: 12px !important;
        padding: 3px 10px !important;
    }

    .header-text h2 {
        font-size: 24px !important;
        font-weight: 700 !important;
        line-height: 37px !important;
    }

    .section-padding {
        margin-top: 30px !important;
        margin-bottom: 30px !important;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        min-height: 230px !important;
    }

    .hero-content h1 {
        font-size: 30px !important;
        line-height: 30px !important;
    }
.section-padding {
    margin-top: 1px !important;
    margin-bottom: 5px !important;
}
    .hero-content p {
        font-size: 15px;
    }

    .social-icons {
        justify-content: center !important;
    }
}

.section-padding {
    margin-top: 65px;
    margin-bottom: 65px;
}

/* ====== Restaurant Card ====== */
.restaurant-card {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Image */
.restaurant-card .card-img img {
    width: 100%;
    height: 288px;
    object-fit: fill;
}

/* Logo badge inside image */
.logo-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 50%;
    z-index: 99;
}

.logo-badge img {
    width: 70%;
}

/* Rating */
.rating-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fff;
    color: #16254c;
    font-weight: 600;
    font-size: 20px;
    border-radius: 30px;
    padding: 3px 15px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating-badge .bi-star-fill {
    color: #ff9931;
    font-size: 26px;
}

.header-text h2 {
    font-size: 50px;
    font-weight: 700 !important;
    line-height: 37px;
    text-transform: uppercase;
}

/* Card Body */
.restaurant-card .card-body {
    padding: 0px 0px 0px;
}

/* Info Section */
.restaurant-name {
    font-size: 35px;
    font-weight: 600;
    color: #000;
    /* overflow: hidden; */
    /* width: 466px; */
    /* text-wrap: nowrap; */
    /* text-overflow: ellipsis; */
}

.restaurant-info .text-muted {
    color: #333333 !important;
    font-size: 20px;
    font-weight: 500;
}

.restaurant-info .text-secondary {
    color: #555555 !important;
    font-size: 18px;
    font-weight: 400;
}

/* Favorite Button (inside card body, top-right inline) */
.fav-btn {
    border: 0;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e1e1e;
    font-size: 36px;
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 991px) {
    .restaurant-card .card-img img {
        height: 200px;
    }

    .restaurant-name {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .restaurant-card .card-img img {
        height: 100%;
    }

    .restaurant-name {
        font-size: 16px;
    }

    .fav-btn {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .owl-nav button {
        width: 30px;
        height: 30px;
        font-size: 10px !important;
    }

    .btn-pay {
        padding: 14px 0 !important;
        font-size: 17px !important;
    }
}

/* Owl Carousel spacing */
.deals-carousel .item {
    padding: 5px;
}

.owl-nav {
    z-index: 9999 !important;
    position: absolute;
    width: 100%;
    top: 40%;
}

/* Nav Arrows */
.owl-nav button {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: #fff !important;
    border: 1px solid #aaaaaa !important;
    width: 67px;
    height: 67px;
    border-radius: 50%;
    font-size: 25px !important;
    color: #000 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    box-shadow: -5px 0px 8.7px 0px #00000040;
}

.owl-nav button:hover {
    background: var(--accent) !important;
    color: #fff !important;
    border-color: var(--accent) !important;
}

.owl-nav .owl-prev {
    left: -25px;
}

.owl-nav .owl-next {
    right: -25px;
}

/* Hide disabled arrow */
.owl-nav button.disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* Dots hide */
.owl-dots {
    display: none !important;
}

/* Responsive arrow fix */
@media (max-width: 991px) {
    .owl-nav .owl-prev {
        left: 0;
    }

    .owl-nav .owl-next {
        right: 0;
    }
}

@media (max-width: 767px) {
    .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 16px !important;
    }
}

/* Main Box */
.app-box {
    background: var(--green-line);
    border-radius: 20px;
    min-height: 300px;
    padding: 47px 84px 0px 55px !important;
}

/* Left Side */
.app-left {
    flex: 1.2;
}

.app-left h2 {
    font-size: 50px;
    line-height: 48px;
}

.app-left .text-white.mb-4 {
    font-size: 40px;
    line-height: 48px;
}

.app-left .fw-semibold {
    font-size: 30px;
    line-height: 48px;
}

.store-btn {
    cursor: pointer;
}

.qr-img {
    width: 165px;
}

/* Right Side Image */
.app-right {
    flex: 1;
    text-align: right;
    height: 100%;
    margin-top: auto !important;
}

.app-phone-img {
    width: 520px;
    max-width: 100%;
}

/* Responsive */
@media (max-width: 991px) {
    .app-phone-img {
        width: 260px;
        margin: 0 auto;
        display: block;
    }

    .app-download-section .app-box {
        padding: 30px 25px 0px 19px !important;
        flex-direction: column;
    }
}

@media (max-width: 1320px) {
    .app-download-section .app-box {
        padding: 30px 25px 0px 19px !important;
    }

    .app-left h2 {
        font-size: 37px !important;
    }

    .app-left .text-white.mb-4 {
        font-size: 15px;
        line-height: 27px;
    }
}

@media (max-width: 576px) {
    .app-left h2 {
        font-size: 20px !important;
        line-height: 31px !important;
    }

    .store-btn {
        height: 42px;
    }

    .qr-img {
        width: 70px;
    }

    .store-address {
        max-width: 102px !important;
    }
}

/* Overlay Blur Background */
.notify-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    display: none;
    z-index: 9980;
}

/* Popup Box */
.notify-popup {
    position: fixed;
    top: 20px;
    left: 25%;
    transform: translateX(-50%);
    width: 472px;
    background: #fff;
    border-radius: 6px;
    padding: 23px 28px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    z-index: 9990;
    display: none;
}

/* Close Button */
.notify-popup .close-btn {
    position: absolute;
    top: 3px;
    right: 5px;
    border: none;
    background: transparent;
    font-size: 13px;
    cursor: pointer;
    opacity: 0.8;
}

.notify-popup .close-btn:hover {
    opacity: 1;
}

/* Icon */
.bell-icon {
    font-size: 22px;
    color: #000;
    margin-top: 4px;
}

/* Text */
.notify-popup .title {
    font-size: 14px;
    color: #222;
    margin: 0;
    line-height: 1.4;
}

/* Buttons */
.notify-actions button {
    border-radius: 6px;
}

.notify-actions button {
    background-color: #efefef;
    border: 1px solid #555555 !important;
    font-size: 15px;
    border-radius: 3px;
    padding: 4px 20px;
}

.btn-pink {
    background: var(--accent);
    color: white;
    border: none;
}

.btn-pink:hover {
    background: #e63538;
}

/* ===========================
   BASE POPUP STYLES (YOUR CODE)
   =========================== */

/* Overlay Blur */
.location-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(5px);
    z-index: 9980;
    display: none;
}

/* Popup Box */
.location-popup {
    width: 900px;
    max-width: 90%;
    background: #fff;
    border-radius: 14px;
    padding: 80px 52px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    z-index: 9990;
    display: none;
    max-height: 90vh;
    overflow-y: scroll;
}

/* Scrollbar container */
.location-popup::-webkit-scrollbar {
    width: 4px;
}

/* Track */
.location-popup::-webkit-scrollbar-track {
    background: #e8e8e8;
    border-radius: 10px;
}

/* Thumb */
.location-popup::-webkit-scrollbar-thumb {
    background: #b5b5b5;
    border-radius: 10px;
    border: 2px solid #e8e8e8;
}

/* Thumb hover */
.location-popup::-webkit-scrollbar-thumb:hover {
    background: #8d8d8d;
}

.center-section {
    border-top: 1px solid #aeaeae;
    border-bottom: 1px solid #aeaeae;
    padding: 39px 0;
    margin: 30px 0;
}

.search-box-last {
    border: 1px solid #1e1e1e;
    padding: 17px;
    margin: 41px 0;
}

.search-box-last i {
    font-size: 25px;
}

.center-section strong {
    font-size: 32px !important;
    color: #000000;
    font-weight: 600;
}

.center-section button {
    font-size: 24px;
    padding: 10px 25px;
    border-radius: 2px;
    color: #ec4c6a;
    border-color: #ec4c6a;
}

.center-section .text-muted {
    font-size: 24px !important;
    font-weight: 400;
    color: #555555 !important;
}

.location-popup h4 {
    font-size: 36px;
}

.location-popup .slider-text span {
    font-size: 24px;
    padding: 20px 2px 10px 18px;
}

/* Close Button */
.loc-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    border: none;
    background: transparent;
    font-size: 20px;
    cursor: pointer;
}

/* Big green icon */
.location-icon {
    background: #edffe3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 40px;
}

.location-icon i {
    color: var(--green-line);
    font-size: 48px;
}

.location-popup .btn-success {
    background-color: var(--accent);
    width: fit-content !important;
    border: 0;
    margin: auto;
    display: flex;
    padding: 19px 213px !important;
    font-size: 36px;
    font-weight: 600;
}

/* RESET default Bootstrap spacing */
.form-range {
    padding: 0 !important;
    height: 30px;
    /* enough room for big thumb */
}

/* Track */
.form-range::-webkit-slider-runnable-track {
    height: 14px;
    background: #aeaeae;
    border-radius: 4px;
    margin: 0;
    /* remove your margin:10px */
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    /* center track vertically */
}

/* Thumb */
.form-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    background-color: var(--accent);
    width: 49px;
    height: 49px;
    border-radius: 50%;
    margin-top: -20px;
    /* center thumb over 8px track */
    cursor: pointer;
    position: relative;
}

/* ===========================
   RESPONSIVE FIXES
   =========================== */

/* ------- Large Tablets (max 991px) ------- */
@media (max-width: 991px) {
    .location-popup {
        width: 700px;
        padding: 60px 40px;
    }

    .location-popup h4 {
        font-size: 30px;
    }

    .center-section strong,
    .center-section .text-muted {
        font-size: 22px !important;
    }

    .search-box-last {
        padding: 14px;
    }

    .location-popup .btn-success {
        padding: 18px 140px !important;
        font-size: 28px;
    }

    .location-icon {
        padding: 30px;
    }

    .location-icon i {
        font-size: 40px;
    }
}

/* ------- Tablets (max 768px) ------- */
@media (max-width: 768px) {
    .location-popup {
        width: 550px;
        padding: 50px 30px;
    }

    .location-popup h4 {
        font-size: 26px;
    }

    .center-section {
        padding: 7px 0 !important;
        margin: 10px 0;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .center-section strong,
    .center-section .text-muted {
        font-size: 20px !important;
    }

    .center-section button {
        font-size: 16px;
        padding: 6px 15px;
        margin: 0 !important;
    }

    .search-box-last {
        padding: 0px !important;
        margin: 10px 0 !important;
        font-size: 10px !important;
    }

    .search-box-last i {
        font-size: 22px;
    }

    .location-popup .btn-success {
        padding: 16px 120px !important;
        font-size: 24px;
    }

    .location-icon {
        padding: 25px;
    }

    .location-icon i {
        font-size: 36px;
    }

    .location-popup .slider-text span {
        font-size: 14px;
    }
}

/* ------- Phones (max 576px) ------- */
@media (max-width: 576px) {
    .location-popup {
        width: 95%;
        padding: 40px 20px;
    }

    .location-popup h4 {
        font-size: 22px;
        text-align: center;
    }

    .center-section {
        padding: 25px 0;
    }

    .center-section strong,
    .center-section .text-muted {
        font-size: 18px !important;
        text-align: center;
        display: block;
    }

    .center-section button {
        font-size: 18px;
        padding: 8px 18px;
        margin-top: 10px;
    }

    .search-box-last {
        padding: 10px;
    }

    .search-box-last i {
        font-size: 20px;
    }

    .location-popup .btn-success {
        padding: 14px 80px !important;
        font-size: 20px;
    }

    .location-icon {
        padding: 20px;
        margin: auto;
    }

    .location-icon i {
        font-size: 30px;
    }
}

/* ------- Small Phones (max 400px) ------- */
@media (max-width: 400px) {
    .location-popup {
        padding: 30px 15px;
    }

    .location-popup h4 {
        font-size: 20px;
    }

    .center-section strong,
    .center-section .text-muted {
        font-size: 16px !important;
    }

    .center-section button {
        font-size: 16px;
        padding: 6px 15px;
    }

    .location-popup .btn-success {
        padding: 12px 50px !important;
        font-size: 15px !important;
    }

    .location-box p.text-muted {
        font-size: 9px !important;
    }

    .search-box-last {
        padding: 8px;
    }

    .search-box-last i {
        font-size: 18px;
    }

    .location-icon {
        padding: 18px;
    }

    .location-icon i {
        font-size: 26px;
    }
}

.map-ui-section {
    padding: 40px;
}

.map-wrapper {
    position: relative;
    width: 100%;
    margin: auto;
    height: 1230px;
    /* background: url('assets/images/map.png'); */
    background: url("/assets/webfrontend/images/map.png");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.map-locator-btn {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: #ffffff;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #444;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    z-index: 20;
    transition: 0.2s ease;
}

.map-locator-btn:hover {
    background: #f2f2f2;
}

/* ---------- BASE DESKTOP STYLES (your original) ---------- */

/* Location Card */
.location-info-card {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 25px 23px;
    border-radius: 10px;
    box-shadow: 0px 4px 11px #00000030;
    width: fit-content;
    z-index: 10;
}

.location-info-card h6 {
    color: #000;
    font-size: 32px;
    line-height: 36px;
}

.location-info-card p {
    color: #555;
    font-size: 24px;
}

/* Radius circle */
.radius-circle {
    width: 240px;
    height: 240px;
    background: rgba(0, 128, 255, 0.25);
    border: 3px solid rgba(0, 128, 255, 0.4);
    border-radius: 50%;
    position: absolute;
    top: -120px;
    left: -120px;
}

/* Map Center */
.map-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Pin in middle */
.pin-marker {
    position: absolute;
    top: -25px;
    left: -12px;
    font-size: 38px;
    color: red;
}

/* Blue Bubbles */
.bubble {
    position: absolute;
    padding: 33px 15px;
    border-radius: 50%;
    background: #123768;
    color: #fff;
    font-weight: 600;
    font-size: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Desktop positions */
.b1 {
    top: 55.7%;
    left: 30%;
}

.b2 {
    top: 45.7%;
    left: 40.6%;
}

.b3 {
    top: 34.2%;
    left: 35%;
}

.b4 {
    top: 30%;
    left: 41.6%;
}

.b5 {
    top: 37.1%;
    left: 35.8%;
}

.b6 {
    top: 45.7%;
    right: 23.3%;
}

.b7 {
    top: 32.8%;
    right: 29.1%;
}

.b8 {
    top: 40%;
    left: 61.6%;
}

.b9 {
    bottom: 21.4%;
    left: 37.5%;
}

.b10 {
    top: 41.4%;
    right: 10%;
}

.b11 {
    top: 28.5%;
    right: 12.5%;
}

.b12 {
    bottom: 37.1%;
    right: 15%;
}

/* Save Button */
.btn-save-location {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green-line);
    color: #fff;
    border: none;
    padding: 16px 198px;
    font-size: 36px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* ---------- RESPONSIVE FIXES BELOW ---------- */

/* 📌 Large Tablets – reduce bubble size slightly */
@media (max-width: 1200px) {
    .bubble {
        padding: 26px 12px;
        font-size: 26px;
    }

    .radius-circle {
        width: 180px;
        height: 180px;
        top: -90px;
        left: -90px;
    }

    .location-info-card h6 {
        font-size: 26px;
    }

    .location-info-card p {
        font-size: 20px;
    }
}

/* 📌 Tablets (max 992px) */
@media (max-width: 992px) {
    .bubble {
        padding: 22px 10px;
        font-size: 22px;
    }

    /* shrink radius */
    .radius-circle {
        width: 150px;
        height: 150px;
        top: -75px;
        left: -75px;
    }

    /* adjust map center offset smaller */
    .pin-marker {
        font-size: 32px;
        top: -20px;
        left: -10px;
    }

    .btn-save-location {
        padding: 14px 150px;
        font-size: 30px;
    }
}

/* 📌 Mobile (max 768px) */
@media (max-width: 768px) {
    .map-ui-section {
        padding: 0;
    }

    /* shrink bubbles */
    .bubble {
        padding: 15px 10px;
        font-size: 18px;
    }

    /* shrink radius circle */
    .radius-circle {
        width: 120px;
        height: 120px;
        top: -60px;
        left: -60px;
    }

    /* shrink location card */
    .location-info-card {
        padding: 18px;
    }

    .location-info-card h6 {
        font-size: 22px;
    }

    .location-info-card p {
        font-size: 16px;
    }

    /* fix SAVE button */
    .btn-save-location {
        padding: 12px 60px;
        font-size: 22px;
        border-radius: 40px;
    }

    .map-wrapper {
        height: 600px;
        background-size: cover;
    }

    .notify-popup {
        left: 50%;
        width: 295px;
        padding: 13px 18px;
    }
}

/* 📌 Small Mobile (max 480px) */
@media (max-width: 480px) {
    .bubble {
        padding: 10px 6px;
        font-size: 14px;
    }

    .radius-circle {
        width: 95px;
        height: 95px;
        top: -48px;
        left: -48px;
    }

    .pin-marker {
        font-size: 26px;
        top: -15px;
        left: -8px;
    }

    .location-info-card {
        padding: 14px;
    }

    .location-info-card h6 {
        font-size: 18px;
    }

    .location-info-card p {
        font-size: 14px;
    }

    .btn-save-location {
        padding: 10px 40px;
        font-size: 18px;
    }
}

/* Overlay */
.store-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    z-index: 9980;
    display: none;
}

/* Popup Box */
.store-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 720px;
    max-width: 92%;
    background: #fff;
    transform: translate(-50%, -50%);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    z-index: 9990;
    display: none;
}

.store-popup-padding {
    margin: 29px 27px;
}

/* Close Button */
.store-close {
    position: absolute;
    right: 18px;
    top: 18px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #555;
}

.store-title {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
}

/* Search Box */
.store-search {
    position: relative;
    margin-bottom: 22px;
}

.store-search i {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #555;
    font-size: 21px;
}

.store-search input {
    width: 100%;
    border: 1px solid #555555;
    border-radius: 6px;
    padding: 14px 10px 13px 23px;
    font-size: 18px;
}

/* Tabs */
.store-tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
    background: #ededed;
}

.store-tabs .tab-btn {
    flex: 1;
    padding: 17px;
    font-size: 20px;
    border: none;
    background: none;
    cursor: pointer;
    font-weight: 500;
    color: #555;
}

.store-tabs .tab-btn.active {
    color: var(--accent);
    border-bottom: 2px solid var(--accent);
}

/* Store list items */
.store-list {
    max-height: 360px;
    overflow-y: auto;
    padding-right: 5px;
}

.store-item {
    display: flex;
    align-items: flex-start;
    padding: 25px 0;
    border-bottom: 1px solid #aeaeae;
}

.icon-box {
    margin-right: 4px;
    padding: 5px;
    border-radius: 50%;
}

.icon-box i {
    color: var(--accent);
    font-size: 25px;
}

.store-text strong {
    font-size: 18px;
    color: #000;
}

.store-text p {
    margin: 4px 0 0;
    font-size: 18px;
    color: #555555;
}

.fav-icon {
    margin-left: auto;
    border: none;
    background: none;
    cursor: pointer;
}

.fav-icon i {
    font-size: 28px;
    color: #000;
}

.fav-icon i:hover {
    color: var(--accent);
}

/* Scrollbar */
.store-list::-webkit-scrollbar {
    width: 6px;
}

.store-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .store-popup {
        padding: 5px;
    }

    .store-title {
        font-size: 22px;
    }

    .store-popup-padding {
        margin: 16px 4px;
    }

    .fav-icon i {
        font-size: 17px;
    }

    .store-tabs .tab-btn {
        padding: 7px;
        font-size: 17px;
    }

    .store-text strong {
        font-size: 14px;
    }

    .store-text p {
        font-size: 12px;
    }
}

#realMap {
    width: 100%;
    height: 500px;
    border: 2px solid #d2d2d2;
    overflow: hidden;
}

/* Blue radius overlay */
.leaflet-interactive-circle {
    fill: rgba(0, 114, 255, 0.25) !important;
    stroke: rgba(0, 114, 255, 0.4) !important;
    stroke-width: 3px !important;
}

/* Red map marker */
.custom-marker {
    background: red;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid white;
}

/* Overlay */
.filter-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(5px);
    display: none;
    z-index: 9900;
}

/* Popup */
.filter-popup {
    width: 460px;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    position: fixed;
    top: 50%;
    left: 50%;
    max-height: 85vh;
    overflow-y: scroll;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 9910;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
}

/* Banner Container */
.page-banner {
    width: 100%;
    height: 482px;
    border-radius: 30px;
    overflow: hidden;
    /* background: url("assets/images/banner2.png") center/cover no-repeat; */
    background: url("/assets/webfrontend/images/banner2.png") center/cover
        no-repeat;
    position: relative;
}

.open-filter i {
    padding: 11px 23px;
}

/* Dark Overlay */
.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Title */
.banner-title {
    color: white;
    font-size: 70px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Breadcrumb */
.breadcrumb-box {
    display: flex;
    gap: 10px;
    align-items: center;
}

.breadcrumb-box a,
.breadcrumb-box p {
    color: white;
    font-size: 40px;
    font-weight: 600;
    margin: 0;
    text-decoration: none;
}

.breadcrumb-box span {
    color: white;
    font-size: 41px;
    font-weight: 400;
    padding: 0px 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .page-banner {
        height: 180px;
    }

    .banner-title {
        font-size: 18px;
    }

    .breadcrumb-box span {
        font-size: 22px;
        padding: 0px 0px;
    }

    .breadcrumb-box a,
    .breadcrumb-box p {
        font-size: 16px;
    }
}

/* Header */
.filter-popup .popup-header h4 {
    font-weight: 600;
    font-size: 21px;
    margin: 0;
}

.filter-popup .reset-btn {
    color: #000000;
    font-size: 24px;
    text-decoration: none;
}

.filter-popup .close-filter {
    border: none;
    background: transparent;
    font-size: 20px;
}

/* Section Title */
.filter-popup .section-title {
    font-weight: 600;
    font-size: 24px;
    margin-top: 16px;
    margin-bottom: 6px;
    color: #000;
}

/* Toggle Buttons */
.filter-popup .toggle-btn {
    border: 1px solid #aeaeae;
    color: var(--accent);
    font-size: 20px;
    padding: 8px 45px;
    border-radius: 25px;
    background: #fff;
}

/* Chips */
.filter-popup .chips-box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.close-filter {
    position: absolute;
    color: #000;
    right: 2%;
    top: 2%;
}

.filter-popup .chip {
    border: 1px solid #aeaeae;
    color: var(--accent);
    font-size: 17px;
    padding: 1px 12px;
    border-radius: 25px;
    background: #fff;
}

.filter-popup .chip.active {
    background: var(--accent);
    color: #fff;
}

/* Rating Chips */
.filter-popup .rating-chip {
    border: 1px solid #a1a1a1;
    padding: 3px 15px;
    border-radius: 25px;
    background: white;
    font-size: 13px;
    margin-bottom: 10px;
}

/* Slider */
.filter-popup .filter-range::-webkit-slider-thumb {
    width: 22px;
    height: 22px;
    background: var(--green-line);
    border-radius: 50%;
}

/* Footer Buttons */
.filter-popup .popup-footer {
    margin-top: 12px;
}

.filter-popup .btn-clear {
    flex: 1;
    border: 2px solid var(--accent);
    background: white;
    border-radius: 30px;
    font-weight: 600;
    color: var(--accent);
    padding: 5px;
    height: fit-content;
}

.filter-popup .btn-apply {
    flex: 1;
    background: var(--accent);
    color: white;
    padding: 6px 0;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    height: fit-content;
}

/* Responsive */
@media (max-width: 500px) {
    .filter-popup {
        width: 90%;
        padding: 20px;

        overflow-y: auto;
    }
}

.double-range-wrapper {
    position: relative;
    width: 100%;
    height: 40px;
}

/* Grey track */
.filter-popup .track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 8px;
    background: #d7d7d7;
    border-radius: 10px;
    transform: translateY(-50%);
}

/* Hide original slider track */
.filter-popup .thumb {
    position: absolute;
    width: 100%;
    height: 40px;
    pointer-events: none;
    -webkit-appearance: none;
    background: none;
    margin: 0;
}

/* GREEN THUMB */
.filter-popup .thumb::-webkit-slider-thumb {
    -webkit-appearance: none;
    pointer-events: all;
    width: 30px;
    height: 30px;
    background: var(--green-line);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    cursor: grab;
}

/* Firefox */
.filter-popup .thumb::-moz-range-thumb {
    width: 30px;
    height: 30px;
    background: var(--green-line);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    cursor: grab;
}

/*** KEEP THUMBS OVER TRACK ***/
.filter-popup .thumb-left {
    z-index: 3;
}

.filter-popup .thumb-right {
    z-index: 2;
}

.filter-popup .bi-star-fill {
    color: #fbbc05;
    font-size: 24px;
}

.restaurant-slider .owl-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: block !important;
}

/* Dots style */
.restaurant-slider .owl-dots .owl-dot span {
    width: 24px;
    height: 24px;
    background: #d6d6d6 !important;
    border-radius: 50%;
    display: block;
    margin: 4px;
}

.restaurant-slider .owl-dot.active span {
    background: var(--accent) !important;
}

.restaurant-card .slider-img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: 20px !important;
}

/* ============================
   MENU TABS — CUSTOM STYLING
============================ */
.menu-section-ui .menu-tabs .nav-link {
    background: #FFE5E6;
    border-radius: 30px;
    padding: 6px 30px;
    /* margin-right: 30px; */
    /* font-weight: 500; */
    color: #000;
    font-size: 20px;
    box-shadow: 0px 0px 1.1px 0px #00000040;
    border: none;
    cursor: pointer;
    box-shadow: 0px 0px 1.1px 0px #00000040;
}

.menu-section-ui .menu-tabs .nav-link.active {
    background: #E63538 !important;
    color: #fff !important;
}

/* ============================
   MENU CARD
============================ */
.menu-section-ui .menu-card {
    border: 1px solid #000000;
    border-radius: 10px;
    padding: 16px;
    position: relative;
    background: #fff;
}

.menu-section-ui .menu-img {
    width: 100%;
    max-width: 150px;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.menu-section-ui .menu-title {
    font-size: 24px;
    font-weight: 600;
    color: #16254c;
    max-width: 90%;
}

.menu-section-ui .menu-desc {
    font-size: 18px;
    color: #555555;
    line-height: 1.3;
    margin-bottom: 0;
    max-width: 70%;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.menu-section-ui .menu-price {
    font-size: 24px;
    font-weight: 600;
    color: #16254c;
}

.menu-section-ui .menu-cal {
    position: absolute;
    top: 22px;
    right: 20px;
    color: #777;
    font-size: 18px;
}

/* ============================
   ADD ITEM / QUANTITY UI
============================ */
.menu-section-ui .add-item-btn {
    background: var(--accent);
    border: none;
    padding: 8px 25px;
    border-radius: 50px;
    color: #fff;
    font-weight: 500;
    font-size: 24px;
}

/* Qty Box */
.menu-section-ui .qty-box {
    background: var(--accent);
    padding: 6px 8px;
    border-radius: 25px;
    display: flex;
    gap: 12px;
    align-items: center;
    color: #fff;
}

.menu-section-ui .menu-tabs {
    /* background-color: #ededed; */
    padding: 16px 24px;
}

.menu-section-ui .qty-btn {
    border: none;
    background: transparent;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    border: 3px solid #fff;
    border-radius: 50%;
    padding: 0px 9px;
    cursor: pointer;
}

.menu-section-ui .qty-count {
    font-size: 23px;
    font-weight: 600;
    padding: 1px 12px;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 576px) {
    .menu-section-ui .menu-card {
        flex-direction: column;
        /* text-align: center; */
    }

    .menu-section-ui .menu-img {
        width: 140px;
        height: 140px;
    }

    .menu-section-ui .menu-cal {
        top: 8px;
        right: 10px;
    }
    .checkout-ui hr, .splitbill-ui hr, .ps-line {
        margin: 5px 0 !important;
    }
    .menu-section-ui .menu-tabs .nav-link {
        padding: 2px 14px;
        margin-right: 8px;
        font-size: 13px;
        margin-bottom: 10px;
    }
}

/* ========================
   RATING & REVIEWS UI
======================== */

.border-top {
    border-top: 4px solid #eeeeee !important;
    padding-top: 4%;
}

.rating-ui-section h3 {
    font-size: 48px;
}

/* LEFT SUMMARY */
.rating-ui-summary .summary-title {
    font-size: 20px;
    color: #555555;
    margin-bottom: 0;
    font-weight: 600;
}

.rating-ui-summary .summary-number {
    font-size: 36px;
    font-weight: 700;
    color: #555555;
}

/* Big star */
.rating-ui-star-big {
    font-size: 40px;
    color: #ff9931;
}

.rating-ui-bars {
    border-left: 2px solid #aeaeae;
    padding-left: 5%;
}

/* ========================
   RATING BARS
======================== */
.rating-ui-bars .bar-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}

.rating-ui-bars .bar-track {
    width: 300px;
    height: 22px;
    background: #d9d9d9;
    border-radius: 0;
    overflow: hidden;
}

.rating-ui-bars .bar-fill {
    height: 100%;
    background: #ff9931;
}

.rating-ui-bars .bar-label {
    font-size: 20px;
    color: #555555;
    min-width: 60px;
}

.rating-ui-review .bi-star-fill {
    color: #ff9931 !important;
}

/* ========================
   REVIEW ITEM
======================== */
.rating-ui-review .review-img {
    width: 102px;
    height: 102px;
    border-radius: 50%;
    object-fit: cover;
}

.rating-ui-review .review-meta {
    color: #555555;
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
}

.rating-ui-review .review-text {
    color: #000000;
    font-size: 20px;
}

/* ========================
   VIEW MORE BUTTON
======================== */
.rating-ui-viewmore {
    padding: 10px 35px;
    border: 2px solid var(--green-line);
    background: white;
    color: var(--green-line);
    border-radius: 30px;
    font-weight: 500;
    font-size: 24px;
}

.rating-ui-viewmore:hover {
    background: var(--green-line);
    color: #fff;
}

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 768px) {
    .rating-ui-bars .bar-track {
        width: 200px;
    }

    .restaurant-slider .owl-dots .owl-dot span {
        width: 14px;
        height: 14px;
    }

    .menu-section-ui .add-item-btn {
        padding: 6px 14px;
        font-size: 16px;
    }

    .menu-section-ui .menu-desc {
        max-width: 100%;
    }

    .menu-section-ui .menu-desc {
        font-size: 13px;
    }

    .menu-section-ui .menu-title {
        font-size: 16px;
    }

    .rating-ui-section h3 {
        font-size: 29px;
    }

    .rating-ui-summary .summary-number {
        font-size: 23px;
    }

    .rating-ui-star-big {
        font-size: 23px;
        margin-bottom: 16px;
    }

    .rating-ui-review .review-text {
        font-size: 12px;
    }

    .rating-ui-review .review-meta {
        font-size: 16px;
    }
}

/* ==========================
    ADD-ON UI (SAFE PREFIXED)
========================== */

.addon-ui-title {
    font-size: 18px !important;
    font-weight: 600;
    color: #16254c;
}

/* Quantity Box */
.addon-ui-qtybox {
    background: #e7f6d8;
    padding: 10px 20px;
    border-radius: 30px;
    width: fit-content;
}

.addon-ui-qtybox {
    background: var(--green-line);
    padding: 6px 8px;
    border-radius: 25px;
    display: flex;
    gap: 12px;
    align-items: center;
    color: #fff;
}

.addon-ui-qtybox .menu-tabs {
    background-color: #ededed;
    padding: 16px 24px;
}

.addon-ui-qtybox .qty-btn {
    border: none;
    background: transparent;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    border: 3px solid #fff;
    border-radius: 50%;
    padding: 0px 8px;
    cursor: pointer;
}

.addon-ui-qtybox .qty-count {
    font-size: 23px;
    font-weight: 600;
    padding: 1px 12px;
}

.addon-ui-qtybox .qty-count {
    font-size: 18px;
    font-weight: 600;
}

.addon-ui-group {
    padding-left: 20px;
}

/* Group Titles */
.addon-ui-group h6 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

/* Custom Checkbox */
.addon-ui-check {
    display: block;
    margin-bottom: 21px;
    font-size: 18px;
    color: #555555;
    cursor: pointer;
    display: flex;
    align-items: center;
    /* vertical center */
    gap: 10px;
    /* space between checkbox + text */
}

.addon-ui-check input {
    margin-right: 6px;
    width: 24px;
    height: 23px;
}

/* Textarea */
.addon-ui-textarea {
    width: 100%;
    height: 139px;
    border: 1px solid #d7d7d7;
    border-radius: 6px;
    padding: 12px;
    font-size: 20px;
    color: #333;
    background-color: transparent;
}

/* Item Name */
.addon-ui-item-name {
    font-size: 20px;
    font-weight: 400;
    color: #000;
}

.addon-price {
    font-size: 32px;
    color: #1e1e1e;
}

/* Add to Cart Button */
.addon-ui-cart-btn {
    width: 100%;
    background: var(--accent) !important;
    border: none;
    color: #fff !important;
    font-weight: 600;
    padding: 8px 0;
    border-radius: 30px;
    font-size: 18px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .addon-ui-group {
        margin-bottom: 25px;
    }

    .checkout-ui-title {
        font-size: 32px !important;
    }

    .checkout-ui-subtext,
    .checkout-ui-timing {
        font-size: 14px !important;
    }

    .checkout-ui-rating {
        font-size: 20px !important;
    }

    .checkout-ui-logo {
        width: 80px !important;
        height: 80px !important;
    }

    .checkout-ui-heading {
        font-size: 20px !important;
    }

    .checkout-ui-add-item {
        padding: 10px 18px !important;
        font-size: 15px !important;
    }

    .checkout-ui-method {
        padding: 10px 44px !important;
        font-size: 14px !important;
    }

    .checkout-ui-apply-btn {
        padding: 8px 22px !important;
        font-size: 14px !important;
    }
}

/* HEADER */
.checkout-ui-logo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
}

.checkout-ui-title {
    font-size: 45px;
    font-weight: 700;
    color: #000;
}

.checkout-ui-subtext {
    font-size: 24px;
    color: #333333;
    font-weight: 500;
}

.checkout-ui-timing {
    font-size: 20px;
    color: #555555;
    font-weight: 500;
}

.checkout-ui-rating {
    font-size: 36px;
    font-weight: 500;
}

.checkout-ui-rating i {
    color: #fbbc05;
}

/* ORDER BOX */
.checkout-ui-order-box {
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    position: relative;
}

.checkout-ui-order-img {
    width: 90px;
    height: 90px;
    border-radius: 10px;
    object-fit: cover;
}

.checkout-ui-item-title {
    font-size: 16px;
    font-weight: 600;
}

.checkout-ui-item-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.checkout-ui-price {
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.checkout-ui-cal {
    position: absolute;
    right: 12px;
    top: 8px;
    font-size: 12px;
    color: #777;
}

.checkout-ui-customize {
    position: absolute;
    bottom: 8px;
    right: 15px;
    font-size: 13px;
    text-decoration: underline;
    color: #6eb049;
}

/* QTY BOX */
.checkout-ui-qty-box {
    background: #e7f6d8;
    padding: 5px 15px;
    border-radius: 25px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.checkout-ui-qty-btn {
    border: none;
    background: none;
    font-size: 20px;
    font-weight: 600;
    color: #6eb049;
}

.checkout-ui-qty {
    font-size: 15px;
    font-weight: 600;
}

/* BUTTONS */
.checkout-ui-add-item {
    background: #e63538;
    color: white;
    padding: 12px 72px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    font-size: 29px;
}

/* PICKUP METHOD */
.checkout-ui-method {
    padding: 10px 69px;
    border-radius: 50px;
    border: 1px solid var(--accent);
    background: white;
    color: var(--accent);
    font-size: 1.8rem;
    font-weight: 600;
}

.checkout-ui-method.active {
    background: var(--accent);
    color: white;
}

.checkout-ui-schedule-time {
    font-size: 20px;
    color: #555555;
    margin-top: 20px;
}

/* COUPON */
.checkout-ui-coupon-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #1e1e1e;
    border-radius: 6px;
    font-size: 20px;
}

.checkout-ui-apply-btn {
    background: #e63538;
    color: #fff;
    padding: 10px 44px;
    border-radius: 6px;
    border: none;
    font-weight: 500;
    font-size: 36px;
    height: 100%;
    margin-left: 15px;
}

/* BILL */
.checkout-ui-heading {
    font-size: 45px;
    font-weight: 700;
    color: #000000;
}

.checkout-ui-bill-table td {
    padding: 3px 48px 10px 6px;
    font-size: 18px;
    color: #555555;
}

.checkout-ui-total {
    font-size: 24px;
    font-weight: 700;
    color: #16254c;
}

.checkout-ui-total span {
    float: right;
}

/* PAY BUTTONS */
.checkout-ui-btn-row button {
    flex: 1;
    padding: 7px 0;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid transparent;
    font-size: 17px;
}

.checkout-ui-pay {
    background: var(--accent);
    color: white;
}

.checkout-ui-split {
    background: white;
    border: 2px solid var(--accent) !important;
    color: var(--accent);
}

/* RESPONSIVE */
@media (max-width: 576px) {
    .checkout-ui-order-box {
        flex-direction: column;
    }

    .checkout-ui-customize {
        position: static;
        margin-top: 10px;
    }

    .checkout-ui-cal {
        position: static;
        margin-bottom: 10px;
    }

    .sb-part-count {
        font-size: 13px !important;
    }

    .splitbill-ui .sb-title {
        font-size: 22px !important;
    }

    .splitbill-ui .sb-total {
        font-size: 20px !important;
    }

    .splitbill-ui .sb-subtitle {
        font-size: 22px !important;
    }

    .splitbill-ui .sb-date {
        font-size: 15px !important;
    }

    .splitbill-ui .sb-logo {
        width: 86px !important;
    }

    .splitbill-ui .sb-split-btn {
        padding: 11px 0 !important;
        font-size: 18px !important;
    }
}

.oi-customize {
    font-size: 20px;
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline;
}

.checkout-ui hr,
.splitbill-ui hr,
.ps-line {
    border: 3px solid #d7d7d7;
    margin: 29px 0;
}

/* ============= SCHEDULE UI WRAPPER ============= */
.schedule-ui {
}

/* Overlay */
.schedule-ui .schedule-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    display: none;
    z-index: 9990;
}

/* Popup */
.schedule-ui .schedule-popup {
    width: 600px;
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    border: 2px solid #1a73e8;
    /* Blue border */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 9999;
}

/* Header */
.schedule-ui .sch-title {
    font-size: 34px;
    font-weight: 600;
}

.schedule-ui .sch-reset {
    font-size: 18px;
    margin-left: auto;
    color: #000;
    text-decoration: none;
}

.schedule-ui .sch-close {
    font-size: 24px;
    border: none;
    background: none;
    margin-left: 15px;
    cursor: pointer;
}

/* Section Title */
.schedule-ui .sch-sub {
    font-size: 24px;
    font-weight: 600;
}

/* Calendar Grid */
.schedule-ui .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-top: 15px;
}

.schedule-ui .calendar-grid div {
    text-align: center;
    padding: 13px 7px;
    cursor: pointer;
    border: 1px solid #e0e0e0;
    font-size: 14px;
    color: #333333;
    border-right: 0;
    border-bottom: 0;
}

.schedule-ui .calendar-grid .active {
    border: 1px solid #ec4c6a;
    color: #ec4c6a;
    border-radius: 50%;
}

/* Time Selector */
.schedule-ui .time-select-row {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    border: 1px solid #ccc;
}

.schedule-ui .time-box {
    width: 30%;
    text-align: center;
    border-left: 1px solid #ccc;
    padding: 10px 0;
}

.schedule-ui .time-btn {
    border: none;
    background: none;
    font-size: 16px;
    width: 100%;
    cursor: pointer;
}

.schedule-ui .time-val {
    font-size: 18px;
    font-weight: 600;
    padding: 6px 0;
}

.schedule-ui .time-val span:first-child {
    color: var(--accent);
}

/* Save Button */
.schedule-ui .sch-save {
    background: var(--green-line);
    color: #fff;
    border-radius: 50px;
    border: none;
    padding: 11px 25%;
    margin-top: 25px;
    font-size: 32px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 21px auto;
}

/* Responsive */
@media (max-width: 480px) {
    .schedule-ui .schedule-popup {
        width: 95%;
    }
}

/* LOGO */
.splitbill-ui .sb-logo {
    width: 170px;
}

/* Title */
.splitbill-ui .sb-title {
    font-size: 24px !important;
    font-weight: 700;
    color: #000;
}

.splitbill-ui .sb-date {
    color: #333333;
    font-size: 24px;
}

/* Total Bill */
.splitbill-ui .sb-total {
    font-size: 20px;
    font-weight: 600;
    /* margin-bottom: 20px; */
    color: #16254c;
}

/* Participant Box */
.splitbill-ui .sb-box {
    border: 1px solid #555555;
    padding: 12px 18px;
    border-radius: 5px;
}

/* Avatars */
.splitbill-ui .sb-avatars img,
.splitbill-ui .sb-avatars .more-count {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: -20px;
    border: 2px solid #fff;
}

.splitbill-ui .sb-avatars .more-count {
    background: #6c757d;
    color: #fff;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Buttons */
.splitbill-ui .sb-add-btn {
    background: transparent;
    border: none;
    color: var(--accent);
    border: 1px dotted var(--accent);
    width: 38px;
    height: 38px;
    border-radius: 6px;
    font-size: 34px;
    line-height: 0;
}

.splitbill-ui .sb-reset-btn {
    border: 0;
    background: none;
}

.sb-part-count {
    font-size: 18px;
}

/* Subtitle */
.splitbill-ui .sb-subtitle {
    font-weight: 600;
    font-size: 20px;
    /* margin-left: 23px; */
}

/* Participant List */
.splitbill-ui .sb-list {
    margin-top: 10px;
}

/* Item */
.splitbill-ui .sb-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #efefef;
    padding: 4px 5px;
    border-radius: 5px;
    margin-bottom: 10px;
    position: relative;
}

.splitbill-ui .sb-item.danger {
    background: #ffeaee;
}

.splitbill-ui .sb-user-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.splitbill-ui .sb-remove {
    position: absolute;
    right: 15px;
    border: none;
    background: none;
    font-size: 45px;
    color: #000;
    font-weight: 200;
    cursor: pointer;
}

/* BUTTON */
.splitbill-ui .sb-split-btn {
    width: 100%;
    background: var(--accent);
    border: none;
    padding: 6px 0 !important;
    font-size: 18px !important;
    border-radius: 50px;
    color: #fff;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 480px) {
    .splitbill-ui .sb-box {
        /* flex-direction: column; */
        gap: 10px;
    }
}

.product-box img {
    width: 100%;
    max-height: 90px;
}

/* ############################################################################################## */

.payment-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px 100px;
    /* box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05); */
}

.payment-containe .payment {
    font-size: 1rem;
    font-weight: 600;
    line-height: 30px;
}

.payment-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.5rem;
    line-height: 36px;
}

.payment-row {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    color: var(--text-dark);
}

.payment-row strong {
    font-weight: 600;
}

hr {
    margin: 15px 0 !important;
    border-color: #eee;
}

.upi-section {
    margin-top: 25px;
}

.upi-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.upi-header span {
    font-weight: 600;
    font-size: 1.2rem;
}

.add-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid #000;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-btn:hover {
    background: #4caf50;
    color: var(--white);
    border-color: #4caf50;
    transform: rotate(90deg);
}

.upi-btn {
    border: 1px solid #bbb;
    border-radius: 8px;
    background: var(--white);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease;
}

.upi-btn:hover {
    border-color: #e63538;
    background: #e63538;
    color: var(--white);
    box-shadow: 0 2px 6px rgba(76, 175, 80, 0.25);
}

.upi-btn img {
    height: 100%;
    width: auto;
    padding: 10px;
}

.btn-pay {
    width: 100%;
    background: #e63538 !important;
    color: var(--white) !important;
    font-weight: 600;
    border: none;
    padding: 10px 0 !important;
    border-radius: 30px;
    transition: 0.3s;
    font-size: 1.8rem;
    letter-spacing: 0.5px;
    line-height: 100%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ====== Card Row ====== */
.card-saved {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px 15px;
    background: var(--white);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.card-saved:hover {
    border-color: #4caf50;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
}

.card-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-info img {
    height: 25px;
}

/* ====== Editable Input (Card Number) ====== */
.card-number-input {
    border: none;
    outline: none;
    font-size: 1.2rem;
    font-weight: 500;
    background: transparent;
    width: 160px;
    letter-spacing: 1px;
}

.card-number-input::placeholder {
    color: #888;
}

/* ====== Custom Checkbox ====== */
.custom-checkbox {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
}

.custom-checkbox input {
    opacity: 0;
    width: 0;
    height: 0;
}

.custom-checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    background-color: #fff;
    border: 2px solid #ccc;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.custom-checkbox input:checked + .checkmark {
    background-color: #4caf50;
    border-color: #4caf50;
}

.custom-checkbox .checkmark::after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked + .checkmark::after {
    display: block;
}

.custom-checkbox .checkmark::after {
    left: 5px;
    top: 1px;
    width: 4px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* ====== Save Checkbox and Button ====== */
.save-card {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    color: #333;
    margin-top: 12px;
}

.save-card input {
    width: 16px;
    height: 16px;
    accent-color: #4caf50;
}

/* .pay-btn {
  width: 100%;
  background: #4CAF50;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  padding: 13px 0;
  font-size: 15px;
  margin-top: 20px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
} */

.pay-btn:hover {
    background: #43a047;
    transform: scale(1.02);
    /* box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3); */
}

@media (max-width: 576px) {
    .payment-section {
        padding: 20px;
    }

    .card-number-input {
        width: 120px;
    }

    .payment-card {
        background: var(--white);
        border-radius: 10px;
        padding: 30px 20px;
        /* box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05); */
    }
    .order-date p{
        margin-bottom: 0 !important;
    }
}

.gift-container {
    max-width: 100%;
    margin: 0 auto;
    background: var(--white);
    border-radius: 10px;
    /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); */
    padding: 30px 100px;
}

/* --- Two Images Section --- */
.gift-top {
    display: grid;
    /* grid-template-columns: 1fr 3fr; */
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    /* gap: 15px; */
}

.gift-top .logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    /* border-radius: 10px; */
    border: 1px solid #eee;

    height: 200px;
}

.gift-top .logo-box img {
    width: 80%;
    height: auto;
    object-fit: contain;
}

.gift-top .banner-box img {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    object-fit: cover;
}

/* --- Gift Info --- */
.gift-info {
    margin-top: 10px;
}

.gift-info h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 600;
    color: #16254c;
}

.gift-info p {
    font-size: 1rem;
    color: #666;
    /* line-height: 40px; */
}

/* --- Form Section --- */
.form-section {
    margin-top: 25px;
}

.form-section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.form-group {
    grid-column: span 3;
    display: flex;
    flex-direction: column;
}

.gift-container label {
    font-size: 0.9rem;
    margin-bottom: 5px;
    font-weight: 500;
    line-height: 100%;
    color: var(--text-dark);
}

.gift-container input {
    width: 100%;
    padding: 10px 10px 10px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    outline: none;
}

.gift-container input:focus {
    border-color: #4caf50;
}

.gift-container small {
    display: block;
    margin-top: 10px;
    color: #777;
    font-size: 1rem;
    grid-column: span 6;
}

/* --- Bottom Section --- */
.gift-container .bottom-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 20px;
}

.bottom-section h5 {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.5rem;
    line-height: 36px;
}

.bottom-section h6 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
}

/* --- Button --- */
.gift-container .btn {
    width: 100%;
    background: #6eb049;
    color: var(--white);
    font-weight: 600;
    border: none;
    padding: 14px 0;
    border-radius: 30px;
    transition: 0.3s;
    font-size: 1.8rem;
    letter-spacing: 0.5px;
    line-height: 100%;
}

.gift-container .btn:hover {
    background: #6eb049;
}

/* --- Responsive --- */
@media (max-width: 700px) {
    .gift-top {
        grid-template-columns: 1fr;
    }

    .gift-top .logo-box img {
        width: 45%;
        height: auto;
        object-fit: contain;
    }

    .gift-top .logo-box,
    .gift-top .banner-box img {
        height: 160px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group {
        grid-column: span 1;
    }

    .gift-container {
        padding: 30px 20px;
    }
}

.modal-content {
    border-radius: 12px;
    padding: 90px 30px;
    animation: slideUp 0.6s ease;
}

/* Slide-up animation for modal */
@keyframes slideUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Payment buttons */
.pay-option-btn {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 12px;
    border: none;
    background-color: #4caf50;
    color: white;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.pay-option-btn:hover {
    background-color: #45a049;
    transform: translateY(-2px);
}

.modal-backdrop.show {
    opacity: 0.7;
    backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-title {
    /* font-size: 1.9rem; */
    font-weight: 600;
}

.modal-header {
    justify-content: center;
    /* centers title */
    position: relative;
}

.modal-header .btn-close {
    position: absolute;
    right: 3px;
    /* distance from right edge */
    top: -60px;
    /* distance from top */
}

.card-amount-container {
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
    padding: 20px 20px 30px 0px;
    /* max-width: 600px;
      margin: 0 auto; */
}

.card-amount-label {
    font-weight: 600;
    font-size: 1rem;
    color: #333;
    margin-bottom: 12px;
}

.btn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 10px;
}

.btn-outline-custom {
    border-radius: 50px;
    border: 1.5px solid #bbb;
    font-weight: 600;
    font-size: 1.2rem;
    color: #444;
    height: 38px;
    width: 100%;
    background-color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    line-height: 38px;
    /* vertically center text */
    user-select: none;
}

.btn-outline-custom:hover,
.btn-outline-custom:focus-visible {
    background-color: #f8f8f8;
    border-color: #e63538;
    color: #e63538;
    outline: none;
}

.btn-active {
    background-color: #e63538;
    border: none;
    color: white;
    font-weight: 600;
    height: 38px;
    border-radius: 50px;
    width: 100%;
    box-shadow: 0 2px 8px rgb(255 76 104 / 0.4);
    cursor: pointer;
    text-align: center;
    line-height: 38px;
    user-select: none;
    transition: all 0.3s ease;
}

.btn-active:hover,
.btn-active:focus-visible {
    background-color: #e63538;
    outline: none;
}

.tabs {
    display: flex;
    border-bottom: 2px solid #eee;
    margin-bottom: 30px;
    max-width: 940px;
    /* padding: 16px 16px 0px 16px ; */
    background-color: #ededed;
}

.tab {
    flex: 1;
    text-align: center;
    padding: 16px;
    font-weight: 600;
    font-size: 1.4rem;
    cursor: pointer;
    color: #777;
    position: relative;
    user-select: none;
    transition: color 0.3s ease;
}

.tab.active {
    color: #e63538;
}

.tab.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #e63538;
    border-radius: 3px 3px 0 0;
}

/* Section heading */
.section-title {
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
}

/* Card */
.card-container {
    margin-left: auto;
    margin-right: auto;
    border-bottom: 1.5px solid #eee;
    padding: 15px 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.card-logo {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 4px 0 0 4px;
    overflow: hidden;
}

.card-logo img {
    max-height: 60px;
    width: auto;
}

.card-image {
    flex-shrink: 0;
    width: 230px;
    height: 70px;
    border-radius: 4px;
    object-fit: cover;
    border: 1px solid #ddd;
}

.card-content {
    flex-grow: 1;
    font-size: 1.2rem;
    color: #444;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-content strong {
    font-weight: 700;
    color: #0a2349;
    margin-bottom: 6px;
    font-size: 1.2rem;
}

.card-description {
    font-weight: 400;
    line-height: 1.3;
    color: #444;
}

.btn-add {
    background-color: #e63538;
    border: none;
    color: white;
    padding: 9px 22px;
    font-weight: 600;
    font-size: 1.2rem;
    border-radius: 25px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.btn-add:hover {
    background-color: #e63538;
}

/* Responsive */
@media (max-width: 768px) {
    .card-container {
        flex-wrap: wrap;
        gap: 10px;
    }

    .card-image {
        width: 100%;
        height: auto;
        max-height: 140px;
    }

    .card-logo {
        width: 50px;
        height: 50px;
    }

    .card-content {
        width: 100%;
        margin-top: 10px;
    }

    .btn-add {
        width: 100%;
        margin-top: 10px;
        padding: 7px 22px !important;
        font-size: 16px !important;
    }

    .gift-top .logos-box img {
        width: 45% !important;
        height: auto;
        object-fit: contain;
    }

    .gift-top .logos-box,
    .gift-top .banner-box img {
        height: 160px;
    }
}

.gift-top .logos-box {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: var(--white);
    /* border-radius: 10px; */
    /* border: 1px solid #eee; */
    height: 200px;
    padding-top: 10px;
}

.gift-top .logos-box img {
    width: 80%;
    height: auto;
    object-fit: contain;
}

section#otp-section {
    display: flex;
    justify-content: center;
    align-items: center;

    background-color: #f9f9f9;
    padding: 20px;
}

.otp-card {
    border-radius: 12px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
    padding: 40px 30px;
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.otp-card img {
    width: 220px;
    margin-bottom: 20px;
}

.otp-card h2 {
    color: #e63538;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 2.8rem;
}

.otp-card p {
    color: #555;
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 32px 0;
}

.otp-inputs input {
    width: 50px;
    height: 50px;
    border: 2px solid #ccc;
    border-radius: 8px;
    text-align: center;
    font-size: 1.6rem;
    transition: all 0.2s;
}

.otp-inputs input:focus {
    border-color: #e63538;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.3);
    outline: none;
}

.resend {
    display: block;
    margin-bottom: 20px;
    color: #e63538;
    text-decoration: none;
    font-weight: 500;
}

.timer {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 20px;
}

@media (max-width: 480px) {
    .otp-inputs input {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .otp-card {
        /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
        padding: 20px 15px;

        max-width: 400px;
    }

    section#otp-section {
        padding: 1px;
    }

    .otp-card img {
        width: 100px;
        margin-bottom: 20px;
    }

    .signup-card img {
        width: 100px !important;
    }
}

section#signup-section {
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 20px;
    background-color: #f9f9f9;
}

.signup-card {
    background: transparent;
    border-radius: 12px;
    padding: 40px 30px;
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.signup-card img {
    width: 220px;
    margin-bottom: 20px;
}

.signup-card h2 {
    color: #e63538;
    font-weight: 700;
    margin-bottom: 25px;
}

/* .form-control {
  border-radius: 1px;
  height: 51px;
  font-size: 15px;
  border: 1px solid #555555;
} */

.input-group-text {
    background: none;
    border-left: none;
    cursor: pointer;
}

.form-check-label {
    font-size: 14px;
}

.form-check-label a {
    color: #e63538;
    text-decoration: none;
    font-weight: 500;
}

.signup-btn {
    width: 100%;
    background-color: #e63538;
    color: white;
    border: none;
    font-weight: 600;
    padding: 12px;
    border-radius: 25px;
    transition: 0.3s;
    margin-top: 10px;
}

.signup-btn:hover {
    background-color: #43a047;
}

.login-text {
    font-size: 14px;
    margin-top: 15px;
    color: #555;
}

.login-text a {
    color: #e63538;
    text-decoration: none;
    font-weight: 500;
}

@media (max-width: 480px) {
    .signup-card {
        padding: 30px 20px;
    }

    .schedule-ui .schedule-popup {
        width: 302px !important;
        height: 59vh;
        overflow-y: scroll;
    }
}

section#login-section {
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 20px;
    background-color: #f9f9f9;
}

.login-card {
    border-radius: 12px;
    padding: 40px 30px;
    max-width: 500px;
    width: 100%;
    text-align: center;
}

/* .login-card h2 {
      color: #4CAF50;
      font-weight: 700;
      margin-bottom: 25px;
    } */

.form-control {
    border-radius: 4px;
    height: 45px;
    font-size: 15px;
    color: #000;
}

.input-group-text {
    background: none;
    border-left: none;
    cursor: pointer;
}

.forgot-password {
    text-align: right;
    display: block;
    font-size: 14px;
    margin-top: 5px;
    color: #666;
    text-decoration: none;
}

.forgot-password:hover {
    color: #4caf50;
}

.login-btn {
    width: 100%;
    background-color: #4caf50;
    color: white;
    border: none;
    font-weight: 600;
    padding: 12px;
    border-radius: 25px;
    transition: 0.3s;
    margin-top: 15px;
}

.login-btn:hover {
    background-color: #43a047;
}

.signup-text {
    font-size: 14px;
    margin-top: 15px;
    color: #555;
}

.signup-text a {
    color: #e63538;
    text-decoration: none;
    font-weight: 500;
}

@media (max-width: 480px) {
    .login-card {
        padding: 30px 20px;
    }
}

/* 🧾 Bill Card */
.bill-card {
    /* max-width: 600px; */
    background-color: #fff;
    border-radius: 12px;
    transition: 0.3s ease;
}

.total-bill {
    color: #16254c;
}

.bill-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.make-a-payment {
    background: #e63538;
    width: 100%;
    color: var(--white);
    font-weight: 600;
    border: none;

    border-radius: 30px;
    transition: 0.3s;
    padding: 10px !important;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    line-height: 100%;
    transition: 0.3s ease;
    animation: pulse 2s infinite;
}

.make-a-payment:hover {
    background-color: #e63538;
    color: #fff;
    transform: translateY(-2px);
}

.orders-ui .btn-pay-success {
    background: var(--accent) !important;
    border: 2px solid var(--accent) !important;
    color: white !important;
    width: fit-content !important;
    font-size: 20px;
    transition: 0.3s ease;
    animation: pulse 2s infinite;
}

.btn-pay-success:hover {
    background-color: #e63538;
    color: #fff;
    transform: translateY(-2px);
}

.orders-ui .btn-pay-order {
    padding: 7px 15px !important;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
}

/* 💚 Buttons */
.btn-success {
    background: #e63538 !important;
    width: 100%;
    color: var(--white);
    font-weight: 600;
    border: none;

    border-radius: 30px;
    transition: 0.3s;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
    line-height: 100%;
    transition: 0.3s ease;
    animation: pulse 2s infinite;
}
.btn-danger {
    background: #e63538 !important;

    color: var(--white) !important;
    font-weight: 600;
    border: none;

    border-radius: 30px;
    transition: 0.3s;
    /* font-size: 20px !important; */
    letter-spacing: 0.5px;
    line-height: 100%;
    transition: 0.3s ease;
    animation: pulse 2s infinite;
    padding: 18px 45px;
    text-decoration: none !important;
    text-align: center;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 #e6787a;
    }

    70% {
        box-shadow: 0 0 0 10px rgba(92, 184, 92, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(92, 184, 92, 0);
    }
}

.btn-success:hover {
    background-color: #e63538;
    transform: translateY(-2px);
}

/* 💸 Payment Popup */
.payment-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    z-index: 9999;
}

.payment-overlay.show {
    opacity: 1;
    visibility: visible;
}

.payment-popup {
    background: #fff;
    border-radius: 10px;
    padding: 40px 60px;
    text-align: center;
    animation: popup 0.6s ease;
}

@keyframes popup {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.payment-popup .checkmark {
    font-size: 60px;
    color: #5cb85c;
    animation: bounce 1s ease;
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.payment-popup p {
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
}

/* 📱 Responsive */
@media (max-width: 576px) {
    .bill-card {
        padding: 20px;
    }

    .hero-logo {
        width: 80px;
        height: 80px;
    }

    .bill-logo {
        width: 60px;
        height: 60px;
    }

    /* button {
    width: 100%;
  } */

    .payment-popup {
        padding: 30px;
    }
}

.bill-card {
    /* max-width: 500px; */
    padding: 6px 15px 15px 20px;
    background: #fff;
    border-radius: 12px;
    /* border: 1px solid #eee; */
}

.bill-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}

/* hr {
      border: none;
      border-top: 2px solid #f1f1f1;
    } */

.participant {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.participant img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.participant .info {
    flex: 1;
}

@media (max-width: 768px) {
    .bill-card {
        padding: 5px;
    }

    .checkout-ui-btn-row button {
        font-size: 17px !important;
        width: 100% !important;
        padding: 6px !important;
    }

    .participants-section-ui {
        padding: 20px !important;
        font-family: "Poppins", sans-serif;
    }
}

.participants-section-ui {
    padding: 40px;
    font-family: "Poppins", sans-serif;
}

/* Title */
.participants-section-ui .title {
    font-size: 24px;
    font-weight: 700;
}

/* Selected Users Row */
.participants-section-ui .ps-selected {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    align-items: center;
    flex-wrap: wrap;
}

/* REMOVE highlight effect */
.participants-section-ui .ps-row.active {
    background: #f0f0f0 !important;
    /* same as default */
    border-color: transparent !important;
}

.participants-section-ui .ps-user {
    position: relative;
    text-align: center;
}

.participants-section-ui .ps-user img {
    width: 98px;
    height: 98px;
    border-radius: 50%;
    object-fit: cover;
}

.participants-section-ui .ps-user span {
    display: block;
    margin-top: 5px;
    font-size: 14px;
}

.participants-section-ui .ps-remove {
    position: absolute;
    top: 4px;
    right: 2px;
    width: 23px;
    height: 23px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 16px;
}

.participants-section-ui .ps-empty {
    border: 1px solid #d9d9d9;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 45px;
    color: #aaa;
    padding: 25px 20px;
}

/* Divider */
.participants-section-ui .ps-line {
    margin: 25px 0;
}

/* Search Box */
.participants-section-ui .ps-contact-title {
    font-size: 20px;
    font-weight: 600;
    color: #16254c;
}

.participants-section-ui .ps-search {
    position: relative;
    margin-top: 10px;
    margin-bottom: 25px;
}

.participants-section-ui .ps-search input {
    width: 100%;
    padding: 12px 45px 12px 14px;
    border-radius: 6px;
    border: 1px solid #555555;
}

.participants-section-ui .ps-search i {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

.participants-section-ui .ps-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.participants-section-ui .ps-row {
    background: #efefef;
    padding: 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 2px solid transparent;
}

.participants-section-ui .ps-row.danger {
    background: #ffeaee !important;
}

.participants-section-ui .ps-row.active {
    background: #fce6eb;
    border-color: var(--accent);
}

.participants-section-ui .ps-row img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.participants-section-ui .ps-row span {
    flex-grow: 1;
    font-weight: 500;
    font-size: 20px;
    color: #555555;
}

.participants-section-ui .ps-row input {
    width: 18px;
    height: 18px;
}

/* Save Button */
.participants-section-ui .ps-save {
    width: 50%;
    background: #e63538;
    color: #fff;
    border: none;
    padding: 20px 140px;
    margin-top: 35px;
    display: block;
    /* margin-left: auto;
  margin-right: auto; */
    border-radius: 50px;
    font-weight: 600;
    font-size: 25px;
}

.slider-container {
    position: relative;
    margin-top: 8px;
    padding: 8px 0;
}

.slider-container input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 30px;
    background: transparent;
    outline: none;
    cursor: pointer;
    position: relative;
    z-index: 3;
    margin-top: -10%;
}

.slider-container .slider-track {
    position: absolute;
    top: 8px;
    left: 0;
    right: 0;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    pointer-events: none;
    z-index: 1;
}

.slider-container .slider-fill {
    position: absolute;
    top: 8px;
    left: 0;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    pointer-events: none;
    transition: width 0.1s ease;
    z-index: 2;
}

.slider-container .breakpoints {
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.slider-container .breakpoint {
    position: absolute;
    width: 10px;
    height: 10px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: border-color 0.2s ease;
}

.slider-container .breakpoint.active {
    border-color: var(--accent);
    background: var(--accent);
}

.slider-container input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    position: relative;
    z-index: 3;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border: 3px solid white;
}

.slider-container input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    position: relative;
    z-index: 3;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border: 3px solid white;
}

.slider-container input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.slider-container input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.1);
}

/* ---------------------------------------------------
           WRAPPER (NO CONFLICT)
        --------------------------------------------------- */
/* ---------------------------------------------------
           SIDEBAR
        --------------------------------------------------- */
.reward-ui .sidebar {
    background: #ffe5ed;
    min-height: 100vh;
    border-radius: 16px;
}

/* Wrap the profile + edit button */
.reward-ui .profile-header {
    position: relative;
    padding: 25px;
}

.reward-ui .tab-content {
    padding: 4% 4%;
}

/* Profile image wrapper */
.reward-ui .profile-wrapper {
    position: relative;
    display: inline-block;
}

/* Edit Button */
.reward-ui .edit-btn {
    position: absolute;
    right: -8px;
    bottom: 5px;
    background: var(--accent);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.reward-ui .edit-btn:hover {
    background: #d83352;
}

.reward-ui .profile-pic {
    width: 103px;
    height: 103px;
    border-radius: 50%;
    border: 2px solid #555555;
    object-fit: cover;
}

.reward-ui .name {
    /* font-size: 22px; */
    font-weight: 700;
}

/* sidebar menu */
.reward-ui .menu-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 16px 10px;
    /* border-radius: 10px; */
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1e1e1e;
    border-top: 1px solid #aeaeae;
}

.reward-ui .menu-btn i {
    color: var(--accent);
}

/* bottom invite banner */
/* Sidebar container must be relative for bottom positioning */
.reward-ui .sidebar {
    position: relative;
}

/* Invite Box — fixed at bottom inside sidebar */
.reward-ui .invite-box {
    position: relative;

    background: url("assets/images/refer.png") no-repeat center/cover;
    color: white;
    padding: 18px;
    margin: 0;
    border-radius: 15px;
    text-align: center;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

/* Optional dark overlay for readability */
.reward-ui .invite-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(5 33 82 / 80%);
    border-radius: 15px;
}

.reward-ui .invite-box * {
    position: relative;
    z-index: 2;
}

.reward-ui h6 {
    font-size: 18px;
}

/* ---------------------------------------------------
           RIGHT CONTENT
        --------------------------------------------------- */

.reward-ui .title {
    font-size: 45px;
    font-weight: 700;
    color: #1e1e1e;
}

.reward-ui .reward-summary {
    background: #ededed;
    padding: 20px;
}

.reward-summary h5 {
    font-size: 32px;
    color: #000;
    font-weight: 500 !important;
}

.reward-summary h6 {
    font-size: 24px;
    color: #000;
}

.reward-summary p {
    font-size: 18px;
    color: #555555;
}

.reward-ui .star-box {
    background: url("assets/images/Star\ 11.png") no-repeat center/cover;
    background-size: 100% 100%;
    color: white;
    padding: 25px 25px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 30px;
}

/* reward card */
.reward-ui .reward-card {
    background: url("assets/images/bg.png") no-repeat center/cover;
    padding: 40px;
    background-size: 100% 100%;
    position: relative;
    height: 320px !important;
}

.reward-ui .reward-badge {
    background: #19325d;
    color: white;
    font-size: 15px;
    padding: 10px 20px;
    position: absolute;
    top: 0;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
}

.reward-card .fw-bold {
    font-size: 18px;
    color: #16254c;
    font-weight: 600 !important;
}

.reward-card .text-sec {
    font-size: 16px;
    color: #333333;
    font-weight: 500 !important;
}

.reward-card hr {
    border: 1px dotted #000000;
    position: absolute;
    top: 45%;
    width: 100%;
    left: 0;
}

.reward-card button {
    font-size: 18px;
    padding: 18px 25px !important;
    width: fit-content;
    display: flex;
    align-items: center;
    line-height: 0;
    margin-top: 10px;
    background-color: #ec4c6a;
    color: white;
    border-color: #ec4c6a;
}

.invite-box button {
    background-color: #26c281 !important;
    font-size: 16px !important;
    width: fit-content;
    padding: 13px 35px !important;
}

.reward-ui .reward-sticker {
    position: absolute;
    right: 15px;
    top: 27%;
    padding: 0px 50px;
}

/* refer card */
.reward-ui .refer-card {
    background: #003060;
    color: white;
    border-radius: 14px;
    padding: 24px;
}

@media (max-width: 768px) {
    .reward-ui .sidebar {
        min-height: auto;
        margin-bottom: 25px;
    }

    .participants-section-ui .ps-save {
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
        padding: 10px;
    }
}

@media (max-width: 1186px) {
    .reward-ui .reward-sticker {
        position: absolute;
        right: 15px;
        top: 17%;
        width: 20%;
    }
}

/* Card */
.orders-ui .order-card {
    border: 2px solid #dcdcdc;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    background: #fff;
}

/* Logo */
.orders-ui .order-logo {
    object-fit: contain;
}

/* Order ID */
.orders-ui .order-id {
    font-weight: 600;
    font-size: 26px;
    color: #16254c;
    margin-bottom: 2px;
}

/* Date */
.orders-ui .order-date {
    color: #000000;
    margin-bottom: 0px;
    font-weight: 500;
    font-size: 18px;
}

/* Description */
.orders-ui .order-desc {
    color: #555555;
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
}

/* Pickup method */
.orders-ui .pickup {
    font-size: 18px;
    margin-top: 5px;
    color: #000000 !important;
    font-weight: 500;
}

/* Price */
.orders-ui .order-price {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 10px;
}

/* View Details Link */
.orders-ui .view-details {
    color: #000;
    font-size: 15px;
    text-decoration: underline;
}

/* Buttons */
.orders-ui .btn-order {
    padding: 13px 45px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
}

.orders-ui .btn-outline-success {
    border: 1px solid var(--green-line);
    color: var(--green-line);
    background: #fff;

    font-size: 20px;
}

.orders-ui .col-auto a {
    color: #1e1e1e;
    font-size: 20px;
}

.orders-ui .open-feedback {
    background: var(--accent) !important;
    border: 2px solid var(--accent) !important;
    color: white !important;
    width: fit-content !important;
    font-size: 20px;
}

/* Responsive */
@media (max-width: 767px) {
    .orders-ui .order-card {
        text-align: center;
    }

    .orders-ui .order-price {
        margin-top: 0px;
    }

    .orders-ui .view-details {
        display: block;
        /* margin-top: 10px; */
    }

    .pay-ui .pay-tabs .nav-link {
        font-size: 14px !important;
    }
}

/* Overlay */
.feedback-ui .fb-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    z-index: 9990;
}

/* Modal */
.feedback-ui .fb-modal {
    width: 900px;
    background: #fff;
    border-radius: 14px;
    padding: 67px 2%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 9999;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
}

.feedback-ui .fb-title {
    font-weight: 700;
    font-size: 20px !important;
    margin-bottom: 3%;
}

/* Stars */
.feedback-ui .fb-stars i {
    font-size: 97px;
    color: #fbbc05;
    cursor: pointer;
    margin: 0 4px;
}

.feedback-ui .fb-stars i.inactive {
    color: #ddd;
}

/* Label */
.feedback-ui .fb-label {
    font-weight: 600;
    margin: 6px 15px;
    display: block;
    font-size: 20px;
    color: #1e1e1e;
}

/* Textarea */
.feedback-ui .fb-textarea {
    width: 100%;
    height: 199px;
    border: 1px solid #1e1e1e;
    border-radius: 20px;
    padding: 12px;
    outline: none;
    resize: none;
    font-size: 15px;
}

/* Submit Button */
.feedback-ui .fb-submit {
    margin-top: 25px;
    width: fit-content;
    background: var(--accent);
    border: none;
    color: #fff;
    padding: 16px 20%;
    font-size: 31px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    margin: 20px auto;
    display: flex;
}

.feedback-ui .fb-submit:hover {
    background: #e63538;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .feedback-ui .fb-modal {
        width: 90% !important;
    }

    .feedback-ui .fb-stars i {
        font-size: 50px;
    }

    .pay-ui .barcode-box {
        width: 100% !important;
    }
}

.pay-ui .title {
    font-size: 28px;
    font-weight: 700;
}

/* Wallet Card */
/* WALLET CARD MAIN */
.pay-ui .wallet-card {
    /* background: url("assets/images/refer.png"); */
    background-size: cover;
    background-position: center right;
    border-radius: 18px;
    padding: 14px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 300px;
}

/* LEFT TEXT SIDE */
.pay-ui .wallet-left p,
.pay-ui .wallet-left small {
    font-size: 18px;
    z-index: 99;
}

.pay-ui .wallet-left .balance {
    font-size: 24px;
    font-weight: 700;
    margin: 5px 0;
}

/* RIGHT LOGO + BUTTON */
.pay-ui .wallet-right {
    text-align: center;
    height: 100%;
}

.pay-ui .bg-layer {
    z-index: 99;
    background-color: rgb(211 43 46 / 40%);
    position: absolute;
    bottom: 0;
    width: 100%;
    border-radius: 0px 0px 15px 15px;
    padding: 18px 50px 15px 50px;
}

.pay-ui .wallet-logo {
    margin-bottom: 15px;
    z-index: 99;
    margin-left: auto;
}

/* LOAD CARD BUTTON */
.pay-ui .load-card-btn {
    background: #00963d;
    color: white;
    border: none;
    font-weight: 500;
    padding: 6px 15px !important;
    border-radius: 25px;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-wrap: nowrap;
}

.pay-ui .load-card-btn i {
    font-size: 18px;
}

.pay-tabs {
    width: 100% !important;
    background-color: #ededed;
    /* padding: 10px 0px; */
}

.pay-tabs .nav-item {
    width: 50% !important;
    text-align: center;
}

/* Tabs */
.pay-ui .pay-tabs .nav-link {
    border: none;
    background: #f1f1f1;
    color: #777;
    padding: 10px 21px;
    font-weight: 400;
    font-size: 25px;
    width: 100%;
}

.pay-ui .pay-tabs .nav-link.active {
    border-bottom: 3px solid #ec4c6a;
    color: #ec4c6a;
    font-weight: 600;
}

/* Barcode */
.pay-ui .barcode-box {
    width: 400px;
}

.pay-ui .reward-card {
    border: 2px solid #1270b0 !important;
    border-radius: 20px;
}

.pay-ui .barcode-img {
    width: 100%;
}

.pay-ui .barcode-text {
    font-size: 24px;
    margin-top: 5px;
}

.pay-transactions-ui {
}

.transaction-card {
    background: #fff;
    border: 2px solid #000000;
    border-radius: 10px;
    padding: 5px;
    margin-bottom: 15px;
    transition: 0.2s ease-in-out;
}

.transaction-card .trans-icon {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.transaction-card .reload {
    width: 34px;
    height: 34px;
    border: 2px solid #e54545;
    color: #e54545;
    border-radius: 50%;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transaction-card .date {
    font-size: 18px;
    color: #000000;
    margin: 10px 0;
}

.transaction-card .desc {
    font-size: 18px;
    margin-bottom: 0;
    color: #555555;
}

.transaction-card .earned {
    font-size: 20px;
    color: #555555;
    text-wrap: nowrap;
}

.transaction-card h6 {
    color: #16254c;
    font-weight: 700;
    font-size: 20px;
}

/* HIDE/SHOW SECTION */
.load-card-ui {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Load Card Amount Buttons */
.amount-btn-group {
    display: flex;
    gap: 12px;
}

.amount-btn {
    border: 1px solid #ccc;
    background: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
}

.amount-btn.active {
    background: #e63538;
    color: white;
    border-color: #e63538;
}

/* LoadCard Tabs */
.loadcard-tabs .nav-link {
    width: 50%;
    text-align: center;
    color: #777;
    border: none;
    font-size: 20px;
    border-bottom: 2px solid transparent;
}

.loadcard-tabs .nav-link.active {
    font-weight: 600;
    color: #000;
    border-bottom: 3px solid #ec4c6a;
    color: var(--accent);
}

.loadcard-tabs {
    width: 100%;
}

.loadcard-tabs .nav-item {
    width: 50%;
    /* Each tab takes 50% width */
}

.loadcard-tabs .nav-link {
    width: 100%;
    background-color: transparent !important;
}

/* --- FAVORITES UI WRAPPER --- */
.favorites-ui {
    padding: 1px;
}

/* --- Toggle Buttons --- */
.favorites-ui .fav-toggle .fav-btn {
    padding: 10px 90px;
    border-radius: 50px;
    border: 2px solid #000;
    background: #fff;
    font-weight: 600;
    font-size: 30px;
    transition: 0.3s;
    width: auto !important;
    height: auto;
}

.favorites-ui .fav-toggle .fav-btn.active {
    background: #ec4c6a;
    color: #fff;
}

/* --- Card --- */
.favorites-ui .fav-card {
    border: 1px solid #000000;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    gap: 15px;
    background: #fff;
}

/* Image box */
.favorites-ui .fav-img-box {
    position: relative;
}

.favorites-ui .fav-img {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    object-fit: cover;
}

.favorites-ui .fav-heart {
    position: absolute;
    top: 8px;
    right: 8px;
    background: white;
    color: red;
    padding: 3px 5px;
    border-radius: 50%;
    font-size: 14px;
}

/* Info */
.favorites-ui .fav-title {
    font-size: 20px;
    font-weight: 600;
    color: #16254c;
}

.favorites-ui .fav-cal {
    font-size: 14px;
    color: #777;
}

.favorites-ui .fav-desc {
    font-size: 18px;
    color: #555555;
    margin-bottom: 4px;
}

.favorites-ui .fav-price {
    font-size: 24px;
    font-weight: 600;
    color: #16254c;
}

/* Add Button */
.favorites-ui .fav-add-btn {
    background: #6eb049;
    color: #fff;
    border: none;
    padding: 6px 22px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 17px;
    margin-left: 50px;
}

.feedback-ui {
    padding: 15px;
}

.feedback-box {
    border: 1px solid #ddd;
    padding: 18px 25px;
    border-radius: 10px;
}

.feedback-ui .stars i {
    font-size: 32px;
    color: #fbbc05;
    margin-right: 10px;
    cursor: pointer;
    transition: 0.2s;
}

.feedback-ui .stars i:hover {
    transform: scale(1.2);
}

.feedback-text {
    width: 100%;
    height: 130px;
    padding: 12px;
    border: 1px solid #808386;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
    background-color: transparent;
}

.feedback-submit {
    margin-top: 25px;
    background: var(--accent);
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
    font-size: 24px;
}

.feedback-submit:hover {
    background: var(--accent);
}

.faq-ui {
    padding: 20px 0;
}

.faq-section-title {
    font-weight: 600;
    margin-top: 35px;
    margin-bottom: 18px;
    font-size: 27px;
    padding-left: 19px;
}

.faq-item {
    padding: 11px 30px;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.faq-question h5 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: var(--accent);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border: 2px solid var(--accent);
    color: var(--accent);
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    font-weight: bold;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin-left: 43px;
    margin-top: 10px;
}

.faq-answer p {
    color: #555;
    font-size: 18px;
    line-height: 1.6;
}

/* Active State */
.faq-item.active .faq-answer {
    max-height: 500px;
}

.about-ui {
    padding: 20px 0;
}

.about-logo {
    width: 150px;
}

.about-text {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}

.about-buttons {
    margin-top: 30px;
}

.about-ui h4 {
    font-size: 32px;
    font-weight: 600 !important;
}

.about-btn {
    background: #f5f5f5;
    border: 1px solid #1e1e1e;
    padding: 12px 40px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.2s;
    font-size: 24px;
}

.about-btn:hover {
    background: #e63538;
    color: white;
    border-color: #e63538;
}

/* Wrap section */
.privacy-ui {
    padding: 25px 0;
}

/* Paragraphs spacing and style */
.pp-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 22px;
    color: #555555;
}

/* Button group */
.pp-buttons {
    margin-top: 25px;
}

/* Buttons */
.pp-btn {
    background: #fff;
    border: 1px solid #ccc;
    padding: 12px 40px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.2s;
    font-size: 24px;
}

.pp-btn.active {
    background: #e63538;
    /* green */
    color: white;
    border-color: #e63538;
}

.pp-btn:hover {
    background: #e63538;
    color: white;
    border-color: #e63538;
}

.main-container-contect .contact-title {
    font-size: 28px;
    font-weight: 700;
}

.main-container-contect .btn-submit {
    padding: 17px 41px;
    transition: 0.3s;
    background: #e63538;
    color: var(--white);
    font-weight: 500;
    border: none;
    border-radius: 30px;
    transition: 0.3s;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    line-height: 100%;
    transition: 0.3s ease;
    animation: pulse 2s infinite;
}

.main-container-contect .btn-submit:hover {
    background: #e63538;
}

.main-container-contect .contact-box {
    max-width: 650px;
}

.main-container-contect .contact-details i {
    font-size: 20px;
    color: #ec4c6a;
    margin-right: 10px;
}

.main-container-contect .social-icons i {
    font-size: 18px;
    color: #ec4c6a;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid var(--accent);
    width: 40px;
    /* same width */
    height: 40px;
    /* same height */
    display: flex;
    flex-direction: row;
    /* center icon */
    align-items: center;
    /* vertical center */
    justify-content: center;
    /* horizontal center */
    border-radius: 50%;
    /* perfect circle */
    margin-right: 10px;
}

.main-container-contect .social-icons i:hover {
    color: #ec4c6a;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .main-container-contect .contact-layout {
        flex-direction: column;
    }

    .main-container-contect .social-icons i {
        /* center icon */
        align-items: center;
        /* vertical center */
        justify-content: center;
        /* horizontal center */
    }

    .pay-ui .wallet-card {
        height: 370px;
    }

    .favorites-ui .fav-card {
        display: flex;
        flex-direction: column;
    }
}

.contact-box .form-control,
.contact-box .form-select {
    border-color: #808386 !important;
    height: 52px;
}

.notifiction .notif-box {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    background: #fff;
    transition: 0.25s;
}

.notifiction .notif-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
}

.notifiction .notif-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ff4d4d30;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notifiction .notif-icon i {
    font-size: 20px;
    color: #ff4d4d;
}

.notifiction .notif-time {
    font-size: 12px;
    color: #666;
    margin-top: 3px;
}

/* green highlight for first notification */
.notifiction .notif-active {
    border: 1px solid #6eb049 !important;
    background: #e9f7ea !important;
}

.notifiction .notif-active .notif-icon {
    background: #63a24a30 !important;
}

.notifiction .notif-active .notif-icon i {
    color: #63a24a !important;
}

.main-container-profile {
    max-width: 950px;
    margin: auto;
    padding: 50px 20px;
}

/* Card style */
.main-container-profile .custom-card {
    /* background: #fff; */
    /* padding: 35px; */
    border-radius: 12px;
    /* box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.06); */
    margin-bottom: 40px;
}

/* Section titles */
.main-container-profile .sections-title {
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

/* Input design */
.main-container-profile.custom-input {
    height: 48px;
    border-radius: 8px;
    border: 1px solid #ced4da;
    font-size: 15px;
    padding-left: 15px;
}

/* Password wrapper */
.main-container-profile .password-wrapper {
    position: relative;
}

.main-container-profile .password-input {
    padding-right: 42px;
}

.main-container-profile .password-toggle {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    font-size: 18px;
    cursor: pointer;
    color: #777;
}

.main-container-profile .password-toggle:hover {
    color: #000;
}

.main-container-profile .btn-submit {
    padding: 14px 28px;
    transition: 0.3s;
    background: #e63538;
    color: var(--white);
    font-weight: 500;
    border: none;
    border-radius: 30px;
    transition: 0.3s;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    line-height: 100%;
    transition: 0.3s ease;
    animation: pulse 2s infinite;
}

.redeem-gift-card .btn-submit {
    padding: 14px 28px;
    transition: 0.3s;
    background: #e63538;
    color: var(--white);
    font-weight: 500;
    border: none;
    border-radius: 30px;
    transition: 0.3s;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    line-height: 100%;
    transition: 0.3s ease;
    animation: pulse 2s infinite;
}

.sections-title .btn-submit {
    padding: 14px 28px;
    transition: 0.3s;
    background: #6eb049;
    color: var(--white);
    font-weight: 500;
    border: none;
    border-radius: 30px;
    transition: 0.3s;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    line-height: 100%;
    transition: 0.3s ease;
    animation: pulse 2s infinite;
}

/* Responsive */
@media (max-width: 575px) {
    .main-container-profile .custom-card {
        /* padding: 4px; */
    }

    .food-card {
        padding: 0px !important;
    }

    .main-container-profile .section-title {
        font-size: 1.15rem;
    }

    .nav-section .nav-icon-grid,
    .nav-section .nav-icon-grid-desktop {
        gap: 10px !important;
    }

    .nav-section .nav-icon-grid li img,
    .nav-section .nav-icon-grid-desktop li img {
        width: 58px !important;
        height: 47px !important;
    }

    .nav-section .nav-icon-grid span,
    .nav-section .nav-icon-grid-desktop span {
        font-size: 10px !important;
    }
}

/* profile lable */
.profile-label {
    color: #666;
}

/* Overlay */
.profile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 999;
}

/* Popup Box */
.profile-popup {
    position: absolute;
    top: 12%;
    right: 40px;
    width: 300px;
    background: #fff;
    border-radius: 6px;
    padding: 25px;
    border: 2px solid var(--green-line);
    display: none;
    z-index: 1000;
    animation: fadeIn 0.2s ease-in-out;
}

/* Menu */
.profile-menu {
    list-style: disc;
    padding-left: 25px;
}

.profile-menu li {
    padding: 10px 0 10px 5px;
    list-style-position: outside;
    font-size: 15px;
    position: relative;
}

/* Make the links clean */
.profile-menu li a {
    text-decoration: none;
    color: #000;
    /* black text like screenshot */
}

.profile-menu li a:hover {
    color: var(--green-line);
    /* hover color optional */
}

.badge-count {
    background: #ff3b57;
    color: white;
    border-radius: 50%;
    padding: 3px 7px;
    font-size: 10px;
    margin-left: 10px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* WRAPPER FOR MOBILE + DESKTOP MENU */
.nav-section .nav-icon-grid,
.nav-section .nav-icon-grid-desktop {
    display: flex;
    gap: 25px;
    justify-content: space-between;
    padding: 0;
    list-style: none;
    overflow-x: auto;
}

.nav-section {
    background-color: #fff;
    text-align: center;
}

.nav-section .nav-icon-grid-desktop {
    margin: 10px 0;
}

/* ICON ITEMS */
.nav-section .nav-icon-grid li a,
.nav-section .nav-icon-grid-desktop li a {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
}

.nav-section .nav-icon-grid li img,
.nav-section .nav-icon-grid-desktop li img {
    width: 79px;
    height: 79px;
    object-fit: fill;
    border-radius: 50%;
    /* border: 3px solid var(--green-line); */
}

/* LABEL TEXT */
.nav-section .nav-icon-grid span,
.nav-section .nav-icon-grid-desktop span {
    font-size: 14px;
    font-weight: 500;
    margin-top: 6px;
    color: #000;
}

/* ACTIVE STATE */
.nav-section .nav-icon-grid a.active span,
.nav-section .nav-icon-grid-desktop a.active span {
    color: #00a859;
}

.coupon-card {
    /* width: 250px; */
    background: #c00000;
    padding: 20px;
    border-radius: 15px;
    color: #fff;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.coupon-id {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
}

.coupon-off {
    background: #ff5823;
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
}

.coupon-text {
    margin: 10px 0;
    font-size: 14px;
    opacity: 0.9;
}

.copy-btn {
    width: 100%;
    text-align: center;
    border: none;
    padding: 10px;
    margin-top: 15px;
    border-radius: 10px;
    font-weight: 600;
    background: #fff;
    color: #c00000;
    cursor: pointer;
}

.suggestion-box {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    border: 1px solid #ddd;
    border-top: none;
    z-index: 2000;
    border-radius: 0 0 5px 5px;
    max-height: 250px;
    overflow-y: auto;
}

.suggestion-item {
    padding: 10px;
    cursor: pointer;
}

.suggestion-item:hover,
.active-item {
    background: #f2f2f2;
}

.store-card {
    background: #fff;
    border-radius: 12px;
    padding: 12px 15px;
    margin-bottom: 12px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}

.store-img-box {
    width: 46px;
    height: 46px;
    background: #f8f8f8;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-title {
    font-size: 15px;
    font-weight: 600;
}

.store-address {
    font-size: 12px;
    color: #777;
    max-width: 335px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.store-rating {
    font-size: 14px;
    font-weight: 600;
}

.store-heart i {
    font-size: 18px;
    margin-top: 6px;
}

.chip,
.rating-chip {
    padding: 8px 14px;
    border-radius: 20px;
    background: #f2f2f2;
    cursor: pointer;
}

.chip.active,
.rating-chip.active {
    background: #e63538;
    color: #fff;
    font-weight: 600;
}

.member-card {
    background: #0f172a;
    /* dark background */
    border-radius: 10px;
    padding: 12px;
    color: #fff;
}

.status-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
}

.status-circle.pending {
    background: #ffb84d;
    /* Yellow */
}

.status-circle.completed {
    background: #4caf50;
    /* Green */
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.pending {
    background-color: #e6a300;
    /* Yellow */
}

.status-dot.completed {
    background-color: #4caf50;
    /* Green */
}

.btn-primary {
    background: #e63538 !important;
    width: 100%;
    color: var(--white);
    font-weight: 600;
    border: none;

    border-radius: 30px;
    transition: 0.3s;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
    line-height: 100%;
    transition: 0.3s ease;
    animation: pulse 2s infinite;
}

.btn-primary:hover {
    background-color: #e63538;
    transform: translateY(-2px);
}

.btn-loader {
    font-weight: 600;
}

.disabled-day {
    pointer-events: none;
    opacity: 0.4;
}

.notifyjs-corner {
    font-size: 12px;
}

.text-success {
    color: #e63538 !important;
}


/* new css 1 */
.footer-hours {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 5px;
}
.footer{
    margin-top: 2.5rem;
}

.footer-call-text {
  font-size: 13px;
  color: #bbb;
  margin-bottom: 15px;
}

.btn-order {
  background: white;
  color: black;
  padding: 10px 35px;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
}

.btn-orders {
  background: white;
  color: black;
  padding: 10px 35px;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
}

.btn-menu {
  border: 2px solid white;
  padding: 10px 35px;
  border-radius: 40px;
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
}


/* new css */
/* #### */
.pt-header {
    width: 100%;
    background: #c00000;
    padding: 10px 0;
}

.pt-container {
    width: 95%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4%;
}

/* -------- LEFT LOGO -------- */
.pt-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pt-logo {
    height: 70px;
}

.pt-divider {
    width: 2px;
    height: 80px;
    border-right: 2px dotted #ffffff80;
}

/* -------- CENTER MENU -------- */
.pt-menu {
    display: flex;
    gap: 30px;
    flex-grow: 1;
    justify-content: center;
}

.pt-menu a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 100%;
    font-style: bold;
    text-transform: uppercase;
}

/* -------- RIGHT SIDE -------- */
.pt-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.pt-icon {
    font-size: 1.3rem;
    color: white;
    cursor: pointer;
}

/* Cart badge */
.pt-cart-box {
    position: relative;
}

.pt-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: gold;
    color: black;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 50%;
}

/* Sign In */
.pt-signin {
    display: flex;
    align-items: center;
    gap: 5px;
    color: white;
    cursor: pointer;
}

/* -------- MOBILE MENU BUTTON -------- */
.pt-mobile-btn {
    display: none;
    background: none;
    border: 0;
    color: white;
    font-size: 30px;
}

/* -------- MOBILE DRAWER -------- */
.pt-mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 260px;
    height: 100vh;
    background: #c00000;
    padding: 20px;
    transition: 0.4s ease;
    z-index: 9999;
}

.pt-mobile-menu.open {
    left: 0;
}

.pt-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
}

.pt-mobile-links a {
    display: block;
    color: white;
    text-decoration: none;
    margin: 15px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

/* -------- RESPONSIVE -------- */
@media (max-width: 992px) {
    .pt-menu {
        display: none;
    }

    .pt-mobile-btn {
        display: block;
    }

    .pt-divider {
        display: none;
    }
}

.special-card {
    height: 230px;
    border-radius: 18px;
    padding: 25px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.special-title {
    font-family: "Brush Script MT", cursive;
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #ffd355;
}

.special-name {
    font-size: 1.5rem;
    font-weight: 800;
    max-width: 60%;
    line-height: 1.1;
}

.special-img {
    position: absolute;
    right: 20px;
    bottom: 10px;
    width: 150px;
}

.btn-special {
    margin-top: 18px;
    display: inline-block;
    padding: 8px 25px;
    border-radius: 25px;
    border: 2px solid var(--white);
    background: transparent;
    color: var(--white);
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: 600;
}

.food-border {
    border: 1px solid #555555;
    border-radius: 20px;
    padding: 10px;
    height: 270px;
    width: 100%;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .special-card {
        /* height: auto; */
        padding-bottom: 130px;
    }

    .special-img {
        width: 130px;
    }
    .footer{
        margin-top: 0.8rem !important;
    }
}

.purple-bg {
    background: radial-gradient(circle at center, #d819d8 0%, #7e0586 100%);
}

.red-bg {
    background: radial-gradient(circle at center, #f4494a 0%, #92140e 100%);
}

.green-bg {
    background: radial-gradient(circle at center, #addb55 0%, #3c6612 100%);
}

.section-title {
    font-size: 1.3rem;
    color: var(--accent);
    /* font-style: italic; */
    margin-top: 36px;
}

.main-heading {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 18px;
}

/* Tabs / Pills */
.menu-tabs {
    gap: .5rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.menu-tabs .tab-btn {
    background: #FFE5E6;
    border: none;
    border-radius: 30px;
    padding: 9px 35px;
    font-size: 14px;
    cursor: pointer;
}

.menu-tabs .tab-btn.active {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .06);
}

/* Cards */
.food-card {
    border-radius: 12px;
    padding: 16px;

    transition: box-shadow 0.18s ease, transform 0.12s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none !important;
}

.food-card:hover {
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.food-card .qty-btn{
    border: none;
    background: transparent;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    border: 3px solid #fff;
    border-radius: 50%;
    padding: 0px 9px;
    cursor: pointer;
}
.food-card .qty-count{
    font-size: 23px;
    font-weight: 600;
    padding: 1px 12px;
}

.food-img {
    width: 100%;
    max-width: 250px;
    height: 100%;
    max-height: 200px;
    /* object-fit: contain; */
    margin: 8px auto 6px auto;
    display: block;
}

.heart-icon {
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-dark);
}

.text-start h6 {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
}

.price {
    font-weight: 700;
    font-size: 1.2rem;

    color: var(--text-dark);
    overflow: hidden;

    text-wrap: nowrap;
    text-overflow: ellipsis;
}

.add-btns {
    background: var(--accent);
    color: var(--white);
    padding: 8px 22px;
    border-radius: 30px;
    border: none;
}
.add-btns:hover {
    background: var(--accent);
    color: var(--white);
}

/* View more */
.view-more {
    background: var(--accent);
    color: var(--white);
    padding: 8px 22px;
    border-radius: 30px;
    border: none;
}

/* Small text */
.desc {
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 8px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* responsive spacing */
/* .cards-row {
    margin-top: 8px;
} */

/* Hide filtered */
.d-none-filter {
    display: none !important;
}

/* FIX: keep bootstrap grid aligned LEFT */
#cardsContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start !important;
    /* ⭐ FORCE LEFT ALIGN */
}

#cardsContainer > .col-12 {
    display: block;
}

/* Hidden items on filter */
.d-none-filter {
    display: none !important;
}

.banner-box {
    /* border-radius: 30px; */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.qr-img {
    width: 130px;
    height: 130px;
}

.pizza-img {
    width: 210px;
    max-width: 100%;
}

.app-title {
    color: #fff;
    font-weight: 700;
}

.app-sub {
    color: #ffecec;
    margin-top: -4px;
}

.store-img {
    width: 100px;
    height: auto;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .pizza-img {
        margin-top: 10px;
        width: 180px;
    }
    .food-border{
        width: unset !important;
    }
    .review-subtitle{
        font-size: 1.4rem !important;
    }
}

.app-banner .red-bg {
    border-radius: 20px;
    padding: 10px;
}

.testimonial-section {
    padding: 48px 16px;
    text-align: center;
    max-width: 980px;
    margin: 0 auto;
}

.review-subtitle {
    font-size: 1.9rem;
    color: var(--accent);
    font-style: italic;
    line-height: 100%;
    margin-bottom: 6px;
}

.review-title {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 100%;
    margin-bottom: 18px;
}

/* Swiper slide */
.swiper {
    padding-top: 8px !important;
    padding-bottom: 40px !important;
}

.swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.testimonial-box {
    max-width: 760px;
    margin: 0 auto;
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.quote-icon {
    font-size: 44px;
    color: #d60000;
    line-height: 1;
}

.testimonial-text {
    font-size: 15px;
    color: #333;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}

.author-name {
    font-weight: 700;
    margin-top: 6px;
}

/* Pagination dots */
.swiper-pagination {
    bottom: 8px !important;
}

.swiper-pagination-bullet {
    background: #ddd !important;
    opacity: 1 !important;
    width: 10px !important;
    height: 10px !important;
}

.swiper-pagination-bullet-active {
    background: #d60000 !important;
}

/* Navigation arrows */
.swiper-button-next,
.swiper-button-prev {
    color: #222 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.9) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 14px !important;
    color: #222 !important;
}

/* Responsive tweaks */
@media (max-width: 640px) {
    .review-title {
        font-size: 22px;
    }

    .testimonial-text {
        font-size: 14px;
        padding: 0 14px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    /* hide arrows on small screens */
}
.fav-icon {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 20px;
    color: #555;
    cursor: pointer;
    transition: 0.2s;
}

.fav-icon:hover {
    color: #ff3b3b;
}
.pizza-detail-section {
    padding: 60px 20px;
}

.pizza-img {
    width: 100%;
    max-width: 380px;
}

.pizza-title {
    font-size: 28px;
    font-weight: 600;
}

.pizza-desc {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    max-width: 400px;
}

/* Radio buttons */
.size-option {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 6px;
}

@media (max-width: 768px) {
    .pizza-detail-section {
        text-align: center;
    }
    .pizza-desc {
        margin: auto;
    }
    .qty-title {
        display: block;
        margin-top: 15px;
    }
}
.topping-title {
    color: #e40000;
    font-weight: 600;
    margin-bottom: 8px;
}

.topping-item {
    display: block;
    color: #555555;
    font-size: 14px;
    margin-bottom: 6px;
    cursor: pointer;
}

.topping-item input {
    margin-right: 6px;
}

@media (max-width: 576px) {
    .topping-title {
        font-size: 15px;
    }
    .testimonial-section{
        padding: 6px 16px !important;
    }
}
.desc-title {
    color: #e40000;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.desc-text {
    font-size: 14px;
    color: #444;
    max-width: 900px;
    line-height: 1.6;
}

.desc-subtitle {
    margin-top: 18px;
    font-size: 16px;
    font-weight: 600;
}

.desc-list {
    margin-top: 10px;
    padding-left: 18px;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

.top-line {
    border: 0;
    border-top: 1px solid #ddd;
    margin-bottom: 20px;
}

.order-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
}

.order-method label {
    margin-right: 25px;
    font-size: 14px;
    cursor: pointer;
}

.address-box {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 500px;
}

.addr-left {
    display: flex;
    gap: 8px;
}

.addr-icon {
    font-size: 20px;
    color: red;
}

.addr-text {
    font-size: 14px;
    line-height: 1.3;
    margin: 0;
}

.change-btn {
    background: #ff2e2e;
    border: none;
    color: white;
    font-size: 12px;
    padding: 8px 18px;
    border-radius: 20px;
    cursor: pointer;
}

/* Time Section */
.time-row {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.time-box {
    display: flex;
    flex-direction: column;
}

.time-label {
    font-size: 14px;
    margin-bottom: 5px;
}

.time-select {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 8px;
    width: 180px;
    font-size: 14px;
    background: #fff;
}

.schedule-text {
    margin-top: 10px;
    font-size: 13px;
    color: #444;
}

/* Responsive */
@media (max-width: 600px) {
    .address-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .change-btn {
        width: 100%;
        text-align: center;
    }

    .time-select {
        width: 100%;
    }
    .order-tab {
        width: 100%;
    }
}
.order-tab {
    border: 2px solid #d1d1d1;
    padding: 8px 70px;
    border-radius: 50px;
    font-weight: 600;
    background: none;
    transition: 0.3s;
    font-size: 1.7rem;
}

.order-tab.active {
    background: var(--accent);
    color: var(--white) !important;
    border-color: #ff3355;
}

.order-tab:hover {
    border-color: var(--accent-hover);
    color: #ff3355;
}
.status-icon {
    font-size: 1.5rem;
}
.contact-wrapper-uniq {
    padding: 40px 20px;
}

.contact-map-uniq iframe {
    width: 100%;
    height: 300px;
    /* border: 4px solid #1d9bf0; */
    border-radius: 0px;
}

.contact-box-left-uniq i {
    color: var(--accent);
    font-size: 20px;
    margin-right: 10px;
}

.social-icons-uniq i {
    font-size: 18px;
    margin-right: 10px;
    color: var(--accent);
    cursor: pointer;
    border: 1px solid var(--accent);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-submit-uniq {
    background: var(--accent);
    color: #fff;
    font-weight: 500;
    padding: 10px 35px;
    border-radius: 30px;
    border: none;
    transition: 0.3s;
}

.btn-submit-uniq:hover {
    background: #d62828;
}

@media (max-width: 768px) {
    .contact-right-form-uniq {
        margin-top: 30px;
    }
    .contact-wrapper-uniq {
        padding: 40px 15px;
    }
    .social-icons-uniq {
        justify-content: left !important;
    }
}
/* ---------- POPUP OVERLAY ---------- */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

/* ---------- POPUP BOX ---------- */
.popup-box {
    width: 500px;
    max-width: 95%;
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    position: relative;
}

.popup-box2 {
    width: 800px;
    max-width: 95%;
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    position: relative;
}

/* ---------- CLOSE BUTTON ---------- */
.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 25px;
    cursor: pointer;
    font-weight: bold;
}

/* ---------- ADDRESS ITEM ---------- */
.address-item {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 12px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.address-item.active {
    border-color: #ff3c3c;
    background: #ffeaea;
}

/* ---------- BUTTONS ---------- */
.main-btn {
    width: 100%;
    padding: 15px;
    border: none;
    background: #ff3c3c;
    color: #fff;
    font-size: 16px;
    border-radius: 25px;
    margin-top: 20px;
}

.input-box {
    width: 100%;
    padding: 20px;
    /* border-radius:10px; */
    border: 1px solid #ccc;
    margin-top: 10px;
}

/* ---------- MAP AREA ---------- */
.map-area {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.map-area iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.pin {
    width: 20px;
    height: 20px;
    background: red;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%);
}

.big-icon {
    font-size: 55px;
    color: #ff3b3b;
    background: #ffe9e9;
    padding: 30px;
    border-radius: 50%;
    margin-bottom: 10px;
    width: 35%;
}

.loction-head {
    text-align: center;
}

.loction-head h2 {
    font-size: 1.4rem;
    font-weight: 600;
    padding: 10px;
}

.current-location-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.location-left {
    display: flex;
    gap: 12px;
    align-items: center;
}

.location-icon {
    color: #ff3c3c;
    font-size: 20px;
}

.location-title {
    font-weight: bold;
    font-size: 16px;
}

.location-sub {
    font-size: 13px;
    color: #666;
    margin-top: 3px;
}

.enable-btn {
    background: #ff3c3c;
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
}

.enable-btn.enabled {
    background: #28a745;
    /* green */
}

.divider {
    margin: 15px 0;
    border: 0;
    border-top: 1px solid #ddd;
}

.saved-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 16px;
}

/* select2 */
.login_select .select2-container,
.login_select .selection,
.login_select .select2-selection--single{
  height: 100% !important;
}
.login_select .select2-container--default .select2-selection--single {
    display: flex;
    justify-content: center;
    align-items: center;
}
.login_select .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
}
.login_select .select2-container--default .select2-results__option {
    font-size: 12px;
    text-align: left;
}
.login_select .select2-container--open .select2-dropdown{
  width: 100% !important;
}


