/* ══════════════════════════════════════════════════════
   OFFERS PAGE — Mobile-First Premium CSS
   العوالي للأسفار | عروض العمرة 1448
   ══════════════════════════════════════════════════════ */

/* ─── HERO ─── */
.offers-hero {
    position: relative;
    background: url('../images/img3.jpg') center/cover no-repeat;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 90px 20px 60px;
    overflow: hidden;
}

.offers-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(6,20,60,0.92) 0%, rgba(0,0,0,0.78) 100%);
    z-index: 1;
}

.offers-hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.offers-season-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(240,192,96,0.18);
    border: 1px solid rgba(240,192,96,0.4);
    color: #f0c060;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.offers-hero-content h1 {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 10px;
    color: white;
    text-shadow: 0 3px 14px rgba(0,0,0,0.4);
}

.offers-hero-content p {
    font-size: clamp(0.88rem, 3vw, 1rem);
    color: rgba(255,255,255,0.8);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.offers-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 3;
}
.offers-hero-wave svg { display: block; width: calc(100% + 1.3px); height: 50px; }

/* ─── FILTER BAR ─── */
.filter-bar-wrap {
    background: #f4f7f6;
    padding: 0 16px;
    position: sticky;
    top: 64px;
    z-index: 100;
}

.filter-bar {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 14px 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    border-bottom: 3px solid var(--ramadan-gold);
    transform: translateY(-24px);
}

.filter-group {
    flex: 1;
    min-width: 160px;
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #eee;
    padding: 0 12px;
    height: 46px;
    gap: 10px;
}

