:root {
    --primary: #000;
}

/* Food page css */

.menu-section {
    padding: 0px 0;
}

/* Card Styles */
.price-display-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.main-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.per-person-text {
    font-size: 0.85rem;
    color: #6c5a4a;
}

.exclude-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 80px;
}

.friends-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.summary-card {
    background: linear-gradient(135deg, #ffffff, #ffffff);
    /* background: linear-gradient(135deg, #9b2d2f, #7e2426); */
    border-radius: 20px;
    padding: 20px;
    color: rgb(0, 0, 0);
    margin-bottom: 25px;
}

.phone-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Price Box Styles - Combined */
.price-combined-card {
    background: white;
    border-radius: 20px;
    padding: 25px 20px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.original-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #dc3545;
    margin-right: 10px;
}

.discounted-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.price-label {
    font-size: 0.75rem;
    color: #6c5a4a;
    display: block;
    margin-bottom: 8px;
}

.per-person-card {
    background: #fef7e6;
    border-radius: 16px;
    padding: 12px 20px;
    margin-bottom: 25px;
    text-align: center;
    border-left: 4px solid var(--secondary);
    display: none;
}

/* Plan Card Styles */
.plan-card {
    background: white;
    border-radius: 16px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    flex: 1;
}

.plan-card.active {
    border-color: var(--secondary);
    background: linear-gradient(135deg, #fff, #fef7e6);
}

.plan-title {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 5px;
}

.plan-subtitle {
    color: #6c5a4a;
    font-size: 0.7rem;
    margin: 0;
}

/* Day Option Styles */
.day-option {
    background: white;
    border-radius: 12px;
    padding: 10px 12px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
    text-align: center;
    flex: 1;
}

.day-option.active {
    border-color: var(--secondary);
    background: #fef7e6;
}

.day-title {
    font-weight: 600;
    font-size: 0.85rem;
}

.day-range {
    display: block;
    font-size: 0.65rem;
    color: #6c5a4a;
}

/* Week Chip Styles */
.week-chip {
    background: #fef7e6;
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.week-chip.active {
    background: #000;
    color: #fff;
}

/* Menu Item Styles */
.menu-item-card {
    background: white;
    border-radius: 20px;
    padding: 15px 20px;
    margin-bottom: 15px;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.menu-img {
    width: 100%;
    border-radius: 5%;
    margin-bottom: 13px;
}

.menu-title {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 12px;
}

.menu-details {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.menu-kcal {
    font-size: 0.75rem;
    color: var(--primary);
}

.menu-weight {
    font-size: 0.75rem;
    color: #6c5a4a;
}

.menu-type {
    font-size: 0.75rem;
    color: var(--secondary);
    font-weight: 600;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked+.toggle-slider {
    background-color: #feee00;
}

input:checked+.toggle-slider:before {
    transform: translateX(26px);
}

/* Percent Option */
.percent-option {
    background: white;
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
    flex: 1;
}

.percent-option.active {
    border-color: var(--secondary);
    background: #fef7e6;
}

.percent-title {
    font-weight: 700;
    color: var(--primary);
}

.percent-value {
    display: block;
    font-size: 0.75rem;
}

/* Checkbox Styles */
.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.custom-checkbox:last-child {
    margin-bottom: 0;
}

.custom-checkbox input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--secondary);
}

/* Person Counter */
.person-counter {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fef7e6;
    padding: 6px 15px;
    border-radius: 60px;
    width: fit-content;
    margin-top: 12px;
}

.counter-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: var(--primary);
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
}

.get-started-btn {
    background: #FFE11C;
    /* background: linear-gradient(95deg, #9b2d2f, #c0392b); */
    border: none;
    color: black;
    padding: 12px 25px;
    border-radius: 60px;
    font-weight: 600;
    width: 100%;
}

/* Terms Section */
.terms-text {
    font-size: 0.7rem;
    color: #6c5a4a;
    text-align: center;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.payment-icon {
    font-size: 1.8rem;
    color: var(--primary);
}

.md\:text-display-lg {
    font-size: 45px !important;
}

.price_font_size {
    font-size: 47px;
    font-style: italic;
}

.bg-yellow-color {
    background-color: #FFE11C;
}

span.workspace_p {
    color: #000;
    font-weight: 700;
    font-style: italic;
}

.swiper-button-next,
.swiper-button-prev {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 17px;
    font-weight: 700;
}

.logo_img img {
    width: 250px;
}

[type='checkbox']:focus,
[type='radio']:focus {
    box-shadow: none !important;
}

.started_btn {
    background: #ffff1c;
    color: #000;
    font-weight: 600;
}

.meal_slider.text-center {
    height: 54px;
}

a.get_started_btn_meal {
    padding: 15px 20px;
    background: #11CC9A;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
}

.meal-slider-section {
    background: #dfeeee;
}

.mealSlider {
    padding: 110px 0px 50px;
    height: 580px !important;
}

.meal-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    position: relative;
    padding-top: 70px;
    height: 350px;
    transition: transform 0.5s ease;
}

.meal-card:hover {
    transform: scale(1.25);
    /* transition: 0.5s; */
    z-index: 99;
}

.meal-image {
    position: absolute;
    top: -37px;
    left: 50%;
    transform: translateX(-50%);
}

.meal-image img {
    width: 100%;
    height: 100%;
    /* border-radius: 50%; */
    /* object-fit: cover; */
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, .25));
}

.meal-content {
    padding: 40px 20px 25px;
}

.meal-content h5 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.meal-content h4 {
    font-size: 13px;
    font-weight: 500;
    /* min-height: 55px; */
    color: #555;
}

.nutrition-grid {
    display: flex;
    gap: 8px;
    margin: 20px 0;
}

.nutrition-box {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px;
    text-align: center;
    flex: 1;
    min-width: 50px;
}

.nutrition-box span {
    display: block;
    font-size: 11px;
    color: #888;
}

.nutrition-box strong {
    font-size: 12px;
    color: #333;
}

.allergens h6 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.allergens p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.meal-prev,
.meal-next {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #11cc9a;
    color: #11cc9a !important;
}

.meal-prev:after,
.meal-next:after {
    font-size: 18px !important;
}

#menuItemsSlider {
    overflow: hidden;
}

