/* ============================================================
   Magic Moments Booking v5 — Happy Harbour UI (Polished)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

:root {
    --mm-purple:       #6C3CE1;
    --mm-purple-dark:  #5B21B6;
    --mm-purple-light: #f5f0ff;
    --mm-accent:       #a855f7;
    --mm-green:        #22C55E;
    --mm-orange:       #F59E0B;
    --mm-red:          #EF4444;
    --mm-success:      #10b981;
    --mm-text:         #1a1a2e;
    --mm-text-2:       #4b5563;
    --mm-muted:        #9ca3af;
    --mm-border:       #e5e7eb;
    --mm-bg:           #f8f8f8;
    --mm-white:        #ffffff;
    --mm-radius:       18px;
    --mm-radius-sm:    10px;
    --mm-shadow:       0 2px 20px rgba(0,0,0,.07);
    --mm-shadow-lg:    0 8px 40px rgba(0,0,0,.12);
    --mm-font:         'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --mm-font-body:    'DM Sans', sans-serif;
    --transition:      .22s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.mm-booking-app {
    font-family: var(--mm-font);
    color: var(--mm-text);
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 0 80px;
    background: transparent;
    position: relative;
}

/* ── LOADER ── */
.mm-loader {
    position: fixed; inset: 0;
    background: rgba(255,255,255,.88);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    z-index: 9999; gap: 14px;
    font-family: var(--mm-font); font-size: 15px; color: var(--mm-text-2);
    backdrop-filter: blur(4px);
}
.mm-loader-spinner {
    width: 44px; height: 44px;
    border: 4px solid var(--mm-border);
    border-top-color: var(--mm-purple);
    border-radius: 50%;
    animation: mm-spin .8s linear infinite;
}
@keyframes mm-spin { to { transform: rotate(360deg); } }

/* ── BACK BUTTON ── */
.mm-btn-back {
    display: inline-flex; align-items: center; gap: 6px;
    background: none; border: 2px solid var(--mm-border);
    color: var(--mm-text-2); font-family: var(--mm-font);
    font-size: 13px; font-weight: 700; padding: 8px 20px;
    border-radius: 50px; cursor: pointer; margin-bottom: 28px;
    transition: all var(--transition);
}
.mm-btn-back:hover { border-color: var(--mm-purple); color: var(--mm-purple); background: var(--mm-purple-light); }

/* ══════════════════════════════════════════════
   STEP 1 — Location + Date (Hero Card)
══════════════════════════════════════════════ */
.mm-step1-wrap {
    display: flex; justify-content: center; align-items: center;
    min-height: 460px; padding: 48px 16px;
    background: linear-gradient(135deg, #e9d5ff55 0%, #c084fc33 50%, #a855f722 100%);
    border-radius: var(--mm-radius);
    position: relative; overflow: hidden;
}
.mm-step1-wrap::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23a855f7' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.mm-step1-card {
    background: var(--mm-white);
    border-radius: 28px;
    padding: 44px 40px 36px;
    width: 100%; max-width: 440px;
    box-shadow: 0 20px 60px rgba(108,60,225,.18);
    text-align: center;
    animation: mmFadeUp .4s ease both;
    position: relative; z-index: 1;
}
.mm-step1-heading {
    font-size: 32px; font-weight: 900; color: var(--mm-text);
    margin-bottom: 5px; line-height: 1.1;
    letter-spacing: -.5px;
}
.mm-step1-subheading {
    font-size: 14px; color: var(--mm-purple); font-weight: 700;
    margin-bottom: 28px; letter-spacing: .3px;
}
.mm-step1-loc-label {
    font-size: 11px; font-weight: 800; letter-spacing: 2px;
    color: var(--mm-muted); text-transform: uppercase; margin-bottom: 14px;
}
.mm-step1-loc-pills {
    display: flex; flex-wrap: wrap; gap: 10px;
    justify-content: center; margin-bottom: 22px;
}
.mm-loc-pill {
    padding: 12px 28px; border-radius: 50px;
    font-family: var(--mm-font); font-size: 14px; font-weight: 700;
    cursor: pointer; transition: all var(--transition);
    background: #f3f4f6; color: var(--mm-text-2);
    border: 2px solid transparent;
}
.mm-loc-pill.active {
    background: var(--mm-purple); color: #fff;
    border-color: var(--mm-purple);
    box-shadow: 0 4px 18px rgba(108,60,225,.38);
}
.mm-loc-pill:not(.active):hover { border-color: var(--mm-purple); color: var(--mm-purple); background: var(--mm-purple-light); }

