    :root {
      --primary: #18233d; --primary-light: #24355a;
      --accent-1: #2f5ea9; --accent-2: #86b53e; --accent-3: #d6e85a;
      --gradient-accent: linear-gradient(135deg, #1d3472 0%, #2d62ab 52%, #84b23d 100%);
      --text-primary: #18233d; --text-secondary: #5f6f8d; --text-light: #ffffff;
      --bg-white: #ffffff; --bg-light: #f4f7fb; --bg-section: #ecf1f8;
      --shadow-md: 0 4px 6px rgba(0,0,0,0.07); --shadow-lg: 0 10px 15px rgba(0,0,0,0.1); --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
      --radius-sm: 8px; --radius-md: 12px; --radius-lg: 16px;
      --font-primary: 'Inter', sans-serif; --font-display: 'Space Grotesk', sans-serif;
      --color-available: #10b981; --color-reserved: #f59e0b; --color-sold: #ef4444;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: var(--font-primary); background: var(--bg-light); color: var(--text-primary); min-height: 100vh; }
    [v-cloak] { display: none !important; }

    /* Header */
    .map-header { background: var(--primary); padding: 20px 0; position: sticky; top: 0; z-index: 100; }
    .map-header .container { max-width: 1400px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
    .map-header-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text-light); }
    .map-header-logo img { height: 40px; }
    .map-header-logo span { font-family: var(--font-display); font-weight: 700; font-size: 18px; }
    .map-header-nav { display: flex; gap: 16px; align-items: center; }
    .map-header-nav a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; cursor: pointer; }
    .map-header-nav a:hover { color: var(--accent-3); }

    /* Stats Bar */
    .stats-bar { background: var(--bg-white); border-bottom: 1px solid #e2e8f0; padding: 16px 0; }
    .stats-bar .container { max-width: 1400px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
    .stat-card { display: flex; align-items: center; gap: 10px; padding: 8px 16px; border-radius: var(--radius-sm); background: var(--bg-light); }
    .stat-dot { width: 10px; height: 10px; border-radius: 50%; }
    .stat-dot.available { background: var(--color-available); }
    .stat-dot.reserved { background: var(--color-reserved); }
    .stat-dot.sold { background: var(--color-sold); }
    .stat-dot.total { background: var(--accent-2); }
    .stat-value { font-family: var(--font-display); font-weight: 700; font-size: 20px; }
    .stat-label { font-size: 12px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.5px; }

    /* Filters */
    .filters-bar { padding: 12px 0; background: var(--bg-white); border-bottom: 1px solid #e2e8f0; }
    .filters-bar .container { max-width: 1400px; margin: 0 auto; padding: 0 24px; display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
    .filter-btn { padding: 6px 16px; border: 1px solid #e2e8f0; border-radius: var(--radius-sm); background: var(--bg-white); cursor: pointer; font-size: 13px; font-weight: 500; color: var(--text-secondary); transition: all 0.2s; }
    .filter-btn:hover { border-color: var(--accent-1); color: var(--accent-1); }
    .filter-btn.active { background: var(--primary); color: white; border-color: var(--primary); }
    .filter-label { font-size: 13px; color: var(--text-secondary); font-weight: 600; margin-right: 4px; }

    /* Zoom Controls */
    .zoom-controls { display: flex; gap: 8px; margin-left: auto; align-items: center; }
    .zoom-btn { width: 36px; height: 36px; border-radius: var(--radius-sm); border: 1px solid #e2e8f0; background: var(--bg-white); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--text-secondary); transition: all 0.2s; }
    .zoom-btn:hover { border-color: var(--accent-1); color: var(--accent-1); background: rgba(47,94,169,0.05); }
    .zoom-level { font-size: 12px; color: var(--text-secondary); font-weight: 600; min-width: 40px; text-align: center; }

    /* Map Container */
    .map-container { max-width: 1400px; margin: 24px auto; padding: 0 24px; }
    .map-wrapper { background: var(--primary); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; position: relative; }
    .map-viewport { width: 100%; overflow: hidden; cursor: grab; position: relative; height: 75vh; min-height: 500px; }
    .map-viewport:active { cursor: grabbing; }
    .map-canvas { position: absolute; top: 0; left: 0; transform-origin: 0 0; transition: none; will-change: transform; }
    .map-image { display: block; user-select: none; -webkit-user-drag: none; pointer-events: none; }

    /* Hotspots */
    .hotspot {
      position: absolute;
      border-radius: 4px;
      cursor: pointer;
      transition: transform 0.15s ease, box-shadow 0.15s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-weight: 700;
      color: rgba(255,255,255,0.95);
      text-shadow: 0 1px 2px rgba(0,0,0,0.5);
      border: 2px solid rgba(255,255,255,0.4);
      z-index: 2;
    }
    .hotspot:hover {
      transform: scale(1.08);
      z-index: 10;
    }
    .hotspot.available {
      background: rgba(16, 185, 129, 0.55);
      box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
    }
    .hotspot.available:hover {
      background: rgba(16, 185, 129, 0.8);
      box-shadow: 0 0 20px rgba(16, 185, 129, 0.6), 0 0 40px rgba(16, 185, 129, 0.3);
      border-color: rgba(255,255,255,0.8);
    }
    .hotspot.reserved {
      background: rgba(245, 158, 11, 0.55);
      box-shadow: 0 0 8px rgba(245, 158, 11, 0.4);
    }
    .hotspot.reserved:hover {
      background: rgba(245, 158, 11, 0.8);
      box-shadow: 0 0 20px rgba(245, 158, 11, 0.6), 0 0 40px rgba(245, 158, 11, 0.3);
      border-color: rgba(255,255,255,0.8);
    }
    .hotspot.sold {
      background: rgba(239, 68, 68, 0.55);
      box-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
      cursor: default;
    }
    .hotspot.sold:hover {
      background: rgba(239, 68, 68, 0.7);
      box-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
    }
    .hotspot.hidden { display: none; }

    .hotspot-label {
      font-size: 10px;
      line-height: 1;
      text-align: center;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
      padding: 2px;
    }

    /* Pulse animation for available */
    @keyframes pulse-available {
      0%, 100% { box-shadow: 0 0 8px rgba(16,185,129,0.4); }
      50% { box-shadow: 0 0 18px rgba(16,185,129,0.7), 0 0 30px rgba(16,185,129,0.3); }
    }
    .hotspot.available { animation: pulse-available 3s infinite ease-in-out; }
    .hotspot.available:hover { animation: none; }

    /* Legend */
    .map-legend-bar { display: flex; gap: 20px; padding: 16px 24px; background: rgba(10,22,40,0.95); flex-wrap: wrap; align-items: center; }
    .legend-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.8); }
    .legend-color { width: 20px; height: 14px; border-radius: 3px; border: 1px solid rgba(255,255,255,0.3); }
    .legend-color.available { background: rgba(16,185,129,0.7); }
    .legend-color.reserved { background: rgba(245,158,11,0.7); }
    .legend-color.sold { background: rgba(239,68,68,0.7); }
    .map-instructions { margin-left: auto; font-size: 12px; color: rgba(255,255,255,0.5); }
    .map-instructions i { margin-right: 4px; }

    /* Tooltip */
    .map-tooltip { position: fixed; background: var(--primary); color: white; padding: 12px 16px; border-radius: var(--radius-sm); font-size: 13px; pointer-events: none; z-index: 1000; box-shadow: var(--shadow-xl); max-width: 260px; border: 1px solid rgba(214,232,90,0.26); }
    .tt-code { font-family: var(--font-display); font-weight: 700; font-size: 16px; margin-bottom: 4px; }
    .tt-info { font-size: 12px; opacity: 0.8; margin-top: 4px; line-height: 1.5; }
    .tt-status { display: inline-block; padding: 3px 10px; border-radius: 4px; font-size: 10px; font-weight: 600; margin-top: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
    .tt-status.available { background: var(--color-available); }
    .tt-status.reserved { background: var(--color-reserved); }
    .tt-status.sold { background: var(--color-sold); }

    /* Modal */
    .modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.6); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(4px); }
    .modal { background: var(--bg-white); border-radius: var(--radius-lg); width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-xl); }
    .modal-header { padding: 24px 24px 0; display: flex; justify-content: space-between; align-items: flex-start; }
    .modal-header h2 { font-family: var(--font-display); font-size: 22px; }
    .modal-close { background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text-secondary); padding: 4px; line-height: 1; }
    .modal-close:hover { color: var(--text-primary); }
    .modal-body { padding: 20px 24px 24px; }

    /* Space Detail */
    .space-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
    .space-detail-item { background: var(--bg-light); padding: 12px; border-radius: var(--radius-sm); }
    .space-detail-item .label { font-size: 11px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
    .space-detail-item .value { font-family: var(--font-display); font-weight: 600; font-size: 16px; }
    .space-detail-item.full { grid-column: span 2; }
    .space-price { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--accent-1); text-align: center; padding: 16px; background: linear-gradient(135deg, rgba(47,94,169,0.08), rgba(134,181,62,0.08)); border-radius: var(--radius-md); margin-bottom: 20px; }
    .space-price small { font-size: 14px; color: var(--text-secondary); font-weight: 400; display: block; }
    .space-sold-badge { text-align: center; padding: 20px; background: #fef2f2; border-radius: var(--radius-md); margin-bottom: 16px; }
    .space-sold-badge i { font-size: 32px; color: var(--color-sold); margin-bottom: 8px; display: block; }
    .space-sold-badge span { font-family: var(--font-display); font-weight: 700; color: var(--color-sold); font-size: 18px; }
    .space-reserved-badge { text-align: center; padding: 20px; background: #fffbeb; border-radius: var(--radius-md); margin-bottom: 16px; }
    .space-reserved-badge i { font-size: 32px; color: var(--color-reserved); margin-bottom: 8px; display: block; }
    .space-reserved-badge span { font-family: var(--font-display); font-weight: 700; color: var(--color-reserved); font-size: 18px; }

    /* Steps / Form / Buttons */
    .checkout-steps { display: flex; gap: 4px; margin-bottom: 24px; }
    .checkout-step { flex: 1; height: 4px; border-radius: 2px; background: #e2e8f0; }
    .checkout-step.active { background: var(--accent-1); }
    .checkout-step.done { background: var(--accent-2); }
    .form-group { margin-bottom: 16px; }
    .form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
    .form-group input, .form-group select, .form-group textarea { width: 100%; padding: 10px 14px; border: 1px solid #e2e8f0; border-radius: var(--radius-sm); font-size: 14px; font-family: var(--font-primary); transition: border-color 0.2s; }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent-1); box-shadow: 0 0 0 3px rgba(47,94,169,0.1); }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; border: none; cursor: pointer; transition: all 0.2s; text-decoration: none; }
    .btn-primary { background: var(--primary); color: white; border: 1px solid rgba(214,232,90,0.24); }
    .btn-primary:hover { background: var(--primary-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }
    .btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
    .btn-outline { background: transparent; border: 1px solid #e2e8f0; color: var(--text-secondary); }
    .btn-outline:hover { border-color: var(--accent-1); color: var(--accent-1); }
    .btn-block { width: 100%; }
    .btn-group { display: flex; gap: 12px; margin-top: 20px; }

    /* Success */
    .success-screen { text-align: center; padding: 20px 0; }
    .success-screen i { font-size: 56px; color: var(--color-available); margin-bottom: 16px; }
    .success-screen h3 { font-family: var(--font-display); font-size: 20px; margin-bottom: 8px; }
    .success-screen .order-number { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--accent-1); margin: 16px 0; padding: 12px; background: var(--bg-light); border-radius: var(--radius-sm); }
    .success-screen p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

    /* Order Lookup */
    .order-lookup { max-width: 1400px; margin: 24px auto; padding: 0 24px; }
    .order-lookup-card { background: var(--bg-white); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-md); }
    .order-lookup-card h3 { font-family: var(--font-display); margin-bottom: 12px; }
    .order-lookup-form { display: flex; gap: 12px; }
    .order-lookup-form input { flex: 1; }
    .lookup-result { background: var(--bg-light); padding: 16px; border-radius: var(--radius-sm); margin-top: 12px; }
    .lookup-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
    .lookup-header strong { font-family: var(--font-display); font-size: 18px; }
    .status-pill { padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; color: white; }
    .status-pill.pending_payment { background: var(--color-reserved); }
    .status-pill.paid { background: var(--color-available); }
    .status-pill.cancelled { background: var(--color-sold); }
    .status-pill.refunded { background: #8b5cf6; }

    /* Search Highlight */
    .search-bar { display: flex; align-items: center; gap: 8px; margin-left: 16px; }
    .search-bar input { padding: 6px 12px; border: 1px solid #e2e8f0; border-radius: var(--radius-sm); font-size: 13px; width: 160px; font-family: var(--font-primary); }
    .search-bar input:focus { outline: none; border-color: var(--accent-1); }

    @media (max-width: 768px) {
      .stats-bar .container { gap: 12px; }
      .stat-card { padding: 6px 10px; }
      .stat-value { font-size: 16px; }
      .space-detail { grid-template-columns: 1fr; }
      .space-detail-item.full { grid-column: span 1; }
      .form-row { grid-template-columns: 1fr; }
      .modal { max-width: 100%; margin: 10px; }
      .map-viewport { height: 60vh; min-height: 400px; }
      .map-instructions { display: none; }
      .search-bar { display: none; }
    }