#menuItemsSlider .swiper-slide {
    height: auto;
}

#menuItemsSlider .menu-item-card {
    height: 100%;
}

.menu-prev,
.menu-next {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
}

.menu-prev:after,
.menu-next:after {
    font-size: 16px;
    color: #000;
}

.phone-box {
    display: flex;
    gap: 10px;
    align-items: center;
}

.country-code {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #f1f2f5;
    border-radius: 8px;
    min-width: 105px;
    font-size: 16px;
    font-weight: 600;
}

.country-code img {
    width: 20px;
    height: 15px;
    /* object-fit: cover; */
}

.phone-box input {
    flex: 1;
    border: none;
    outline: none;
    background: #f1f2f5;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    width: 100%;
}

.floating-chat {
    font-size: 25px;
}

.floating-order {
    font-size: 20px;
}

.floating-chat,
.floating-order {
    position: fixed;
    width: 55px;
    height: 54px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
    z-index: 9999;
}

.floating-chat {
    right: 20px;
    bottom: 105px;
    background: #11CC9A;
}

.floating-order {
    right: 20px;
    bottom: 20px;
    background: #feee00;
    color: #000;
}

@media (max-width: 768px) {
    .menu-item-card {
        flex-direction: column;
        text-align: center;
    }
}


/* ===================== RESPONSIVE ===================== */
@media (max-width: 991px) {
    .hcircle {
        width: 320px;
        height: 320px;
    }

    .fc1,
    .fc2,
    .fc3 {
        transform: scale(0.82);
        transform-origin: center;
    }

    .ggrid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gitem:first-child {
        grid-row: span 1;
    }

    .asm {
        display: none;
    }

    .mpbox .mpimg,
    .mpbox .mpbody {
        width: 100%;
    }

    .mpbox .mpimg {
        border-radius: 22px 22px 0 0;
        min-height: 240px;
    }

    .mpbox .mpbody {
        padding: 22px 18px;
    }

    /* Timeline mobile: collapse to single column */
    .timeline::before {
        left: 16px;
    }

    .tli {
        grid-template-columns: 32px 1fr !important;
    }

    .tl-left {
        display: none !important;
    }

    .tl-right {
        display: block !important;
        visibility: visible !important;
        padding-left: 18px !important;
        text-align: left !important;
    }

    .tl-center {
        padding-top: 5px;
    }

    .tli:nth-child(odd) .tl-right,
    .tli:nth-child(even) .tl-right {
        visibility: visible !important;
        display: block !important;
    }
}

