*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --navy: #1c2b5c; --navy-dark: #141f44; --navy-light: #243370;
    --gold: #c9a84c; --gold-light: #e8c96a;
    --white: #ffffff; --off-white: #f7f8fc;
    --gray: #6b7280; --gray-light: #e5e7eb;
    --fb-blue: #1877f2; --wa-green: #25d366;
    --shadow: 0 4px 24px rgba(28,43,92,0.10); --radius: 14px;
  }
  html, body { height:auto; overflow:visible; } body { font-family:'Open Sans',sans-serif; background:var(--off-white); color:#1a1a2e; }

  /* HEADER */
  
  
  
  

  

  /* ── MOBILE PRICE PANEL (shown at top on mobile, hidden on desktop) ── */
  .mobile-price-panel {
    display: none;
    background: var(--navy-dark);
    padding: 14px 16px;
    margin: 12px 12px 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .mpp-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
  .mpp-label { font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.07em; }
  .mpp-total {
    font-family: 'Montserrat', sans-serif; font-weight: 800;
    font-size: 2rem; color: var(--gold); letter-spacing: -0.03em;
    transition: transform 0.15s;
  }
  .mpp-total.bounce { animation: priceBounce 0.35s cubic-bezier(.36,.07,.19,.97); }
  @keyframes priceBounce { 0%,100%{transform:scale(1)} 30%{transform:scale(1.2)} 60%{transform:scale(0.95)} 80%{transform:scale(1.06)} }
  .mpp-lines { margin-bottom: 12px; min-height: 22px; }
  .mpp-line { display: flex; justify-content: space-between; font-size: 0.79rem; color: rgba(255,255,255,0.7); padding: 2px 0; }
  .mpp-line .ml-amt { color: var(--gold-light); font-weight: 600; }
  .mpp-empty { font-size: 0.78rem; color: rgba(255,255,255,0.35); font-style: italic; padding: 2px 0; }
  .mpp-note { font-size: 0.68rem; color: rgba(255,255,255,0.35); margin-bottom: 12px; }
  /* Book button inside mobile price panel */
  .mpp-cta {
    width: 100%; background: var(--gold); color: var(--navy-dark);
    font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1rem;
    padding: 14px; border-radius: 10px; border: none; cursor: pointer;
    margin-bottom: 8px; -webkit-tap-highlight-color: transparent;
  }
  .mpp-cta:active { background: var(--gold-light); }
  .mpp-secondary { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .mpp-btn {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.79rem;
    padding: 11px 8px; border-radius: 10px; border: none; cursor: pointer; color: white;
    -webkit-tap-highlight-color: transparent;
  }
  .mpp-btn.meta { background: var(--fb-blue); }
  .mpp-btn.wa { background: var(--wa-green); }
  .mpp-btn:active { opacity: 0.82; }
  .si { width: 15px; height: 15px; fill: white; flex-shrink: 0; }

  /* DESKTOP LAYOUT */
  .main { max-width: 1000px; margin: 0 auto; padding: 24px 16px 60px; display: grid; grid-template-columns: 1fr 360px; gap: 24px; align-items: start; }

  /* CARDS */
  .card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; margin-bottom: 18px; }
  .card-header { background: var(--navy); color: var(--white); padding: 14px 20px; display: flex; align-items: center; gap: 10px; }
  .card-header .icon { font-size: 1.3rem; }
  .card-header h2 { font-family: 'Montserrat', sans-serif; font-size: 0.97rem; font-weight: 700; }
  .card-header .subtitle { font-size: 0.75rem; color: rgba(255,255,255,0.65); margin-top: 1px; }
  .card-body { padding: 18px 20px; }

  /* TABS */
  .service-tabs { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-bottom: 18px; }
  .tab-btn { background: var(--off-white); border: 2px solid var(--gray-light); border-radius: 10px; padding: 8px 2px; text-align: center; cursor: pointer; transition: all 0.18s; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.65rem; color: var(--gray); white-space: nowrap; overflow: hidden; }
  .tab-btn .tab-icon { font-size: 1rem; display: block; margin-bottom: 2px; line-height: 1; height: 1.2rem; overflow: hidden; display: flex; align-items: center; justify-content: center; }

  .tab-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); box-shadow: 0 2px 10px rgba(28,43,92,0.22); }
  .service-panel { display: none; }
  .service-panel.visible { display: block; }

  /* ITEM ROWS */
  .item-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 14px 0; border-bottom: 1px solid var(--gray-light); }
  .item-row:last-child { border-bottom: none; }
  .item-info { flex: 1; }
  .item-label { font-size: 0.93rem; font-weight: 600; line-height: 1.3; color: #1a1a2e !important; }
  .item-price { font-size: 0.8rem; color: var(--gray) !important; margin-top: 2px; }
  .sectional-note { font-size: 0.72rem; color: var(--gray); font-style: italic; margin-top: 2px; }

  /* QTY CONTROLS — big touch targets */
  .qty-ctrl { display: flex; align-items: center; flex-shrink: 0; background: var(--off-white); border-radius: 10px; border: 2px solid var(--gray-light); overflow: hidden; }
  .qty-btn { width: 44px; height: 44px; border: none; background: transparent; font-size: 1.3rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--navy); transition: background 0.12s; line-height: 1; -webkit-tap-highlight-color: transparent; }
  .qty-btn:active { background: var(--navy); color: white; }
  .qty-num { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1rem; min-width: 34px; text-align: center; color: var(--navy-dark); }

  /* TOGGLES */
  .toggle-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--gray-light); cursor: pointer; gap: 12px; }
  .toggle-row:last-child { border-bottom: none; }
  .toggle-label { font-size: 0.93rem; font-weight: 600; }
  .toggle-desc { font-size: 0.75rem; color: var(--gray); margin-top: 2px; line-height: 1.4; }
  .toggle-price { font-size: 0.8rem; color: var(--gray); margin-top: 2px; }
  .switch { position: relative; width: 48px; height: 26px; flex-shrink: 0; }
  .switch input { opacity: 0; width: 0; height: 0; }
  .slider { position: absolute; cursor: pointer; inset: 0; background: var(--gray-light); border-radius: 26px; transition: 0.22s; }
  .slider::before { content: ""; position: absolute; width: 20px; height: 20px; left: 3px; top: 3px; background: white; border-radius: 50%; transition: 0.22s; box-shadow: 0 1px 4px rgba(0,0,0,0.2); }
  input:checked + .slider { background: var(--navy); }
  input:checked + .slider::before { transform: translateX(22px); }
  .info-note { font-size: 0.76rem; color: var(--gray); margin-top: 14px; padding: 10px 13px; background: var(--off-white); border-radius: 8px; border-left: 3px solid var(--gold); line-height: 1.5; }

  /* DESKTOP SUMMARY */
  .summary-sticky { position: sticky; top: 20px; }
  .summary-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
  .summary-header { background: linear-gradient(135deg, var(--navy-dark), var(--navy-light)); color: var(--white); padding: 16px 20px 14px; }
  .summary-header h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1rem; margin-bottom: 2px; }
  .summary-header p { font-size: 0.75rem; color: rgba(255,255,255,0.65); }
  .summary-body { padding: 12px 20px; min-height: 70px; }
  .summary-line { display: flex; justify-content: space-between; align-items: baseline; padding: 5px 0; font-size: 0.85rem; border-bottom: 1px solid var(--gray-light); }
  .summary-line:last-child { border-bottom: none; }
  .summary-line .s-name { color: #444; }
  .summary-line .s-amt { font-weight: 600; color: var(--navy); }
  .summary-empty { text-align: center; padding: 18px 0 6px; color: var(--gray); font-size: 0.85rem; }
  .summary-empty .empty-icon { font-size: 1.8rem; display: block; margin-bottom: 6px; }
  .total-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 20px; border-top: 2px solid var(--gray-light); background: var(--off-white); }
  .total-label { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--navy-dark); }
  .total-amount { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.7rem; color: var(--navy); letter-spacing: -0.03em; }
  .total-amount.bounce { animation: priceBounce 0.35s cubic-bezier(.36,.07,.19,.97); }
  .total-note { font-size: 0.7rem; color: var(--gray); text-align: center; padding: 0 20px 12px; background: var(--off-white); line-height: 1.5; }

  /* DESKTOP BOOKING BUTTONS */
  .booking-section { padding: 0 20px 18px; background: var(--off-white); }
  .booking-label { font-family: 'Montserrat', sans-serif; font-size: 0.7rem; font-weight: 700; color: var(--gray); letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 10px; padding-top: 12px; border-top: 1px solid var(--gray-light); }
  .hcp-btn-wrap .hcp-button, .hcp-btn-wrap button[data-token] { display: block !important; width: 100% !important; background: var(--gold) !important; color: var(--navy-dark) !important; text-align: center !important; font-family: 'Montserrat', sans-serif !important; font-weight: 800 !important; font-size: 0.95rem !important; padding: 14px 16px !important; border-radius: 10px !important; border: none !important; cursor: pointer !important; margin-bottom: 8px !important; transition: background 0.18s !important; }
  .hcp-btn-wrap .hcp-button:hover, .hcp-btn-wrap button[data-token]:hover { background: var(--gold-light) !important; }
  .btn-hcp-fallback { display: block; width: 100%; background: var(--gold); color: var(--navy-dark); text-align: center; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 0.95rem; padding: 14px 16px; border-radius: 10px; border: none; cursor: pointer; margin-bottom: 8px; transition: background 0.18s; }
  .btn-hcp-fallback:hover { background: var(--gold-light); }
  .btn-hcp-fallback .sub { font-size: 0.68rem; font-weight: 600; opacity: 0.7; display: block; margin-top: 3px; }
  .alt-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .btn-meta { display: flex; align-items: center; justify-content: center; gap: 6px; background: var(--fb-blue); color: white; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.78rem; padding: 11px 8px; border-radius: 10px; border: none; cursor: pointer; width: 100%; transition: opacity 0.18s; }
  .btn-meta:hover { opacity: 0.88; }
  .btn-whatsapp { display: flex; align-items: center; justify-content: center; gap: 6px; background: var(--wa-green); color: white; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.78rem; padding: 11px 8px; border-radius: 10px; border: none; cursor: pointer; width: 100%; transition: opacity 0.18s; }
  .btn-whatsapp:hover { opacity: 0.88; }
  .svg-icon { width: 15px; height: 15px; fill: currentColor; flex-shrink: 0; }

  /* GUARANTEE */
  .guarantee { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 14px 18px; margin-top: 16px; display: flex; align-items: flex-start; gap: 10px; }
  .guarantee .g-icon { font-size: 1.5rem; flex-shrink: 0; }
  .guarantee .g-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.85rem; color: var(--navy); margin-bottom: 3px; }
  .guarantee .g-text { font-size: 0.75rem; color: var(--gray); line-height: 1.4; }

  /* PHONE STRIP */
  .phone-strip { background: var(--navy-dark); color: white; text-align: center; padding: 18px 20px; font-family: 'Montserrat', sans-serif; }
  .phone-strip a { color: var(--gold); font-size: 1.3rem; font-weight: 800; text-decoration: none; }
  .phone-strip p { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-bottom: 4px; }

  

  /* ── RESPONSIVE BREAKPOINT ── */
  @media (max-width: 760px) {
    .main { grid-template-columns: 1fr; padding: 0 0 40px; }
    .summary-col { display: none; }           /* hide right-col summary on mobile */
    .mobile-price-panel { display: block; }   /* show inline price panel on mobile */
    .left-col { padding: 0 12px; }
    .card { margin-bottom: 14px; }
  }
  @media (min-width: 761px) {
    .mobile-price-panel { display: none !important; }
  }

  


  /* INLINE BOOKING OPTIONS (inside mobile price panel) */
  .mpp-sheet-opt {
    display: flex; align-items: center; gap: 12px;
    width: 100%; padding: 13px 14px; margin-bottom: 8px;
    border-radius: 12px; border: none; cursor: pointer;
    text-align: left; -webkit-tap-highlight-color: transparent;
    background: white;
    transition: opacity 0.15s;
  }
  .mpp-sheet-opt:active { opacity: 0.82; }
  .mpp-opt-title { color: var(--navy-dark) !important; }
  .mpp-opt-sub { color: var(--gray) !important; }
  .mpp-opt-arrow { color: var(--gray-light) !important; }
  .mpp-opt-icon { font-size: 1.4rem; flex-shrink: 0; width: 36px; text-align: center; }
  .mpp-opt-text { flex: 1; display: flex; flex-direction: column; }
  .mpp-opt-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.92rem; color: white; }
  .mpp-opt-sub { font-size: 0.71rem; color: rgba(255,255,255,0.55); margin-top: 2px; }
  .mpp-opt-arrow { font-size: 1.1rem; color: rgba(255,255,255,0.3); flex-shrink: 0; }
  .mpp-cancel {
    display: block; width: 100%; padding: 11px;
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22);
    border-radius: 10px; font-family: 'Montserrat', sans-serif; font-weight: 700;
    font-size: 0.82rem; color: rgba(255,255,255,0.75); cursor: pointer; margin-top: 2px;
    -webkit-tap-highlight-color: transparent;
  }


  .mpp-back {
    display: flex; align-items: center; gap: 6px;
    background: none; border: none; color: rgba(255,255,255,0.5);
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.78rem;
    cursor: pointer; padding: 0 0 12px 0; -webkit-tap-highlight-color: transparent;
  }
  .mpp-back:active { color: white; }


  /* Room size tag */
  .size-tag {
    display: inline-block;
    background: var(--navy);
    color: rgba(255,255,255,0.85) !important;
    -webkit-text-fill-color: rgba(255,255,255,0.85) !important;
    font-size: 0.65rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.03em;
    padding: 2px 7px;
    border-radius: 20px;
    vertical-align: middle;
    margin-left: 6px;
    position: relative;
    top: -1px;
    pointer-events: none;
  }
  /* Example text under label */
  .item-examples {
    font-size: 0.74rem;
    color: var(--gray);
    margin-top: 2px;
    margin-bottom: 2px;
    font-style: italic;
  }
  /* Minimum charge note */
  .min-charge-note {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff8e8;
    border: 1px solid var(--gold);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.78rem;
    color: #7a5c10;
    font-weight: 600;
    margin-top: 10px;
  }
  .min-charge-note span { font-size: 1rem; }


  .toggle-left-block { flex: 1; padding-right: 12px; }
  .toggle-left-block .toggle-label { font-size: 0.93rem; font-weight: 700; margin-bottom: 4px; color: #1a1a2e; }
  .toggle-left-block .toggle-desc { font-size: 0.76rem; color: var(--gray); line-height: 1.5; margin-bottom: 4px; }
  .toggle-left-block .toggle-price { font-size: 0.8rem; font-weight: 600; color: var(--navy); }


  


  /* BOTTOM PRICE PANEL (mobile only) */
  .bottom-price-panel {
    display: none;
    background: var(--navy-dark);
    padding: 16px 16px 20px;
    margin: 0 12px 16px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .bpp-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 6px;
  }
  .bpp-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 2px;
  }
  .bpp-total {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: -0.03em;
  }
  .bpp-total.bounce { animation: priceBounce 0.35s cubic-bezier(.36,.07,.19,.97); }
  .bpp-note-wrap { text-align: right; padding-top: 6px; }
  .bpp-note { font-size: 0.7rem; color: rgba(255,255,255,0.35); font-family: 'Montserrat', sans-serif; }
  .bpp-lines { margin-bottom: 8px; }
  .bpp-line { display: flex; justify-content: space-between; font-size: 0.79rem; color: rgba(255,255,255,0.7); padding: 2px 0; }
  .bpp-line .bl-amt { color: var(--gold-light); font-weight: 600; }
  .bpp-min { margin-bottom: 12px; }

  @media (max-width: 760px) {
    .bottom-price-panel { display: block; }
  }
  @media (min-width: 761px) {
    .bottom-price-panel { display: none !important; }
  }


  .addon-hint {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--navy);
    background: #eef2ff;
    border-radius: 8px;
    padding: 9px 13px;
    margin-bottom: 4px;
    border-left: 3px solid var(--navy-light);
  }


  /* SLIM HEADER */
  
  
  
  


  /* Make the entire page content scroll inside itself */
  


  /* ---- inlined-page tweaks ---- */
  .calc-host { padding-top: 10px; }
  .bottom-price-panel { display: none !important; }

  /* ===== MOBILE CART BAR (fixed bottom) ===== */
  .cart-bar { display: none; }
  @media (max-width: 760px) {
    .mobile-price-panel { display: none !important; }   /* replaced by the fixed bottom bar */
    .cart-bar { display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
      background: var(--navy-dark); box-shadow: 0 -10px 30px rgba(0,0,0,0.35); }
    .calc-host { padding-bottom: 96px; }                /* clear space for the fixed bar */
  }
  .cart-row { display: flex; align-items: center; gap: 12px; padding: 9px 14px; }
  .cart-summary { flex: 1; min-width: 0; background: none; border: none; text-align: left; cursor: pointer; padding: 4px 0; -webkit-tap-highlight-color: transparent; }
  .cart-label { display: block; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.62rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
  .cart-amt-row { display: flex; align-items: baseline; gap: 9px; }
  #cart-total { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.55rem; color: var(--gold); letter-spacing: -0.02em; }
  .cart-caret { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.66rem; color: rgba(255,255,255,0.55); }
  .cart-book { flex-shrink: 0; background: var(--gold); color: var(--navy-dark); font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 0.95rem; padding: 13px 24px; border: none; border-radius: 11px; cursor: pointer; -webkit-tap-highlight-color: transparent; }
  .cart-book:active { background: var(--gold-light); }
  .cart-panel { padding: 12px 14px 14px; border-bottom: 1px solid rgba(255,255,255,0.12); max-height: 52vh; overflow-y: auto; }
  .cart-panel-head { display: flex; align-items: center; justify-content: space-between; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.5); margin-bottom: 10px; }
  .cart-x { background: none; border: none; color: rgba(255,255,255,0.6); font-size: 1.05rem; cursor: pointer; padding: 2px 6px; }
  .cart-line { display: flex; justify-content: space-between; gap: 10px; font-size: 0.82rem; color: rgba(255,255,255,0.8); padding: 4px 0; }
  .cart-line span:last-child { color: var(--gold-light); font-weight: 700; }
  .cart-empty { font-size: 0.8rem; color: rgba(255,255,255,0.4); font-style: italic; }
  .cart-min { display: flex; align-items: center; gap: 8px; background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.4); border-radius: 9px; padding: 8px 12px; font-size: 0.74rem; color: var(--gold-light); font-weight: 600; margin-top: 10px; }
  .cart-opt { display: flex; align-items: center; gap: 12px; width: 100%; text-align: left; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 12px 14px; margin-bottom: 8px; color: #fff; text-decoration: none; cursor: pointer; -webkit-tap-highlight-color: transparent; }
  .cart-opt:last-child { margin-bottom: 0; }
  .cart-opt:active { background: rgba(255,255,255,0.1); }
  .cart-opt-ic { font-size: 1.3rem; flex-shrink: 0; width: 30px; text-align: center; }
  .cart-opt-tx { flex: 1; display: flex; flex-direction: column; }
  .cart-opt-tx b { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.9rem; }
  .cart-opt-tx small { font-size: 0.7rem; color: rgba(255,255,255,0.5); margin-top: 1px; }
  .cart-opt-ar { color: rgba(255,255,255,0.3); font-size: 1.2rem; flex-shrink: 0; }