.filter-group i {
    color: var(--ramadan-gold);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.filter-group select {
    width: 100%;
    border: none;
    background: transparent;
    font-family: 'Tajawal', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
    outline: none;
    cursor: pointer;
}

.reset-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #e74c3c;
    color: white;
    border: none;
    padding: 0 20px;
    height: 46px;
    border-radius: 10px;
    font-family: 'Tajawal', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
    flex-shrink: 0;
}
.reset-btn:hover { background: #c0392b; }

/* ─── RESULTS BAR ─── */
.results-bar {
    background: #f4f7f6;
    padding: 0 16px 12px;
}
.results-count {
    font-size: 0.82rem;
    color: #888;
    font-weight: 600;
}

/* ─── OFFERS CONTAINER & GRID ─── */
.offers-container {
    padding-top: 0;
    padding-bottom: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

/* Loader */
.loader-wrap {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--primary-blue);
}
.loader-spinner {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 12px;
    animation: none;
}
.loader-wrap p { font-size: 1rem; color: #555; font-weight: 600; }

/* ─── OFFER CARD ─── */
.offer-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    border: 1.5px solid #eef0f4;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    transition: 0.3s cubic-bezier(0.4,0,0.2,1);
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    -webkit-tap-highlight-color: transparent;
}

.offer-card:hover:not(.completed) {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    border-color: var(--ramadan-gold);
}

.offer-card:active:not(.completed) {
    transform: scale(0.98);
}

.offer-card.completed {
    filter: grayscale(80%);
    opacity: 0.7;
    cursor: default;
    pointer-events: none;
}

.offer-card.completed .btn-details {
    background: #e74c3c !important;
    color: white !important;
    border-color: #e74c3c !important;
}

/* Card image */
.offer-img-box {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.offer-card:hover .card-img { transform: scale(1.06); }

/* Badges */
.card-badges {
    position: absolute;
    top: 12px;
    right: 12px;
    left: 12px;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    gap: 6px;
}

.badge {
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    white-space: nowrap;
    max-width: 48%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.badge-gold   { background: var(--ramadan-gold); color: white; }
.badge-blue   { background: #2980b9; color: white; }
.badge-red    { background: #e74c3c; color: white; }
.badge-purple { background: #8e44ad; color: white; }
.badge-teal   { background: #16a085; color: white; }
.badge-orange { background: #f26329; color: white; }

/* Discount tag */
.discount-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.78rem;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(231,76,60,0.35);
    animation: pulsePop 2.2s ease-in-out infinite;
}

@keyframes pulsePop {
    0%,100% { transform: scale(1); }
    50%      { transform: scale(1.04); }
}

/* Card body */
.card-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0;
}

.title-row {
    margin-bottom: 12px;
}

.hotel-info h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #1a2a3a;
    margin-bottom: 6px;
    line-height: 1.25;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 0.82rem;
    margin-bottom: 4px;
}

.info-row i { color: var(--ramadan-gold); font-size: 0.78rem; width: 12px; }

/* Price block */
.min-price-tag {
    background: linear-gradient(135deg, #fff8f0, #fffdf5);
    border: 1px solid #f0e4ce;
    border-radius: 10px;
    padding: 10px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.min-price-tag span:first-child {
    font-size: 0.82rem;
    font-weight: 700;
    color: #888;
}

.min-price-val {
    font-size: 1.35rem !important;
    font-weight: 900 !important;
    color: var(--ramadan-gold) !important;
    font-family: 'Tajawal', sans-serif;
}

/* Discount progress */
.discount-progress {
    position: relative;
    height: 20px;
    border-radius: 999px;
    background: #f3f3f3;
    border: 1px solid #e6e6e6;
    overflow: hidden;
    margin-bottom: 10px;
}

.discount-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #f26329, #f39c12);
    border-radius: 999px;
}

.discount-progress span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}

/* CTA button */
.btn-details {
    width: 100%;
    padding: 13px;
    background: transparent;
    border: 2px solid var(--ramadan-gold);
    color: var(--ramadan-gold);
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    transition: 0.25s;
    font-family: 'Tajawal', sans-serif;
    margin-top: auto;
}

.offer-card:hover .btn-details,
.btn-details:active {
    background: var(--ramadan-gold);
    color: white;
}

/* ══════════════════════════════════════════
   BOOKING MODAL — Mobile Bottom Sheet
══════════════════════════════════════════ */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 99999;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
}

.modal-sheet {
    background: white;
    width: 100%;
    max-width: 520px;
    border-radius: 24px 24px 0 0;
    max-height: 92svh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: slideUpSheet 0.35s cubic-bezier(0.4,0,0.2,1);
    position: relative;
}

@keyframes slideUpSheet {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

/* Desktop: center the modal */
@media (min-width: 600px) {
    .modal-backdrop {
        align-items: center;
        padding: 16px;
    }
    .modal-sheet {
        border-radius: 20px;
        max-height: 90vh;
        max-width: 480px;
    }
    .confirm-sheet {
        max-width: 440px;
    }
}

/* Drag handle */
.modal-drag-handle {
    width: 40px;
    height: 4px;
    background: #d1d5db;
    border-radius: 999px;
    margin: 12px auto 0;
    flex-shrink: 0;
}

/* Close button */
.modal-close-btn {
    position: absolute;
    top: 12px;
    left: 14px;
    width: 34px;
    height: 34px;
    border: none;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #555;
    cursor: pointer;
    z-index: 10;
    transition: 0.2s;
}
.modal-close-btn:hover { background: #e74c3c; color: white; }

/* ── Hotel header with big image ── */
.modal-hotel-header {
    flex-shrink: 0;
}

.modal-hotel-img-wrap {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: #111;
}

.modal-hotel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.modal-hotel-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%);
}

.modal-hotel-meta {
    position: absolute;
    bottom: 10px;
    right: 14px;
    left: 48px;
    z-index: 2;
}

.modal-hotel-meta strong {
    display: block;
    color: white;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    margin-bottom: 2px;
}

.modal-hotel-meta span {
    display: block;
    color: rgba(255,255,255,0.78);
    font-size: 0.8rem;
    font-weight: 500;
}

/* Thumbnail strip */
.modal-img-thumbs {
    position: absolute;
    bottom: 10px;
    left: 14px;
    display: flex;
    gap: 5px;
    z-index: 3;
}

.modal-img-thumbs img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.5);
    cursor: pointer;
    transition: 0.2s;
}

.modal-img-thumbs img:hover,
.modal-img-thumbs img.active {
    border-color: #f0c060;
    transform: scale(1.08);
}

/* ── Scroll body ── */
.modal-scroll-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 16px 8px;
    -webkit-overflow-scrolling: touch;
}

.modal-section {
    margin-bottom: 20px;
}

.modal-section-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: #1a2a3a;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-section-title i {
    color: var(--ramadan-gold);
    font-size: 0.85rem;
}