.mm-step1-date-wrap {
    display: flex; align-items: center; gap: 12px;
    background: #f5f5f7; border-radius: 14px;
    padding: 14px 18px; margin-bottom: 22px;
    border: 2px solid transparent; transition: border-color var(--transition);
}
.mm-step1-date-wrap:focus-within { border-color: var(--mm-purple); background: #fff; }
.mm-step1-date-icon { font-size: 20px; flex-shrink: 0; }
.mm-step1-date-input {
    border: none; background: transparent; flex: 1;
    font-family: var(--mm-font); font-size: 16px;
    font-weight: 700; color: var(--mm-text); outline: none;
    cursor: pointer;
}

.mm-step1-cta {
    width: 100%; padding: 17px 24px;
    background: linear-gradient(135deg, var(--mm-purple), var(--mm-accent));
    color: #fff; border: none; border-radius: 16px;
    font-family: var(--mm-font); font-size: 15px; font-weight: 900;
    letter-spacing: 1.2px; cursor: pointer; margin-bottom: 18px;
    transition: all var(--transition);
    box-shadow: 0 6px 24px rgba(108,60,225,.42);
}
.mm-step1-cta:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(108,60,225,.52); }
.mm-step1-cta:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.mm-step1-cta span { margin-left: 8px; }
.mm-step1-trust {
    font-size: 12.5px; color: var(--mm-success); font-weight: 700;
    display: flex; align-items: center; justify-content: center; gap: 7px;
}

/* ══════════════════════════════════════════════
   STEP 2 — Package Cards (Happy Harbour style)
══════════════════════════════════════════════ */
.mm-step2-wrap { animation: mmFadeUp .35s ease both; }
.mm-pkg-list { display: flex; flex-direction: column; gap: 28px; }

.mm-pkg-card-hh {
    background: var(--mm-white);
    border-radius: var(--mm-radius);
    box-shadow: var(--mm-shadow);
    overflow: hidden;
    border: 1.5px solid var(--mm-border);
    transition: box-shadow var(--transition), transform var(--transition);
}
.mm-pkg-card-hh:hover { box-shadow: var(--mm-shadow-lg); transform: translateY(-2px); }

.mm-pkg-hh-inner {
    display: grid; grid-template-columns: 360px 1fr;
}

/* ── Image Carousel ── */
.mm-pkg-hh-img-wrap {
    position: relative; overflow: hidden;
    min-height: 320px; background: #f0ecff;
}
.mm-pkg-hh-img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .5s ease;
}
.mm-pkg-hh-img-wrap:hover .mm-pkg-hh-img { transform: scale(1.04); }

/* Gradient overlay on image */
.mm-pkg-hh-img-wrap::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to right, transparent 70%, rgba(255,255,255,.08));
    pointer-events: none;
}

.mm-pkg-hh-img-placeholder {
    width: 100%; height: 100%; min-height: 320px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 14px;
}
.mm-pkg-placeholder-icon { font-size: 64px; filter: drop-shadow(0 4px 12px rgba(0,0,0,.2)); }
.mm-pkg-placeholder-name { font-size: 22px; font-weight: 800; color: #fff; text-align: center; padding: 0 16px; text-shadow: 0 2px 8px rgba(0,0,0,.3); }

/* Carousel counter pill */
.mm-carousel-counter {
    position: absolute; bottom: 12px; right: 12px;
    background: rgba(0,0,0,.55); color: #fff;
    font-size: 11px; font-weight: 700; padding: 3px 10px;
    border-radius: 20px; backdrop-filter: blur(4px);
    pointer-events: none;
}

.mm-carousel-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,.92); border: none;
    font-size: 18px; font-weight: 700; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition); z-index: 2;
    box-shadow: 0 2px 12px rgba(0,0,0,.18);
    color: var(--mm-text);
}
.mm-carousel-btn:hover { background: var(--mm-white); transform: translateY(-50%) scale(1.1); }
.mm-carousel-btn.prev { left: 10px; }
.mm-carousel-btn.next { right: 10px; }

