
    :root {
      --beige-bg: #f5f5dc;
      --magenta: #e10098;
      --gold: #d4af37;
      --gold-light: rgba(212, 175, 55, 0.2);
      --dark-text: #222222;
      --glass-bg: rgba(255, 255, 255, 0.78);
      --glass-border: rgba(255, 255, 255, 0.9);
      --glass-shadow: 0 10px 40px 0 rgba(31, 38, 135, 0.1);
    }

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

    body {
      background: var(--beige-bg);
      font-family: "Manrope", sans-serif;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }

    /* ORBS BACKGROUND */
    .bg-orbs {
      position: fixed; top: 0; left: 0;
      width: 100vw; height: 100vh;
      z-index: -1; pointer-events: none; overflow: hidden;
    }
    .orb {
      position: absolute; border-radius: 50%;
      filter: blur(90px); opacity: 0.45;
      animation: float 16s infinite ease-in-out;
    }
    .orb-1 { width: 55vw; height: 55vw; background: var(--gold); top: -20%; right: -10%; }
    .orb-2 { width: 45vw; height: 45vw; background: var(--magenta); bottom: -10%; left: -10%; animation-delay: -8s; }
    @keyframes float {
      0%, 100% { transform: translate(0, 0); }
      50% { transform: translate(25px, 25px); }
    }

    /* HEADER */
    header { width: 100%; padding: 1.2rem 0; position: relative; z-index: 10; }
    .header-content {
      width: 95%; max-width: 1400px; margin: 0 auto;
      display: flex; justify-content: space-between; align-items: center; padding: 0 20px;
    }