.age-note {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--primary-orange);
    margin-right: auto;
}

/* Room chips grid */
.room-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.room-chip input { display: none; }

.room-chip-ui {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px 10px;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    background: #f9fafb;
    cursor: pointer;
    transition: 0.2s;
    text-align: center;
    min-height: 100px;
    justify-content: center;
}

.room-chip-ui i {
    font-size: 1.4rem;
    color: #aaa;
}

.room-chip-ui span {
    font-size: 0.9rem;
    font-weight: 700;
    color: #555;
}

.room-chip-ui strong {
    font-size: 0.85rem;
    color: var(--primary-orange);
    font-weight: 800;
    white-space: nowrap;
}

.room-chip input:checked + .room-chip-ui {
    border-color: var(--ramadan-gold);
    background: rgba(198,168,124,0.12);
    box-shadow: 0 4px 12px rgba(198,168,124,0.2);
    transform: scale(1.02);
}

.room-chip input:checked + .room-chip-ui i,
.room-chip input:checked + .room-chip-ui span {
    color: var(--ramadan-gold);
}

/* Pax + food row */
.modal-row-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.modal-half {}

/* Qty control */
.qty-control {
    display: flex;
    align-items: center;
    background: #f9fafb;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.qty-btn {
    width: 48px;
    height: 48px;
    border: none;
    background: transparent;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ramadan-gold);
    cursor: pointer;
    transition: 0.2s;
    flex-shrink: 0;
    touch-action: manipulation;
}

.qty-btn:active { background: rgba(198,168,124,0.12); }

.qty-display {
    flex: 1;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a2a3a;
    outline: none;
    font-family: 'Tajawal', sans-serif;
}

/* Food select */
.food-select {
    width: 100%;
    height: 44px;
    padding: 0 10px;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    font-family: 'Tajawal', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: #333;
    background: #f9fafb;
    outline: none;
    cursor: pointer;
}

.food-info-box {
    margin-top: 8px;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px dashed #dfcfb3;
    background: #fffaf0;
    color: #6e5530;
    font-size: 0.78rem;
    display: flex;
    gap: 6px;
    align-items: flex-start;
}
.food-info-box i { color: #c7902f; flex-shrink: 0; margin-top: 2px; }

/* Children chips */
.children-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.child-chip input { display: none; }

.child-chip-ui {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 14px 10px;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    background: #f9fafb;
    cursor: pointer;
    transition: 0.2s;
    text-align: center;
    min-height: 80px;
    justify-content: center;
}

.child-chip-ui i { font-size: 1.2rem; color: #aaa; }
.child-chip-ui span { font-size: 0.82rem; font-weight: 700; color: #555; }
.child-chip-ui strong { font-size: 0.8rem; color: #27ae60; }

.child-chip input:checked + .child-chip-ui {
    border-color: #27ae60;
    background: rgba(39,174,96,0.1);
    box-shadow: 0 4px 12px rgba(39,174,96,0.15);
    transform: scale(1.02);
}
.child-chip input:checked + .child-chip-ui i { color: #27ae60; }

/* ── Sticky footer ── */
.modal-sticky-footer {
    padding: 12px 16px;
    background: white;
    border-top: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.05);
    flex-shrink: 0;
}

.modal-total {
    flex: 1;
}

.modal-total span {
    display: block;
    font-size: 0.72rem;
    color: #888;
    margin-bottom: 1px;
}

.modal-total strong {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--primary-blue);
}

.modal-total .per-person {
    font-size: 0.68rem;
    color: #aaa;
    font-weight: 500;
}

.modal-cta-btn {
    background: linear-gradient(135deg, var(--ramadan-gold), #b8860b);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 14px;
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.25s;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(198,168,124,0.35);
}
.modal-cta-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(198,168,124,0.45); }
.modal-cta-btn:active { transform: scale(0.97); }

/* ══════════════════════════════════════════
   CONFIRM MODAL
══════════════════════════════════════════ */
.confirm-sheet {
    border-radius: 24px 24px 0 0;
}

.confirm-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 16px 0;
    color: var(--primary-blue);
}

.confirm-header i { font-size: 1.2rem; }
.confirm-header h3 { font-size: 1.05rem; font-weight: 800; }

.confirm-summary {
    margin: 14px 16px;
    background: #f9fafc;
    border: 1px solid #e8ecf4;
    border-radius: 14px;
    overflow: hidden;
}

.cs-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-bottom: 1px solid #f0f2f6;
    gap: 8px;
}

.cs-label {
    font-size: 0.82rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.cs-label i { color: var(--ramadan-gold); font-size: 0.78rem; }

.cs-val {
    font-size: 0.88rem;
    font-weight: 700;
    color: #1a2a3a;
    text-align: left;
}

.cs-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    background: #f0f4f8;
}

.cs-total-row span {
    font-size: 0.9rem;
    font-weight: 700;
    color: #555;
}

.cs-total-row strong {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--primary-blue);
}