/* Carousel dot indicators */
.mm-carousel-dots {
    position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 5px; z-index: 2;
}
.mm-carousel-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(255,255,255,.5); transition: all var(--transition);
    cursor: pointer; border: none; padding: 0;
}
.mm-carousel-dot.active { background: #fff; width: 18px; border-radius: 3px; }

/* ── Package Info ── */
.mm-pkg-hh-info {
    padding: 28px 28px 24px;
    display: flex; flex-direction: column;
}
.mm-pkg-hh-top {
    display: flex; align-items: flex-start;
    justify-content: space-between; gap: 12px;
    margin-bottom: 6px;
}
.mm-pkg-hh-name { font-size: 26px; font-weight: 900; color: var(--mm-text); letter-spacing: -.3px; }
.mm-pkg-hh-prices { display: flex; flex-direction: column; align-items: flex-end; flex-shrink: 0; }
.mm-pkg-hh-orig { font-size: 14px; color: var(--mm-red); text-decoration: line-through; font-weight: 600; }
.mm-pkg-hh-price { font-size: 26px; font-weight: 900; color: var(--mm-purple); white-space: nowrap; }

.mm-pkg-hh-tagline { font-size: 13.5px; color: var(--mm-muted); margin-bottom: 16px; font-family: var(--mm-font-body); }

/* Badges */
.mm-pkg-hh-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.mm-badge { display: inline-flex; align-items: center; gap: 5px; padding: 5px 12px; border-radius: 50px; font-size: 12px; font-weight: 700; }
.mm-badge-purple { background: #ede9fe; color: #5b21b6; }
.mm-badge-green  { background: #dcfce7; color: #15803d; }
.mm-badge-orange { background: #fef9c3; color: #a16207; }

/* Features */
.mm-pkg-hh-features {
    list-style: none; padding: 0; margin: 0 0 18px;
    display: flex; flex-direction: column; gap: 8px; flex: 1;
}
.mm-pkg-hh-features li {
    font-size: 13.5px; color: var(--mm-text-2); font-family: var(--mm-font-body);
    display: flex; align-items: flex-start; gap: 8px; line-height: 1.45;
}
.mm-pkg-hh-features li::before { content: '•'; color: var(--mm-purple); font-weight: 900; flex-shrink: 0; margin-top: 1px; }

.mm-pkg-hh-advance { font-size: 12px; color: var(--mm-muted); font-style: italic; margin-bottom: 16px; font-family: var(--mm-font-body); }

/* View Slots button */
.mm-view-slots-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px; border-radius: 50px;
    background: linear-gradient(135deg, var(--mm-purple), var(--mm-accent));
    color: #fff; border: none;
    font-family: var(--mm-font); font-size: 13px; font-weight: 800;
    letter-spacing: .8px; cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 4px 16px rgba(108,60,225,.35);
    align-self: flex-start;
}
.mm-view-slots-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(108,60,225,.45); }
.mm-view-slots-btn.open { background: linear-gradient(135deg, var(--mm-text), #374151); box-shadow: none; }

/* ── Inline Slot Picker ── */
.mm-slots-inline-wrap {
    display: grid; grid-template-columns: 280px 1fr;
    border-top: 1.5px solid var(--mm-border);
    background: #fdfbff;
}
.mm-slots-inline-calendar {
    border-right: 1.5px solid var(--mm-border);
    padding: 24px 22px;
}
.mm-slots-inline-right { padding: 24px 30px; }
.mm-slots-inline-title { font-size: 20px; font-weight: 900; margin-bottom: 5px; }
.mm-slots-inline-date { font-size: 13px; color: var(--mm-muted); margin-bottom: 18px; font-family: var(--mm-font-body); }

/* Inline Calendar */
.mm-inline-cal { background: var(--mm-white); }
.mm-inline-cal-nav {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 16px;
}
.mm-inline-cal-month { font-size: 15px; font-weight: 800; color: var(--mm-text); }
.mm-inline-cal-nav-btn {
    background: none; border: 1.5px solid var(--mm-border); border-radius: 8px;
    width: 32px; height: 32px; font-size: 16px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition); color: var(--mm-text-2);
}
.mm-inline-cal-nav-btn:hover { background: var(--mm-purple-light); color: var(--mm-purple); border-color: var(--mm-purple); }

.mm-inline-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.mm-inline-cal-hdr {
    text-align: center; font-size: 11px; font-weight: 800;
    color: var(--mm-muted); padding: 5px 0;
    text-transform: uppercase; letter-spacing: .5px;
}
.mm-inline-cal-day {
    aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 600; border-radius: 50%;
    cursor: pointer; transition: all var(--transition);
    color: var(--mm-text);
}
.mm-inline-cal-day:not(.disabled):not(.other):hover { background: var(--mm-purple-light); color: var(--mm-purple); }
.mm-inline-cal-day.selected { background: var(--mm-purple) !important; color: #fff !important; box-shadow: 0 2px 10px rgba(108,60,225,.35); }
.mm-inline-cal-day.disabled, .mm-inline-cal-day.other { color: #d1d5db; cursor: default; }
.mm-inline-cal-day.past { opacity: .35; cursor: not-allowed; }
.mm-inline-cal-day.today:not(.selected) { border: 2px solid var(--mm-purple); color: var(--mm-purple); }

/* Slot buttons */
.mm-inline-slots-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    margin-bottom: 22px;
}
.mm-inline-slot {
    padding: 13px 10px; border-radius: 12px;
    border: 1.5px solid var(--mm-border);
    background: var(--mm-white); color: var(--mm-text);
    font-family: var(--mm-font); font-size: 13px; font-weight: 700;
    cursor: pointer; transition: all var(--transition); text-align: center;
}
.mm-inline-slot:hover:not(.booked) { border-color: var(--mm-purple); color: var(--mm-purple); background: var(--mm-purple-light); }
.mm-inline-slot.selected { background: var(--mm-purple-light); border-color: var(--mm-purple); color: var(--mm-purple); font-weight: 800; }
.mm-inline-slot.booked { opacity: .38; cursor: not-allowed; text-decoration: line-through; color: var(--mm-muted); }
.mm-inline-slot.past  { opacity: .38; cursor: not-allowed; text-decoration: line-through; color: var(--mm-muted); }
.mm-slots-hint { color: var(--mm-muted); font-size: 13px; grid-column: 1/-1; text-align: center; padding: 20px 0; font-family: var(--mm-font-body); }

.mm-slots-inline-footer {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; flex-wrap: wrap;
    background: linear-gradient(135deg, #fdf8ff, #faf0ff);
    border: 1.5px solid #ede9fe;
    border-radius: 16px; padding: 18px 22px;
}
.mm-slots-inline-total span { display: block; font-size: 12px; color: var(--mm-muted); font-family: var(--mm-font-body); margin-bottom: 3px; font-weight: 600; }
.mm-slots-inline-total strong { font-size: 22px; color: var(--mm-purple); font-weight: 900; }

.mm-book-now-btn {
    padding: 14px 36px; border-radius: 50px;
    background: linear-gradient(135deg, var(--mm-purple), var(--mm-accent));
    color: #fff; border: none;
    font-family: var(--mm-font); font-size: 14px; font-weight: 900;
    letter-spacing: .8px; cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 4px 18px rgba(108,60,225,.38);
}
.mm-book-now-btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(108,60,225,.48); }
.mm-book-now-btn:disabled { opacity: .4; cursor: not-allowed; transform: none; box-shadow: none; }

/* ══════════════════════════════════════════════
   STEP 3 — Booking Form + Sidebar
══════════════════════════════════════════════ */
.mm-step3-wrap { animation: mmFadeUp .35s ease both; }
.mm-step3-layout {
    display: grid; grid-template-columns: 1fr 370px;
    gap: 28px; align-items: start;
}

/* ── Form Card ── */
.mm-form-card-hh {
    background: var(--mm-white); border-radius: var(--mm-radius);
    padding: 30px 30px 26px; box-shadow: var(--mm-shadow);
    margin-bottom: 22px; border: 1.5px solid var(--mm-border);
}
.mm-form-card-title {
    font-size: 19px; font-weight: 800; margin-bottom: 24px;
    display: flex; align-items: center; gap: 10px; color: var(--mm-text);
}
.mm-form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.mm-field { display: flex; flex-direction: column; gap: 7px; }
.mm-field label { font-size: 12.5px; font-weight: 800; color: var(--mm-text-2); letter-spacing: .3px; text-transform: uppercase; }

.mm-hh-input {
    padding: 13px 16px; border-radius: 12px;
    border: 1.5px solid var(--mm-border);
    font-family: var(--mm-font); font-size: 14px; color: var(--mm-text);
    background: #fafafa; outline: none;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
    width: 100%;
}
.mm-hh-input:focus { border-color: var(--mm-purple); background: #fff; box-shadow: 0 0 0 3px rgba(108,60,225,.1); }
.mm-hh-input::placeholder { color: var(--mm-muted); }
.mm-hh-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath fill='%236C3CE1' d='M6 7L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center; padding-right: 38px; cursor: pointer;
}
.mm-hh-textarea { min-height: 100px; resize: vertical; line-height: 1.6; }

/* People counter */
.mm-people-counter {
    display: flex; align-items: center; gap: 0;
    border: 1.5px solid var(--mm-border); border-radius: 12px;
    overflow: hidden; background: #fafafa;
}
.mm-people-counter span {
    padding: 11px 0; font-size: 16px; font-weight: 800;
    color: var(--mm-text); flex: 1; text-align: center;
    border-left: 1.5px solid var(--mm-border);
    border-right: 1.5px solid var(--mm-border);
}
.mm-counter-btn {
    padding: 11px 18px; background: none; border: none;
    font-size: 22px; font-weight: 700; cursor: pointer;
    color: var(--mm-purple); transition: background var(--transition);
    line-height: 1;
}
.mm-counter-btn:hover:not(:disabled) { background: var(--mm-purple-light); }
.mm-counter-btn:disabled { opacity: .35; cursor: not-allowed; }

/* ── Sidebar ── */
.mm-step3-sidebar { position: sticky; top: 24px; }
.mm-sidebar-card {
    background: var(--mm-white); border-radius: var(--mm-radius);
    padding: 24px 24px 20px; box-shadow: var(--mm-shadow);
    border: 1.5px solid var(--mm-border);
}
.mm-sidebar-title { font-size: 18px; font-weight: 900; margin-bottom: 18px; }

.mm-sidebar-pkg-row {
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 8px; margin-bottom: 8px;
}
.mm-sidebar-pkg-name { font-weight: 800; font-size: 14.5px; }
.mm-sidebar-pkg-pax { color: var(--mm-muted); font-size: 13px; font-family: var(--mm-font-body); }
.mm-sidebar-pkg-orig { font-size: 12px; color: var(--mm-red); text-decoration: line-through; }
.mm-sidebar-pkg-price { font-size: 17px; font-weight: 900; color: var(--mm-text); white-space: nowrap; }
.mm-sidebar-meta { font-size: 13px; color: var(--mm-muted); margin-bottom: 5px; font-family: var(--mm-font-body); display: flex; align-items: center; gap: 6px; }

/* Addons in sidebar */
.mm-sidebar-addons-label {
    font-size: 11px; font-weight: 800; letter-spacing: 1.5px;
    color: var(--mm-muted); text-transform: uppercase;
    margin: 16px 0 10px; border-top: 1.5px solid var(--mm-border); padding-top: 14px;
}
.mm-sidebar-addon-row {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px; margin-bottom: 7px; color: var(--mm-text-2);
}
.mm-sidebar-remove-addon {
    background: none; border: none; cursor: pointer;
    color: var(--mm-muted); font-size: 12px; padding: 2px 5px;
    border-radius: 50%; transition: all var(--transition);
    width: 22px; height: 22px; display: flex; align-items: center; justify-content: center;
}
.mm-sidebar-remove-addon:hover { color: #fff; background: var(--mm-red); }

/* Coupon */
.mm-sidebar-coupon {
    display: flex; gap: 0; margin: 16px 0 12px;
    border: 1.5px solid var(--mm-border); border-radius: 12px; overflow: hidden;
}
.mm-coupon-input {
    flex: 1; padding: 11px 14px; border: none; background: #fafafa;
    font-family: var(--mm-font); font-size: 13px; color: var(--mm-text); outline: none;
}
.mm-coupon-apply {
    padding: 11px 16px; background: none; border: none;
    border-left: 1.5px solid var(--mm-border);
    font-family: var(--mm-font); font-size: 12px; font-weight: 900;
    color: var(--mm-purple); cursor: pointer; white-space: nowrap;
    transition: background var(--transition); letter-spacing: .5px;
}
.mm-coupon-apply:hover { background: var(--mm-purple-light); }

/* Price lines */
.mm-sidebar-line {
    display: flex; justify-content: space-between;
    font-size: 13px; color: var(--mm-text-2); margin-bottom: 7px;
    font-family: var(--mm-font-body);
}
.mm-sidebar-total-row {
    display: flex; justify-content: space-between; align-items: baseline;
    margin: 12px 0 10px; border-top: 1.5px solid var(--mm-border); padding-top: 12px;
    font-size: 14px; font-weight: 800; color: var(--mm-text);
}
.mm-sidebar-total-row strong { font-size: 24px; color: var(--mm-purple); font-weight: 900; }

.mm-sidebar-advance-row {
    display: flex; justify-content: space-between; align-items: center;
    background: linear-gradient(135deg, #fdf8ff, var(--mm-purple-light));
    border-radius: 12px; padding: 12px 16px; margin-bottom: 7px;
    font-size: 13px; border: 1px solid #ede9fe;
}
.mm-sidebar-advance-val { color: var(--mm-purple); font-weight: 900; font-size: 16px; }
.mm-sidebar-balance-row {
    display: flex; justify-content: space-between;
    font-size: 13px; color: var(--mm-text-2); margin-bottom: 20px; padding: 0 2px;
    font-family: var(--mm-font-body);
}

.mm-proceed-pay-btn {
    width: 100%; padding: 17px;
    background: linear-gradient(135deg, var(--mm-purple), var(--mm-accent));
    color: #fff; border: none; border-radius: 16px;
    font-family: var(--mm-font); font-size: 14px; font-weight: 900;
    letter-spacing: 1px; cursor: pointer; margin-bottom: 12px;
    transition: all var(--transition);
    box-shadow: 0 6px 20px rgba(108,60,225,.38);
}
.mm-proceed-pay-btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(108,60,225,.48); }
.mm-proceed-pay-btn:disabled { opacity: .4; cursor: not-allowed; transform: none; box-shadow: none; }

.mm-sidebar-secure {
    text-align: center; font-size: 12px; color: var(--mm-muted);
    font-family: var(--mm-font-body); display: flex; align-items: center; justify-content: center; gap: 5px;
}

/* ── Make it Special (Add-ons) ── */
.mm-make-special {
    background: var(--mm-white); border-radius: var(--mm-radius);
    padding: 30px; box-shadow: var(--mm-shadow); border: 1.5px solid var(--mm-border);
}
.mm-make-special-title { font-size: 19px; font-weight: 900; margin-bottom: 5px; }
.mm-make-special-sub {
    font-size: 13px; color: var(--mm-muted); font-family: var(--mm-font-body);
    margin-bottom: 28px;
}
.mm-addon-section-title {
    font-size: 16px; font-weight: 900; margin-bottom: 16px; color: var(--mm-text);
    padding-bottom: 10px; border-bottom: 1.5px solid var(--mm-border);
}

/* Addon image grid */
.mm-addon-img-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 14px; margin-bottom: 28px;
}
.mm-addon-img-card {
    border: 2px solid var(--mm-border); border-radius: 14px;
    overflow: hidden; cursor: pointer;
    transition: all var(--transition); background: var(--mm-white);
    position: relative;
}
.mm-addon-img-card:hover { border-color: var(--mm-purple); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(108,60,225,.18); }
.mm-addon-img-card.selected {
    border-color: var(--mm-purple); box-shadow: 0 0 0 3px rgba(108,60,225,.18);
    transform: translateY(-2px);
}
.mm-addon-img-card.selected::after {
    content: '✓'; position: absolute; top: 6px; right: 6px;
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--mm-purple); color: #fff;
    font-size: 12px; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
}

.mm-addon-img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.mm-addon-img-placeholder {
    aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
    font-size: 38px; background: linear-gradient(135deg, #f8f5ff, #ede9fe);
}
.mm-addon-img-name {
    font-size: 11.5px; font-weight: 700; padding: 7px 8px 2px;
    color: var(--mm-text); line-height: 1.3;
}
.mm-addon-img-price { font-size: 13px; font-weight: 900; color: var(--mm-purple); padding: 0 8px 9px; }
.mm-addon-name-input {
    width: calc(100% - 16px); margin: 4px 8px 9px;
    padding: 7px 9px; border: 1.5px solid var(--mm-border);
    border-radius: 8px; font-size: 11px; font-family: var(--mm-font);
    outline: none; display: block;
}
.mm-addon-name-input:focus { border-color: var(--mm-purple); }
.mm-addon-disclaimer {
    font-size: 12px; color: var(--mm-muted);
    font-family: var(--mm-font-body); text-align: center;
    padding-top: 10px; border-top: 1px solid var(--mm-border);
    margin: 8px 0 0;
}

/* ══════════════════════════════════════════════
   T&C MODAL
══════════════════════════════════════════════ */
.mm-modal {
    position: fixed; inset: 0; z-index: 9000;
    display: flex; align-items: center; justify-content: center; padding: 20px;
}
.mm-modal-overlay {
    position: absolute; inset: 0; background: rgba(0,0,0,.5);
    backdrop-filter: blur(4px);
}
.mm-modal-box {
    position: relative; background: var(--mm-white);
    border-radius: 24px; width: 100%; max-width: 540px;
    max-height: 88vh; overflow-y: auto;
    padding: 30px; box-shadow: 0 24px 72px rgba(0,0,0,.28);
    animation: mmFadeUp .3s ease both;
}
.mm-modal-box h3 { font-size: 21px; font-weight: 900; margin: 0 0 18px; }
.mm-tnc-notice {
    background: #ede9fe; color: var(--mm-purple);
    border-radius: 12px; padding: 14px 18px;
    font-size: 13px; font-weight: 700; margin-bottom: 20px;
    display: flex; align-items: flex-start; gap: 10px; line-height: 1.5;
    border-left: 4px solid var(--mm-purple);
}
.mm-tnc-item {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 16px 0; border-bottom: 1px solid var(--mm-border);
}
.mm-tnc-item:last-of-type { border-bottom: none; }
.mm-tnc-icon {
    width: 42px; height: 42px; border-radius: 50%;
    background: #f3f4f6; display: flex; align-items: center;
    justify-content: center; font-size: 20px; flex-shrink: 0;
}
.mm-tnc-item strong { display: block; font-size: 14px; font-weight: 800; margin-bottom: 4px; }
.mm-tnc-item p { font-size: 13px; color: var(--mm-text-2); font-family: var(--mm-font-body); margin: 0; line-height: 1.55; }
.mm-tnc-actions { display: flex; gap: 12px; justify-content: flex-end; margin-top: 22px; }
.mm-btn-outline {
    padding: 13px 26px; border-radius: 50px;
    border: 2px solid var(--mm-border); background: none;
    font-family: var(--mm-font); font-size: 14px; font-weight: 700;
    color: var(--mm-text-2); cursor: pointer;
    transition: all var(--transition);
}
.mm-btn-outline:hover { border-color: var(--mm-purple); color: var(--mm-purple); background: var(--mm-purple-light); }
.mm-btn-primary {
    padding: 13px 26px; border-radius: 50px;
    background: linear-gradient(135deg, var(--mm-purple), var(--mm-accent));
    color: #fff; border: none;
    font-family: var(--mm-font); font-size: 14px; font-weight: 900;
    cursor: pointer; transition: all var(--transition);
    box-shadow: 0 4px 18px rgba(108,60,225,.38);
}
.mm-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(108,60,225,.48); }

/* ══════════════════════════════════════════════
   SUCCESS
══════════════════════════════════════════════ */
.mm-success-screen {
    text-align: center; padding: 64px 20px 48px;
    animation: mmFadeUp .5s ease both;
}
.mm-success-icon { font-size: 72px; margin-bottom: 18px; animation: mmBounce .6s ease .3s both; }
@keyframes mmBounce { 0%,100%{transform:scale(1)} 50%{transform:scale(1.2)} }
.mm-success-title { font-size: 30px; font-weight: 900; margin-bottom: 10px; }
.mm-success-sub { color: var(--mm-text-2); font-size: 16px; margin-bottom: 26px; font-family: var(--mm-font-body); }
.mm-booking-id-box {
    display: inline-block; background: var(--mm-purple-light);
    border: 2px dashed var(--mm-purple); color: var(--mm-purple);
    font-size: 17px; font-weight: 900; padding: 12px 32px;
    border-radius: 14px; margin-bottom: 30px; letter-spacing: 2px;
}
.mm-success-details {
    display: inline-flex; flex-direction: column; gap: 12px;
    background: var(--mm-white); border-radius: 18px;
    padding: 26px 36px; margin-bottom: 24px;
    box-shadow: var(--mm-shadow-lg); min-width: 320px;
    border: 1.5px solid var(--mm-border);
}
.mm-review-row { display: flex; justify-content: space-between; gap: 28px; font-size: 14px; }
.mm-review-row span { color: var(--mm-text-2); font-family: var(--mm-font-body); }
.mm-review-row strong { color: var(--mm-text); font-weight: 800; }
.mm-success-email { font-size: 13px; color: var(--mm-text-2); margin-bottom: 8px; font-family: var(--mm-font-body); }
.mm-success-wa {
    display: inline-flex; align-items: center; gap: 10px;
    background: #25D366; color: #fff;
    padding: 15px 32px; border-radius: 50px;
    font-family: var(--mm-font); font-size: 15px; font-weight: 800;
    text-decoration: none; margin-top: 18px;
    transition: all var(--transition);
    box-shadow: 0 6px 20px rgba(37,211,102,.42);
}
.mm-success-wa:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,.52); }

/* ── ANIMATION ── */
@keyframes mmFadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 940px) {
    .mm-step3-layout { grid-template-columns: 1fr; }
    .mm-step3-sidebar { position: static; }
    .mm-pkg-hh-inner { grid-template-columns: 1fr; }
    .mm-pkg-hh-img-wrap { min-height: 240px; max-height: 280px; }
    .mm-slots-inline-wrap { grid-template-columns: 1fr; }
    .mm-slots-inline-calendar { border-right: none; border-bottom: 1.5px solid var(--mm-border); }
    .mm-addon-img-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
    .mm-form-row-2 { grid-template-columns: 1fr; }
    .mm-addon-img-grid { grid-template-columns: repeat(2, 1fr); }
    .mm-step1-card { padding: 30px 22px 26px; }
    .mm-step1-heading { font-size: 26px; }
    .mm-form-card-hh, .mm-make-special { padding: 22px 18px; }
    .mm-pkg-hh-info { padding: 22px 18px 20px; }
    .mm-inline-slots-grid { grid-template-columns: 1fr 1fr; }
    .mm-pkg-hh-name { font-size: 22px; }
    .mm-sidebar-card { padding: 20px 18px; }
}
@media (max-width: 400px) {
    .mm-addon-img-grid { grid-template-columns: repeat(2, 1fr); }
    .mm-inline-slots-grid { grid-template-columns: 1fr; }
}