@media (max-width: 767px) {
    section {
        padding: 55px 0;
    }

    #topbar .top-contact span:last-child {
        display: none;
    }

    .hcircle {
        width: 260px;
        height: 260px;
    }

    /* Hide only hero floating cards, NOT form cards */
    .fcard.fc1,
    .fcard.fc2,
    .fcard.fc3 {
        display: none !important;
    }

    .hstats {
        display: none !important;
    }

    .ggrid {
        grid-template-columns: 1fr 1fr;
    }

    .cdwrap {
        gap: 8px;
    }

    .cditem {
        min-width: 56px;
        padding: 9px;
    }

    .nl-form-wrap {
        flex-direction: column;
        padding: 0 8px;
    }

    .nlinput,
    .nlbtn {
        width: 100%;
        border-radius: 12px;
    }

    .fcard {
        padding: 22px 18px;
    }
}

@media (max-width: 480px) {
    .hcircle {
        width: 220px;
        height: 220px;
    }

    .htitle {
        font-size: 2.4rem;
    }

    .stitle {
        font-size: 1.8rem;
    }
}


.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.meal-card-shadow {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
    .mobile-padding {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ── Scoped to .mpd-* to avoid conflicts with existing site styles ── */
.mpd-plans-section {
    font-family: 'Inter', sans-serif;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.mpd-plans-label {
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #11CC9A;
    text-transform: uppercase;
    margin: 0 0 8px;
}

.mpd-plans-heading {
    text-align: center;
    font-size: 28px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 8px;
}

.mpd-plans-sub {
    text-align: center;
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 40px;
}

.mpd-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mpd-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.mpd-card.mpd-featured {
    border: 2px solid #feee00;
}

.mpd-badge {
    display: inline-block;
    background: #fbf48f;
    color: #000000;
    font-size: 11px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 8px;
    margin-bottom: 14px;
    width: fit-content;
}

.mpd-badge-spacer {
    height: 26px;
    display: block;
    margin-bottom: 14px;
}

.mpd-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.mpd-icon-green {
    background: #fbf7bd;
    color: #000000;
}

.mpd-icon-teal {
    background: #fbf48f;
    color: #000000;
}

.mpd-icon-dark {
    background: #feee00;
    color: #000000;
}

.mpd-card-name {
    font-size: 20px;
    font-weight: 500;
    color: #111827;
    margin: 0 0 4px;
}

.mpd-card-tagline {
    font-size: 13px;
    color: #6b7280;
    margin: 0 0 16px;
}

.mpd-price-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 4px;
}

.mpd-price-aed {
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
}

.mpd-price-amount {
    font-size: 36px;
    font-weight: 500;
    color: #111827;
    line-height: 1;
}

.mpd-price-period {
    font-size: 13px;
    color: #6b7280;
}

.mpd-per-meal {
    font-size: 12px;
    font-weight: 500;
    color: #11CC9A;
    margin: 0 0 16px;
}

.mpd-divider {
    border: none;
    border-top: 1px solid #f0f0f0;
    margin: 0 0 16px;
}

.mpd-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.mpd-specs li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.mpd-check {
    color: #11CC9A;
    font-size: 13px;
    flex-shrink: 0;
    line-height: 1;
}

.mpd-spec-label {
    color: #6b7280;
    flex: 1;
}

.mpd-spec-value {
    font-weight: 500;
    color: #111827;
}

.mpd-cta {
    display: block;
    text-align: center;
    padding: 11px 0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.15s, background 0.15s;
}

.mpd-cta-outline {
    background: transparent;
    border: 1.5px solid #000000;
    color: #000000;
}

.mpd-cta-outline:hover {
    background: #E1F5EE;
}

.mpd-cta-filled {
    background: #4d4e4e;
    color: #ffffff;
    border: none;
}

.mpd-cta-filled:hover {
    opacity: 0.88;
}

.mpd-cta-dark {
    background: #000000;
    color: #ffffff;
    border: none;
}

.mpd-cta-dark:hover {
    opacity: 0.88;
}

/* Cookie Banner Styling */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 550px;
    background: #1a1c1c;
    color: #ffffff;
    border-radius: 20px;
    padding: 20px 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 99999;
    display: none;
    font-family: 'Inter', sans-serif;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-text h5 {
    margin: 0 0 8px 0;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #cccccc;
}

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

.btn-cookie {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-cookie.accept {
    background: #FEEE00;
    color: #000000;
}

.btn-cookie.accept:hover {
    background: #e6d500;
}

.btn-cookie.reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #666;
}

.btn-cookie.reject:hover {
    background: #333;
}

.btn-cookie.settings {
    background: transparent;
    color: #aaaaaa;
    padding: 8px 10px;
    border: none;
}

.btn-cookie.settings:hover {
    color: #ffffff;
}

/* Real-time validation for phone input */
.phone-box input.input-error {
    border-color: #dc3545 !important;
}

.phone-box input.input-success {
    border-color: #28a745 !important;
}

.form-error-phone {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
    display: none;
}

.form-error-phone.show {
    display: block;
}

.form-error-phone i {
    margin-right: 5px;
}

.kitchen-slide-img img {
    height: 100%;
}


div#menuItemsContainer {
    height: auto !important;
}

#mpd-chat-bubble {
    position: fixed;
    bottom: 178px;
    right: 23px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #2e7d32;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 9999;
}

    #mpd-chat-window {
      position: fixed;
      bottom: 90px;
      right: 85px;
      width: 340px;
      max-width: 90vw;
      height: 460px;
      max-height: 70vh;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.25);
      display: none;
      flex-direction: column;
      overflow: hidden;
      z-index: 9999;
      font-family: -apple-system, Segoe UI, Roboto, sans-serif;
    }

    #mpd-chat-header {
      background: #2e7d32;
      color: #fff;
      padding: 14px 16px;
      font-weight: 600;
      font-size: 15px;
    }

    #mpd-chat-messages {
      flex: 1;
      padding: 12px;
      overflow-y: auto;
      background: #f7f7f7;
    }

    .mpd-msg {
      margin-bottom: 10px;
      max-width: 80%;
      padding: 8px 12px;
      border-radius: 14px;
      font-size: 14px;
      line-height: 1.4;
      white-space: pre-wrap;
    }

    .mpd-msg.customer {
      background: #2e7d32;
      color: #fff;
      margin-left: auto;
      border-bottom-right-radius: 3px;
    }

    .mpd-msg.bot {
      background: #e8e8e8;
      color: #222;
      margin-right: auto;
      border-bottom-left-radius: 3px;
    }

    #mpd-chat-input-row {
      display: flex;
      border-top: 1px solid #ddd;
    }

    #mpd-chat-input {
      flex: 1;
      border: none;
      padding: 12px;
      font-size: 14px;
      outline: none;
    }

    #mpd-chat-send {
      background: #2e7d32;
      color: #fff;
      border: none;
      padding: 0 16px;
      cursor: pointer;
      font-size: 14px;
    }

    #mpd-chat-send:disabled {
      opacity: 0.5;
      cursor: default;
    }


/* Mobile Responsive */
@media (max-width: 480px) {
    .cookie-banner {
        bottom: 0;
        left: 0;
        right: 0;
        max-width: 100%;
        border-radius: 20px 20px 0 0;
    }

    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-cookie {
        width: 100%;
    }
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .mpd-cards-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .mpd-badge-spacer {
        display: none;
    }

    .swiper-wrapper {
        height: auto !important;
    }
}