.confirm-form {
    padding: 0 16px 8px;
}

.confirm-inputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
}

.confirm-input-group label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #555;
    margin-bottom: 5px;
}

.confirm-input-group label i { color: var(--ramadan-gold); }

.confirm-input {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    font-family: 'Tajawal', sans-serif;
    font-size: 0.95rem;
    background: #f9fafb;
    outline: none;
    transition: 0.2s;
    color: #1a2a3a;
}

.confirm-input:focus {
    border-color: var(--primary-blue);
    background: white;
    box-shadow: 0 0 0 3px rgba(41,101,175,0.08);
}

.confirm-submit-btn {
    width: 100%;
    height: 54px;
    background: linear-gradient(135deg, var(--primary-blue), #1a4a85);
    color: white;
    border: none;
    border-radius: 14px;
    font-family: 'Tajawal', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.25s;
    box-shadow: 0 6px 18px rgba(41,101,175,0.25);
    margin-bottom: 16px;
    touch-action: manipulation;
}
.confirm-submit-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(41,101,175,0.35); }
.confirm-submit-btn:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

/* Success */
.success-box {
    text-align: center;
    padding: 30px 20px;
    color: #27ae60;
    margin-bottom: 16px;
}
.success-box i { font-size: 3rem; margin-bottom: 12px; display: block; }
.success-box h4 { font-size: 1.1rem; margin-bottom: 6px; }
.success-box p { font-size: 0.9rem; color: #555; }

/* ══════════════════════════════════════════
   RESPONSIVE — Tablet +
══════════════════════════════════════════ */
@media (min-width: 600px) {
    .offers-hero { padding: 100px 20px 70px; min-height: 320px; }
    .room-grid { grid-template-columns: repeat(4, 1fr); }
    .modal-row-two { grid-template-columns: 1fr 1fr; }
    .children-row { grid-template-columns: 1fr 1fr; }
    .modal-hotel-img-wrap { height: 200px; }
}

@media (min-width: 768px) {
    .offers-grid { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
}

@media (max-width: 480px) {
    .filter-bar { flex-direction: column; padding: 12px; }
    .filter-group { min-width: unset; width: 100%; }
    .reset-btn { width: 100%; justify-content: center; }
    .badge { font-size: 0.72rem; padding: 3px 8px; }
    .min-price-val { font-size: 1.2rem !important; }
    .modal-hotel-img-wrap { height: 140px; }
    .room-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .room-chip-ui { padding: 12px 8px; min-height: 80px; }
    .room-chip-ui i { font-size: 1.2rem; }
    .room-chip-ui span { font-size: 0.82rem; }
    .room-chip-ui strong { font-size: 0.78rem; }
    .modal-row-two { grid-template-columns: 1fr; gap: 16px; }
    .children-row { gap: 8px; }
    .child-chip-ui { padding: 12px 8px; min-height: 70px; }
    .modal-scroll-body { padding: 12px 12px 4px; }
    .modal-sticky-footer { padding: 10px 12px; flex-wrap: wrap; }
    .modal-total strong { font-size: 1.1rem; }
    .modal-cta-btn { padding: 14px 18px; font-size: 0.9rem; flex: 1; justify-content: center; }
    .confirm-input { height: 50px; font-size: 1rem; }
    .confirm-submit-btn { height: 54px; font-size: 1rem; }
    .cs-total-row strong { font-size: 1.1rem; }
    .qty-btn { width: 50px; height: 50px; font-size: 1.4rem; }
    .qty-display { font-size: 1.2rem; }
    .food-select { height: 50px; font-size: 0.95rem; }
}