.logo { font-size: 1.6rem; font-weight: 800; color: var(--dark-text); text-decoration: none; letter-spacing: -0.5px; display: flex; align-items: center; gap: 0px; transition: transform 0.3s ease; }
.logo:hover { transform: scale(1.02); }
.logo img { height: 35px; width: auto; object-fit: contain; }
.logo span { color: var(--magenta); }
    .nav-link { text-decoration: none; color: #666; font-weight: 600; font-size: 0.95rem; transition: color 0.2s; }
    .nav-link:hover { color: var(--dark-text); }

    /* LAYOUT */
    .page-wrapper {
      width: 95%; max-width: 1400px; margin: 0 auto;
      padding: 1rem 20px 2rem;
      display: grid;
      grid-template-columns: 1fr 360px;
      gap: 28px;
      flex: 1;
    }
  .day-cell.booked { 
      background: rgba(229, 62, 62, 0.1) !important; 
      color: #e53e3e !important; 
      text-decoration: line-through; 
      cursor: not-allowed; 
      pointer-events: none; 
      border-color: transparent !important; 
    }
    /* STEPS NAV */
    .steps-nav {
      display: flex; align-items: center; gap: 0; margin-bottom: 1.5rem;
    }
    .step-item {
      display: flex; align-items: center; gap: 8px;
      font-size: 0.9rem; font-weight: 700; color: #bbb;
      transition: color 0.3s;
    }
    .step-item.active { color: var(--dark-text); }
    .step-item.done { color: var(--gold); }
    .step-num {
      width: 30px; height: 30px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      background: #e0e0e0; font-size: 0.85rem; font-weight: 800;
      transition: all 0.3s; flex-shrink: 0;
    }
    .step-item.active .step-num { background: var(--dark-text); color: white; }
    .step-item.done .step-num { background: var(--gold); color: white; }
    .step-sep {
      flex: 1; height: 2px; background: #e0e0e0; margin: 0 8px;
      position: relative; overflow: hidden; border-radius: 2px; max-width: 60px;
      }
    .step-sep.done { background: var(--gold); }

    /* GLASS PANEL */
    .glass-panel {
      background: var(--glass-bg);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--glass-border);
      border-radius: 24px;
      padding: 2rem;
      box-shadow: var(--glass-shadow);
    }

    /* STEPS CONTENT */
    .step-content { display: none; }
    .step-content.active { display: block; }

    h2 { font-size: 1.9rem; font-weight: 800; margin-bottom: 0.4rem; }
    .subtitle { color: #777; margin-bottom: 1.8rem; font-size: 1rem; }

    /* PLAN CARDS */
    .plan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 1.5rem; }
    .plan-card {
      background: rgba(255,255,255,0.55); border: 3px solid transparent;
      border-radius: 20px; padding: 1.8rem; cursor: pointer;
      transition: all 0.25s; text-align: center;
    }
    .plan-card:hover { background: white; transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.09); }
    .plan-card.selected { border-color: var(--gold); background: white; box-shadow: 0 10px 30px rgba(212,175,55,0.2); }
    .plan-icon { font-size: 3rem; margin-bottom: 0.8rem; }
    .plan-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 0.4rem; }
    .plan-card p { color: #777; font-size: 0.9rem; margin-bottom: 0.8rem; }
    .plan-price { font-weight: 800; font-size: 1.7rem; }

    /* FORM */
    .form-group { margin-bottom: 1.4rem; }
    .form-group label { display: block; font-weight: 700; font-size: 0.95rem; margin-bottom: 8px; }
    .input-glass {
      width: 100%; padding: 12px 16px; border-radius: 12px;
      border: 1.5px solid rgba(0,0,0,0.1);
      background: rgba(255,255,255,0.7);
      font-size: 1rem; font-family: inherit; outline: none; transition: 0.25s;
    }
    .input-glass:focus { background: white; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.15); }

    /* CALENDAR */
    .calendar-section { display: none; margin-top: 0.5rem; }
    .calendar-section.visible { display: block; }
    .calendar-wrapper { background: rgba(255,255,255,0.55); padding: 1.4rem; border-radius: 16px; margin-bottom: 1.2rem; }
    .month-header {
      display: flex; justify-content: space-between; align-items: center;
      margin-bottom: 1rem; font-weight: 800; font-size: 1rem;
    }
    .month-btn {
      background: none; border: none; cursor: pointer; padding: 6px 10px;
      border-radius: 8px; color: var(--dark-text); font-size: 1rem;
      transition: background 0.2s;
    }
    .month-btn:hover { background: rgba(0,0,0,0.07); }
    .calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
    .day-name { text-align: center; font-size: 0.8rem; color: #999; font-weight: 700; padding-bottom: 6px; }
    .day-cell {
      aspect-ratio: 1; border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; font-weight: 600; font-size: 0.88rem;
      border: 2px solid transparent; transition: all 0.15s;
      background: rgba(255,255,255,0.6);
      user-select: none;
    }
    .day-cell:hover:not(.empty):not(.past) { background: white; border-color: var(--gold); }
    .day-cell.selected { background: var(--gold) !important; color: white; border-color: var(--gold); box-shadow: 0 3px 8px rgba(212,175,55,0.4); }
    .day-cell.in-range { background: var(--gold-light) !important; }
    .day-cell.empty { background: transparent; cursor: default; pointer-events: none; }
    .day-cell.past { opacity: 0.3; cursor: not-allowed; pointer-events: none; }

    /* LOGISTICS */
    .logistics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 0.8rem; }
    .logistics-card-item {
      background: rgba(255,255,255,0.6); border-radius: 14px; padding: 1rem;
      display: flex; align-items: center; gap: 12px;
    }
    .icon-circle {
      width: 38px; height: 38px; border-radius: 10px;
      display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
    }
    .ic-gold { background: var(--gold-light); color: var(--gold); }
    .ic-magenta { background: rgba(225,0,152,0.1); color: var(--magenta); }
    .logistics-label { font-size: 0.78rem; color: #888; }
    .logistics-val { font-weight: 800; font-size: 0.95rem; }

    /* OPTIONS */
    .options-group { margin-bottom: 1.4rem; }
    .options-group h4 { font-size: 1rem; font-weight: 800; margin-bottom: 0.8rem; }
    .option-row {
      display: flex; align-items: center; justify-content: space-between;
      background: rgba(255,255,255,0.45); padding: 0.9rem 1rem;
      border-radius: 14px; cursor: pointer; border: 2px solid transparent;
      transition: all 0.2s; margin-bottom: 10px;
    }
    .option-row:hover { background: white; }
    .option-row.active { border-color: var(--magenta); background: white; box-shadow: 0 4px 14px rgba(225,0,152,0.1); }
    .opt-left { display: flex; align-items: center; gap: 10px; }
    .opt-check {
      width: 22px; height: 22px; border-radius: 6px; border: 2px solid #ddd;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
      font-size: 0.75rem; color: white; transition: all 0.2s;
    }
    .option-row.active .opt-check { background: var(--magenta); border-color: var(--magenta); }
    .opt-text h5 { margin: 0; font-size: 0.95rem; font-weight: 800; }
    .opt-text p { margin: 2px 0 0; font-size: 0.82rem; color: #777; }
    .opt-price { font-weight: 800; color: var(--magenta); font-size: 0.95rem; white-space: nowrap; }

    /* NAVIGATION BUTTONS */
    .step-actions {
      display: flex; justify-content: space-between; align-items: center;
      margin-top: 1.8rem; padding-top: 1.2rem;
      border-top: 1px solid rgba(0,0,0,0.07);
    }
    .btn-next {
      padding: 13px 32px; border-radius: 50px;
      background: var(--dark-text); color: white; border: none;
      font-weight: 700; font-size: 1rem; cursor: pointer;
      transition: all 0.25s; font-family: inherit;
    }
    .btn-next:hover:not(:disabled) { background: var(--magenta); transform: scale(1.03); }
    .btn-next:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
    .btn-back {
      padding: 12px 28px; border-radius: 50px;
      background: transparent; border: 1.5px solid #ccc; color: #555;
      font-weight: 600; font-size: 0.95rem; cursor: pointer;
      transition: all 0.25s; font-family: inherit;
    }
    .btn-back:hover { background: rgba(0,0,0,0.05); border-color: #aaa; }
    .btn-pay {
      padding: 13px 32px; border-radius: 50px;
      background: var(--gold); color: white; border: none;
      font-weight: 800; font-size: 1rem; cursor: pointer;
      transition: all 0.25s; font-family: inherit;
      box-shadow: 0 6px 20px rgba(212,175,55,0.35);
    }
    .btn-pay:hover { background: #c09b2a; transform: scale(1.03); }

    /* CART SIDEBAR */
    .cart-sidebar { position: sticky; top: 1rem; }
    .cart-box {
      background: white; border-radius: 22px; padding: 1.8rem;
      box-shadow: 0 20px 50px rgba(0,0,0,0.09);
      border: 1px solid rgba(212,175,55,0.2);
    }
    .cart-title { font-size: 1.2rem; font-weight: 800; margin-bottom: 1.2rem; color: var(--dark-text); }
    .cart-empty { color: #bbb; font-size: 0.9rem; text-align: center; padding: 1.5rem 0; }
    .cart-list { list-style: none; margin-bottom: 1rem; }
    .cart-item {
      display: flex; justify-content: space-between; align-items: center;
      padding: 10px 0; border-bottom: 1px dashed #f0f0f0;
      font-size: 0.92rem; animation: fadeUp 0.25s ease;
    }
    .cart-item:last-child { border-bottom: none; }
    .cart-item-name { font-weight: 600; color: #444; }
    .cart-item-price { font-weight: 800; color: var(--dark-text); }
    @keyframes fadeUp { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }

    .cart-divider { height: 1px; background: #f0f0f0; margin: 0.8rem 0; }
    .cart-total-row {
      display: flex; justify-content: space-between; align-items: center;
      margin-bottom: 1.2rem;
    }
    .cart-total-label { font-size: 0.9rem; color: #888; font-weight: 600; }
    .cart-total-amount { font-size: 2rem; font-weight: 800; color: var(--dark-text); }
    .btn-cart-pay {
      width: 100%; padding: 15px; border-radius: 50px;
      background: var(--dark-text); color: white; border: none;
      font-weight: 700; font-size: 1rem; cursor: pointer;
      transition: all 0.25s; font-family: inherit;
    }
    .btn-cart-pay:hover:not(:disabled) { background: var(--magenta); transform: scale(1.02); }
    .btn-cart-pay:disabled { opacity: 0.35; cursor: not-allowed; }
    .cart-secure {
      display: flex; align-items: center; justify-content: center; gap: 6px;
      margin-top: 0.8rem; font-size: 0.8rem; color: #bbb;
    }

    /* PRICING INFO in cart */
    .price-breakdown {
      background: rgba(212,175,55,0.07); border-radius: 12px;
      padding: 0.9rem; margin-bottom: 1rem; font-size: 0.85rem;
    }
    .price-breakdown p { margin-bottom: 4px; color: #666; }
    .price-breakdown strong { color: var(--dark-text); }

    /* EXISTING EVENT MODAL */
    .modal-overlay {
      position: fixed; top: 0; left: 0; width: 100%; height: 100%;
      background: rgba(0,0,0,0.45); backdrop-filter: blur(10px);
      z-index: 2000; display: none; justify-content: center; align-items: center;
      padding: 1rem;
    }
    .modal-overlay.open { display: flex; }
    .modal-box {
      background: white; width: 100%; max-width: 480px;
      padding: 2.2rem; border-radius: 24px;
      box-shadow: 0 30px 60px rgba(0,0,0,0.2);
      animation: modalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
      max-height: 90vh; overflow-y: auto; text-align: center;
    }
    @keyframes modalIn {
      from { opacity: 0; transform: scale(0.88) translateY(20px); }
      to { opacity: 1; transform: scale(1) translateY(0); }
    }
    #existing-events-list { margin-bottom: 1.5rem; max-height: 40vh; overflow-y: auto; padding-right: 5px; }
    #existing-events-list::-webkit-scrollbar { width: 6px; }
    #existing-events-list::-webkit-scrollbar-thumb { background: #ddd; border-radius: 10px; }
    .event-item { 
      background: rgba(212,175,55,0.05); border: 1px solid rgba(212,175,55,0.3); border-radius: 12px; 
      padding: 15px; margin-bottom: 10px; display: flex; justify-content: space-between; align-items: center; 
      cursor: pointer; transition: 0.2s; text-align: left; gap: 15px; 
    }
    .event-item:hover { background: white; border-color: var(--gold); box-shadow: 0 4px 15px rgba(212,175,55,0.15); }
    .event-item-info { flex: 1; min-width: 0; }
    .event-item-info h4 { margin: 0 0 4px 0; color: var(--dark-text); font-size: 1.05rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .event-item-info p { margin: 0; font-size: 0.8rem; color: #777; }
    .event-item i { flex-shrink: 0; }
    .btn-confirm { width: 100%; padding: 15px; border-radius: 50px; background: var(--dark-text); color: white; border: none; font-weight: 700; font-size: 1.05rem; cursor: pointer; transition: all 0.25s; font-family: inherit; margin-top: 1.2rem; }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .page-wrapper { grid-template-columns: 1fr; gap: 20px; }
      .cart-sidebar { position: static; }
      .plan-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 500px) {
      .plan-grid { grid-template-columns: 1fr; }
      .logistics-grid { grid-template-columns: 1fr; }
      .glass-panel { padding: 1.4rem; }
    } 