    .btn-clear {
      background: #ddd;
      color: #000;
      margin-right: 10px;
    }
    .btn-primary {
      background: #000;
      color: #fff;
    }
    :root {
      --bg: #08090c;
      --surface: #0f1319;
      --surface-soft: #171c25;
      --surface-border: #2a2f38;
      --text-primary: #e5e7eb;
      --text-secondary: #9ca3af;
      --accent: #ec4899;
      --accent-deep: #be185d;
      --accent-soft: #f9a8d4;
      --muted: #8b95a4;
      --danger: #fb7185;
      --gray-text: #94a3b8;
      --body-bg: linear-gradient(180deg, #07080b 0%, #181d27 100%);
      --border: #2a2f38;
      --dark-border: #2a2f38;
      --selected-bg: #23192a;
      --selected-border: #ec4899;
      --selected-text: #f9a8d4;
      --success-border: rgba(236, 72, 153, 0.28);
      --success-text: #f9a8d4;
      --glow-pink: rgba(236,72,153,0.14);
      --glow-mint: rgba(139,195,74,0.12);
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: 'DM Sans', sans-serif; background: radial-gradient(circle at 12% 10%, var(--glow-pink) 0%, transparent 18%), radial-gradient(circle at 88% 80%, var(--glow-mint) 0%, transparent 22%), var(--body-bg); color: var(--text-primary); font-size: 15px; }
    h1,h2,h3,h4,h5,h6,.brand { font-family: 'Plus Jakarta Sans', sans-serif; }

    nav {
      background: rgba(10, 15, 20, 0.95);
      border-bottom: 1px solid rgba(236, 72, 153, 0.16);
      padding: 0 2rem;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: sticky; top: 0; z-index: 200;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    }
    .nav-brand { display: flex; align-items: center; gap: 10px; color: white; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.15rem; letter-spacing: -0.3px; }
    .nav-brand span { color: var(--accent); }
    .nav-logo { height: 28px; border-radius: 6px; margin-right: 8px; transition: transform 140ms ease, box-shadow 180ms ease, filter 180ms ease; display: inline-block; vertical-align: middle; }
    .nav-logo:hover, .nav-logo:focus {
      transform: translateY(-2px) scale(1.04);
      box-shadow: 0 8px 30px rgba(236, 72, 153, 0.32), 0 2px 8px rgba(236, 72, 153, 0.18);
      filter: drop-shadow(0 6px 20px rgba(236, 72, 153, 0.22));
      outline: none;
      cursor: pointer;
    }
    .nav-logo:focus-visible { box-shadow: 0 8px 36px rgba(236, 72, 153, 0.36); }

    /* Search icon inside primary button */
    .btn-primary .icon-search { width: 16px; height: 16px; flex: 0 0 16px; display: inline-block; }
    .nav-actions { display: flex; gap: 10px; align-items: center; }
    .hamburger { display: none; background: none; border: none; color: white; cursor: pointer; padding: 6px; border-radius: 8px; font-size: 1.5rem; line-height: 1; transition: background 0.15s; }
    .hamburger:hover { background: rgba(236, 72, 153, 0.15); }
    .mobile-menu { display: none; position: absolute; top: 60px; left: 0; right: 0; background: #111; border-top: 1px solid #222; padding: 12px 20px 16px; flex-direction: column; gap: 10px; z-index: 199; box-shadow: 0 6px 24px rgba(0,0,0,0.5); }
    .mobile-menu.open { display: flex; }
    .btn-outline { background: transparent; color: var(--accent); border: 1px solid rgba(236, 72, 153, 0.35); padding: 7px 18px; border-radius: 10px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.85rem; cursor: pointer; transition: all 0.15s; }
    .btn-outline:hover { background: rgba(236, 72, 153, 0.08); }
    .btn-primary { background: linear-gradient(135deg, var(--accent-deep), var(--accent)); color: var(--bg); border: none; padding: 7px 18px; border-radius: 10px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.85rem; cursor: pointer; transition: all 0.15s; display: flex; align-items: center; gap: 6px; }
    .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(236, 72, 153, 0.25); }
    .mobile-menu .btn-outline, .mobile-menu .btn-primary { width: 100%; justify-content: center; padding: 11px 18px; font-size: 0.9rem; }

    main { max-width: 1100px; margin: 0 auto; padding: 28px 20px 60px; }

    .hero-banner {
      max-width: 1100px;
      margin: 20px auto;
      padding: 0 20px;
    }
    .hero-banner-image {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 20px;
      box-shadow: 0 18px 45px rgba(0,0,0,0.18);
    }

    .photo-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px; gap: 10px; border-radius: 20px; overflow: hidden; margin-bottom: 28px; }
    .photo-grid .main-photo { grid-row: 1 / 3; background: linear-gradient(135deg, #11191f 0%, #0d151c 100%); display: flex; align-items: center; justify-content: center; font-size: 5rem; position: relative; overflow: hidden; }
    .photo-grid .main-photo::after { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Crect width='400' height='400' fill='%230b1218'/%3E%3Cline x1='200' y1='0' x2='200' y2='400' stroke='%23ec4899' stroke-width='3'/%3E%3Cline x1='0' y1='200' x2='400' y2='200' stroke='%23ec4899' stroke-width='3'/%3E%3Crect x='50' y='50' width='300' height='300' fill='none' stroke='%23162a34' stroke-width='6' rx='6'/%3E%3Crect x='90' y='90' width='220' height='220' fill='%2310171e' rx='4'/%3E%3C/svg%3E") center/cover; opacity: 0.35; }
    .court-label { position: absolute; bottom: 16px; left: 16px; z-index: 2; background: rgba(0,0,0,0.65); color: white; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.85rem; padding: 5px 12px; border-radius: 8px; border: 1px solid rgba(236,72,153,0.3); backdrop-filter: blur(6px); }
    .photo-mini { background: linear-gradient(135deg, #151f27, #10171e); display: flex; align-items: center; justify-content: center; font-size: 2rem; position: relative; overflow: hidden; }
    .photo-mini:nth-child(5) { background: #121a22; font-size: 0.9rem; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: var(--accent); cursor: pointer; gap: 4px; flex-direction: column; }
    .photo-mini::after { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Crect width='200' height='200' fill='%2310171e'/%3E%3Crect x='30' y='30' width='140' height='140' fill='none' stroke='%23172b34' stroke-width='4' rx='4'/%3E%3Cline x1='100' y1='0' x2='100' y2='200' stroke='%23ec4899' stroke-width='2'/%3E%3C/svg%3E") center/cover; opacity: 0.3; }

    .venue-header h1 { font-size: 1.9rem; font-weight: 800; color: var(--text-primary); letter-spacing: -0.5px; margin-bottom: 10px; }
    .venue-meta { display: flex; flex-wrap: wrap; gap: 20px; color: var(--muted); font-size: 0.9rem; margin-bottom: 16px; }
    .venue-meta span { display: flex; align-items: center; gap: 5px; }

    .pricing-banner { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; padding: 16px 22px; margin: 16px 0 28px; display: flex; flex-wrap: wrap; gap: 8px 28px; align-items: center; }
    .pricing-banner .rate { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: var(--text-primary); font-size: 0.95rem; display: flex; align-items: center; gap: 7px; }
    .pricing-banner .note { color: var(--gray-text); font-size: 0.82rem; width: 100%; }

    .booking-section { display: grid; grid-template-columns: 280px 1fr; gap: 20px; align-items: start; }

    .calendar-card { background: rgba(255,255,255,0.04); border-radius: 18px; border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 10px 30px rgba(0,0,0,0.18); padding: 18px; position: sticky; top: 80px; }
    .cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
    .cal-header h3 { font-size: 0.95rem; font-weight: 700; color: var(--accent); }
    .cal-nav { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; width: 28px; height: 28px; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; color: var(--accent); transition: all 0.15s; }
    .cal-nav:hover { background: rgba(236, 72, 153, 0.12); border-color: rgba(236, 72, 153, 0.25); }
    .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
    .cal-dow { text-align: center; font-size: 0.7rem; font-weight: 700; color: var(--gray-text); padding: 4px 0; font-family: 'Plus Jakarta Sans', sans-serif; }
    .cal-day { text-align: center; padding: 6px 0; font-size: 0.82rem; border-radius: 8px; cursor: pointer; transition: all 0.15s; color: #9ca3af; }
    .cal-day:hover:not(.empty):not(.past) { background: rgba(236, 72, 153, 0.12); color: var(--accent); }
    .cal-day.today { background: var(--accent-deep); color: var(--bg); font-weight: 700; box-shadow: 0 0 14px rgba(236, 72, 153, 0.36); }
    .cal-day.selected:not(.today) { background: rgba(236, 72, 153, 0.18); color: var(--accent); font-weight: 700; border: 1px solid rgba(236, 72, 153, 0.5); }
    .cal-day.past { color: #374151; cursor: default; }
    .cal-day.empty { cursor: default; }
    .legend { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--dark-border); display: flex; flex-direction: column; gap: 7px; }
    .legend-title { font-size: 0.78rem; font-weight: 700; color: var(--gray-text); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 4px; }
    .legend-item { display: flex; align-items: center; gap: 9px; font-size: 0.83rem; color: #9ca3af; }
    .dot { width: 10px; height: 10px; border-radius: 50%; }
    .dot-green { background: #4ade80; }
    .dot-pink { background: var(--accent); }
    .dot-gray { background: #374151; }
    .dot-red { background: #f87171; }

    .table-panel { background: rgba(255,255,255,0.04); border-radius: 18px; border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 10px 30px rgba(0,0,0,0.18); overflow: hidden; }
    .table-header { padding: 16px 20px; border-bottom: 1px solid var(--dark-border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
    .table-header h2 { font-size: 1rem; font-weight: 700; color: var(--text-primary); display: flex; align-items: center; gap: 8px; }
    .today-btn { background: rgba(236,72,153,0.1); border: 1px solid rgba(236,72,153,0.3); color: var(--accent); padding: 5px 14px; border-radius: 8px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 0.8rem; cursor: pointer; transition: all 0.15s; }
    .today-btn:hover { background: rgba(236,72,153,0.16); }

    .table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; max-height: 600px; overflow-y: auto; }
    table { width: 100%; border-collapse: collapse; min-width: 480px; }
    thead tr { background: #111; position: sticky; top: 0; z-index: 10; }
    thead th { padding: 12px 16px; text-align: center; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: var(--accent); font-size: 0.82rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
    thead th:first-child { text-align: left; }
    tbody tr { border-top: 1px solid var(--dark-border); transition: background 0.1s; }
    tbody tr:hover { background: rgba(255,255,255,0.02); }
    tbody td { padding: 10px 16px; font-size: 0.85rem; }
    .time-cell { font-weight: 600; color: #9ca3af; white-space: nowrap; }

    .slot-btn { width: 100%; padding: 9px 10px; border-radius: 10px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.8rem; border: none; cursor: pointer; transition: all 0.18s; }
      .slot-available {
        background: linear-gradient(180deg, #042a1a 0%, #08321f 100%);
        color: #00ff66;
        border: 1px solid #06402b;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.02), 0 2px 10px rgba(0,255,102,0.06);
        transition: transform 0.12s ease, box-shadow 0.18s ease;
      }
      .slot-available:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 22px rgba(0,255,102,0.18), inset 0 1px 0 rgba(255,255,255,0.02);
      }
    .slot-selected {
      background: linear-gradient(180deg, #3b0026 0%, #520032 100%);
      color: var(--accent);
      border: 1px solid rgba(236,72,153,0.95);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 6px 18px rgba(236,72,153,0.18);
      transition: transform 0.12s ease, box-shadow 0.18s ease;
      border-radius: 10px;
    }
    .slot-selected:hover {
      transform: translateY(-2px);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.02), 0 12px 30px rgba(236,72,153,0.26);
    }
    .slot-booked { background: rgba(156,163,175,0.08); color: #9ca3af; border: 1px solid rgba(156,163,175,0.15); cursor: not-allowed; }
    .slot-past { background: rgba(107,114,128,0.08); color: #6b7280; border: 1px solid rgba(107,114,128,0.2); cursor: not-allowed; }
    .slot-pending { background: #1a1a1a; color: #10b981; border: 1px solid rgba(16, 185, 129, 0.3); cursor: default; font-size: 0.72rem; box-shadow: 0 0 12px rgba(16, 185, 129, 0.15); white-space: pre-wrap; }

    /* CART BAR */
    .cart-bar { position: fixed; bottom: 0; left: 0; right: 0; background: rgba(10, 15, 20, 0.96); border-top: 1px solid rgba(236, 72, 153, 0.18); padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; z-index: 300; transform: translateY(100%); transition: transform 0.3s ease; box-shadow: 0 -8px 30px rgba(0,0,0,0.22); }
    .cart-bar.visible { transform: translateY(0); }
    .cart-info { display: flex; flex-direction: column; gap: 2px; }
    .cart-info .cart-count { font-size: 0.82rem; color: var(--accent); font-weight: 600; }
    .cart-info .cart-total { font-size: 1.1rem; font-weight: 800; color: white; font-family: 'Plus Jakarta Sans', sans-serif; }
    .cart-info .cart-total span { color: var(--accent); }
    .cart-actions { display: flex; gap: 10px; align-items: center; }
    .btn-clear { background: transparent; border: 1px solid rgba(255,255,255,0.12); color: var(--muted); padding: 9px 16px; border-radius: 10px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 0.85rem; cursor: pointer; transition: all 0.15s; }
    .btn-clear:hover { border-color: rgba(236, 72, 153, 0.35); color: var(--accent); }
    .btn-checkout { background: linear-gradient(135deg, var(--accent-deep), var(--accent)); color: var(--bg); border: none; padding: 10px 22px; border-radius: 10px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.88rem; cursor: pointer; transition: all 0.2s; box-shadow: 0 6px 22px rgba(236,72,153,0.25); }
    .btn-checkout:hover { transform: translateY(-1px); box-shadow: 0 8px 30px rgba(236,72,153,0.35); }

    .policies-section { margin-top: 32px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 18px; padding: 24px; }
    .policies-section h2 { font-size: 1.05rem; font-weight: 800; color: var(--text-primary); margin-bottom: 18px; }
    .policies-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
    .policy-item h4 { font-size: 0.75rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
    .policy-item p { font-size: 0.85rem; color: #9ca3af; line-height: 1.6; }
    .faq-item { display: flex; align-items: center; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.85rem; color: var(--accent); cursor: pointer; transition: color 0.15s; }
    .faq-item:last-child { border-bottom: none; }
    .faq-item:hover { color: var(--accent); }

    footer { background: #081016; border-top: 1px solid rgba(255,255,255,0.06); color: var(--text-primary); padding: 40px 0 0; margin-top: 60px; }
    .footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 20px 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand h2 { font-size: 1.2rem; font-weight: 800; margin-bottom: 6px; }
    .footer-brand h2 span { color: var(--accent); }
    .footer-brand p { color: var(--muted); font-size: 0.88rem; margin-bottom: 14px; }
    .social-links { display: flex; gap: 10px; }
    .social-link { width: 34px; height: 34px; background: rgba(236,72,153,0.08); border: 1px solid rgba(236,72,153,0.18); border-radius: 10px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 0.9rem; color: var(--accent); text-decoration: none; transition: all 0.15s; }
    .social-link:hover { background: rgba(236,72,153,0.18); }
    .footer-links { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
    .footer-links a { color: var(--muted); font-size: 0.88rem; text-decoration: none; transition: color 0.15s; }
    .footer-links a:hover { color: var(--accent); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); text-align: center; padding: 14px 20px; font-size: 0.8rem; color: var(--muted); }

    /* MODAL */
    .modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 1000; align-items: center; justify-content: center; backdrop-filter: blur(6px); }
    .modal-overlay.open { display: flex; }
    .modal { background: #101820; border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; width: 90%; max-width: 500px; padding: 28px; box-shadow: 0 20px 60px rgba(0,0,0,0.28); animation: slideUp 0.2s ease; max-height: 90vh; overflow-y: auto; }
    @keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
    .modal-top { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
    .modal-top .check-icon { width: 36px; height: 36px; background: rgba(236,72,153,0.14); border: 1px solid rgba(236,72,153,0.32); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 1rem; }
    .modal h2 { font-size: 1.25rem; font-weight: 800; color: white; }
    .modal .subtitle { font-size: 0.85rem; color: var(--gray-text); margin-bottom: 20px; }
    .modal-progress { height: 4px; background: #1a1a1a; border-radius: 2px; margin-bottom: 20px; }
    .modal-progress-fill { height: 100%; background: linear-gradient(90deg, var(--accent-deep), var(--accent)); border-radius: 2px; width: 80%; }

    .slot-summary { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; overflow: hidden; margin-bottom: 18px; max-height: 200px; overflow-y: auto; }
    .slot-summary-title { font-size: 0.75rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; padding: 10px 14px; border-bottom: 1px solid rgba(255,255,255,0.08); position: sticky; top: 0; background: rgba(16,24,32,0.96); }
    .slot-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 14px; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .slot-row:last-child { border-bottom: none; }
    .slot-row-info { display: flex; flex-direction: column; gap: 2px; }
    .slot-row-court { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: var(--text-primary); font-size: 0.88rem; }
    .slot-row-time { font-size: 0.78rem; color: var(--gray-text); }
    .slot-row-price { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: var(--accent); font-size: 0.9rem; }
    .slot-row .remove-slot { background: none; border: none; color: #6b7280; cursor: pointer; font-size: 1.2rem; padding: 4px 8px; border-radius: 6px; transition: all 0.15s; }
    .slot-row .remove-slot:hover { color: var(--red-text); background: var(--red-bg); }
    .slot-total-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 14px; background: rgba(236,72,153,0.06); border-top: 1px solid rgba(236,72,153,0.18); }
    .slot-total-label { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: var(--muted); font-size: 0.88rem; }
    .slot-total-amount { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; color: var(--accent); font-size: 1.1rem; }

    .expire-notice { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 11px 14px; margin-bottom: 18px; display: flex; align-items: flex-start; gap: 9px; font-size: 0.82rem; color: var(--muted); line-height: 1.5; }
    .expire-notice .icon { flex-shrink: 0; font-size: 1rem; margin-top: 1px; }

    .form-group { margin-bottom: 14px; }
    .form-group label { display: block; font-size: 0.78rem; font-weight: 700; color: var(--gray-text); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 5px; }
    .form-group input, .form-group select { width: 100%; padding: 10px 13px; border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--text-primary); outline: none; background: rgba(255,255,255,0.04); transition: border 0.15s; }
    .form-group input:focus, .form-group select:focus { border-color: rgba(236,72,153,0.45); box-shadow: 0 0 0 3px rgba(236,72,153,0.12); }
    .form-group input::placeholder { color: #374151; }
    .form-group select option { background: #1a1a1a; }
    .phone-row { display: flex; gap: 8px; align-items: stretch; }
    .phone-prefix { background: #1a1a1a; border: 1px solid var(--dark-border); border-radius: 10px; padding: 10px 12px; color: #9ca3af; font-size: 0.9rem; display: flex; align-items: center; gap: 6px; white-space: nowrap; flex-shrink: 0; }
    .phone-prefix span { font-size: 1.1rem; }
    .modal-hint { font-size: 0.75rem; color: #374151; margin-top: 4px; }
    .modal-actions { display: flex; gap: 10px; margin-top: 20px; }
    .btn-cancel { flex: 1; padding: 11px; border-radius: 10px; background: #1a1a1a; border: 1px solid #2a2a2a; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.88rem; color: #6b7280; cursor: pointer; transition: all 0.15s; }
    .btn-cancel:hover { border-color: var(--red-text); color: var(--red-text); }
    .btn-confirm { flex: 2; padding: 11px; border-radius: 10px; background: linear-gradient(135deg, var(--accent-deep), var(--accent)); border: none; color: var(--bg); font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.88rem; cursor: pointer; transition: all 0.2s; box-shadow: 0 4px 16px rgba(236, 72, 153, 0.3); }
    .btn-confirm:hover { box-shadow: 0 6px 24px rgba(236, 72, 153, 0.45); transform: translateY(-1px); }
    .btn-confirm:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
    #successDoneBtn { background: #52525b; color: #f8fafc; border: 1px solid #3f3f46; box-shadow: none; }
    #successDoneBtn:hover { transform: none; box-shadow: none; }
    .btn-checkout:disabled { opacity: 0.55; cursor: not-allowed; box-shadow: none; }

    .success-modal {
      border-color: rgba(236, 72, 153, 0.3);
      background: linear-gradient(180deg, #08090d, #12131a);
      color: #f8fafc;
    }
    .success-modal h2 { color: #ec4899; margin-top: 0; }
    .success-body-box {
      background: rgba(255,255,255,0.03);
      border: none;
      border-radius: 24px;
      padding: 22px 22px 18px;
      display: grid;
      gap: 16px;
    }
    .success-download-card {
      background: transparent;
      border: none;
      border-radius: 24px;
      padding: 20px;
      display: grid;
      gap: 16px;
      box-shadow: none;
    }
    .success-body-box .success-icon {
      justify-self: center;
      width: auto;
      height: auto;
      padding: 12px;
      border-radius: 999px;
      border: none;
      background: transparent;
    }
    .success-body-box h2 { margin-bottom: 0; }
    .success-body-box .success-subtitle { margin-bottom: 0; }
    .success-body-box .status-row { margin-bottom: 0; }
    .success-body-box .save-copy-checkbox { margin-bottom: 0; }
    .success-body-box .success-pay-section { margin-top: 10px; }
    .success-pay-section { display: none; margin-top: 18px; padding: 18px; border-radius: 20px; background: rgba(255,255,255,0.03); border: none; }
    .success-pay-section .scan-title { font-weight: 700; color: #f8fafc; margin-bottom: 8px; }
    .success-pay-section .scan-note { color: #c4b5fd; font-size: 0.95rem; margin-bottom: 12px; }
    .success-pay-section .scan-card { display: grid; gap: 14px; padding: 16px; border-radius: 18px; background: rgba(255,255,255,0.02); border: none; }
    .success-pay-section .scan-card-title { font-weight: 700; color: #f8fafc; }
    .success-pay-section .scan-card img { width: 100%; max-width: 260px; margin: 0 auto; border-radius: 18px; border: none; }
    .success-pay-section .scan-card p { color: #c4b5fd; font-size: 0.94rem; line-height: 1.6; }
    .success-pay-section .btn-upload-receipt { margin-top: 8px; }
    .next-steps-card { display: none; background: rgba(22, 27, 36, 0.95); border: 1px solid rgba(236,72,153,0.16); border-radius: 18px; padding: 18px; display: grid; gap: 12px; margin-top: 16px; }
    .next-steps-heading { font-size: 0.85rem; font-weight: 800; letter-spacing: 0.18em; color: #f8fafc; text-transform: uppercase; }
    .next-steps-list { list-style: none; display: grid; gap: 10px; padding: 0; margin: 0; }
    .next-steps-list li { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: flex-start; color: #c4b5fd; font-size: 0.94rem; line-height: 1.6; }
    .next-steps-list li strong { color: #f8fafc; font-weight: 700; }
    .btn-messenger { display: inline-flex; align-items: center; justify-content: center; width: 100%; padding: 12px 16px; border-radius: 14px; background: linear-gradient(135deg, #ec4899, #db2777); color: #fff; font-weight: 700; text-decoration: none; transition: transform 0.15s ease, box-shadow 0.15s ease; border: 1px solid rgba(236, 72, 153, 0.35); }
    .btn-messenger:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(236, 72, 153, 0.25); }
    .btn-messenger-icon { display: inline-flex; align-items: center; justify-content: center; color: #fff; }
    .receipt-uploaded-note { color: #34d399; font-weight: 700; margin-top: 10px; text-align: center; }
    .success-modal .success-icon { display: flex; justify-content: center; margin: 0 auto 18px; color: #ec4899; }
    .success-subtitle { color: #c4b5fd; margin-top: 10px; line-height: 1.6; }
    .success-summary-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 22px; }
    .summary-pill { display: flex; flex-direction: column; gap: 6px; padding: 14px 16px; background: rgba(255,255,255,0.04); border: none; border-radius: 16px; }
    .summary-pill span { color: #94a3af; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; }
    .summary-pill strong { font-size: 0.96rem; font-weight: 800; color: #f8fafc; }
    .paid-total-card { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 16px 18px; margin-top: 18px; background: linear-gradient(135deg, rgba(236,72,153,0.16), rgba(236,72,153,0.08)); border: none; border-radius: 18px; }
    .paid-total-card span { color: #fde68a; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; }
    .paid-total-card strong { font-size: 1.3rem; font-weight: 900; color: #fff; }
    .success-bookings-list { margin-top: 18px; display: grid; gap: 12px; }
    .success-booking-item { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: flex-start; padding: 14px 16px; background: rgba(255,255,255,0.04); border: none; border-radius: 16px; }
    .success-booking-item-info { display: grid; gap: 4px; }
    .success-booking-item-title { font-weight: 700; color: #f8fafc; }
    .success-booking-item-meta { color: #94a3af; font-size: 0.92rem; }
    .success-booking-item-right { display: grid; gap: 8px; justify-items: end; align-items: center; }
    .success-booking-item-price { font-weight: 800; color: #ec4899; }
    .booking-ref-card { margin-top: 20px; padding: 18px 20px; background: rgba(255,255,255,0.03); border: none; border-radius: 18px; text-align: center; }
    .booking-ref-label { font-size: 0.75rem; color: #94a3af; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 8px; }
    .booking-ref-code { font-size: 1rem; font-weight: 800; letter-spacing: 0.16em; color: #ec4899; }
    .status-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 18px; }
    .status-note { color: #f9a8d4; font-size: 0.92rem; }
    .success-note { display:none; }
    .success-screenshot-note { display:none; }
    .status-badge { display: inline-flex; align-items: center; justify-content: center; padding: 6px 12px; border-radius: 999px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
    .status-badge.pending { background: rgba(236, 72, 153, 0.12); color: #ec4899; border: 1px solid rgba(236, 72, 153, 0.25); }
    .status-badge.pending-mint { background: rgba(16, 185, 129, 0.12); color: #10b981; border: 1px solid rgba(16, 185, 129, 0.35); box-shadow: 0 0 12px rgba(16, 185, 129, 0.25); }
    @keyframes mintGlow { 0%, 100% { box-shadow: 0 0 12px rgba(16, 185, 129, 0.25); } 50% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.45); } }
    .save-copy-checkbox {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      border: 1px solid rgba(236,72,153,0.24);
      background: rgba(236,72,153,0.06);
      padding: 16px;
      border-radius: 18px;
      margin-top: 18px;
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
    }
    .save-copy-checkbox:hover { border-color: rgba(236,72,153,0.35); background: rgba(236,72,153,0.08); }
    .save-copy-checkbox input {
      margin-top: 4px;
      width: 20px;
      height: 20px;
      accent-color: #ec4899;
      border-radius: 50%;
      flex-shrink: 0;
      border: 1px solid rgba(255,255,255,0.14);
      background: rgba(15,23,42,0.9);
    }
    .save-copy-checkbox input:focus {
      outline: 2px solid rgba(236,72,153,0.25);
      outline-offset: 2px;
    }
    .save-copy-checkbox .checkbox-label { font-weight: 700; color: #f8fafc; }
    .save-copy-checkbox .checkbox-description { color: #c4b5fd; font-size: 0.95rem; line-height: 1.5; margin-top: 4px; }
    .success-pay-section { display: none; margin-top: 18px; padding: 18px; border-radius: 20px; background: rgba(255,255,255,0.03); border: 1px solid rgba(236,72,153,0.12); }
    .scan-title { font-weight: 700; color: #f8fafc; margin-bottom: 10px; display: flex; justify-content: space-between; align-items: center; }
    .scan-title-label { font-weight: 700; color: #f8fafc; font-size: 0.95rem; background: rgba(236, 72, 153, 0.12); border: 1px solid rgba(236, 72, 153, 0.35); padding: 8px 12px; border-radius: 8px; }
    .scan-title-amount { font-weight: 700; color: #ec4899; }
    .scan-note { color: #c4b5fd; margin-bottom: 16px; }
    .scan-card { display: grid; gap: 14px; padding: 16px; border-radius: 18px; background: rgba(255,255,255,0.02); border: 1px solid rgba(236,72,153,0.14); }
    .scan-card-title { font-weight: 700; color: #f8fafc; }
    .scan-card img { width: 100%; max-width: 260px; margin: 0 auto; border-radius: 18px; border: 1px solid rgba(255,255,255,0.08); }
    .scan-card p { color: #c4b5fd; font-size: 0.94rem; line-height: 1.6; }
    .scan-card .btn-upload-receipt {
      width: 100%;
      max-width: 260px;
      margin: 0 auto;
      padding: 12px 0;
      border: none;
      border-radius: 14px;
      background: linear-gradient(135deg, #ec4899, #db2777);
      color: #ffffff;
      font-weight: 700;
      box-shadow: 0 10px 30px rgba(236, 72, 153, 0.18);
      transition: transform 0.15s ease, box-shadow 0.15s ease;
    }
    .scan-card .btn-upload-receipt:hover {
      transform: translateY(-1px);
      box-shadow: 0 12px 36px rgba(236, 72, 153, 0.25);
    }
    .save-copy-checkbox .checkbox-description {
      color: #94a3af;
      font-size: 0.95rem;
      line-height: 1.4;
    }
    .success-pay-section {
      display: none;
      margin-top: 18px;
      padding: 18px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(16, 185, 129, 0.14);
    }
    .success-pay-section .scan-title {
      font-weight: 700;
      color: #d1fae5;
      margin-bottom: 10px;
    }
    .success-pay-section .scan-note {
      color: #a7f3d0;
      font-size: 0.95rem;
      margin-bottom: 14px;
    }
    .success-pay-section .scan-card {
      display: grid;
      gap: 12px;
      padding: 16px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      text-align: center;
    }
    .success-pay-section .scan-card img {
      width: 100%;
      max-width: 260px;
      margin: 0 auto;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.08);
    }
    .success-pay-section .scan-card p {
      color: #c7f9d2;
      font-size: 0.93rem;
      line-height: 1.5;
    }
    .success-pay-section .btn-upload-receipt {
      margin-top: 8px;
      width: 100%;
      max-width: 260px;
      padding: 12px 0;
      border: none;
      border-radius: 14px;
      background: linear-gradient(135deg, #ec4899, #db2777);
      color: #ffffff;
      font-weight: 700;
      box-shadow: 0 10px 30px rgba(236, 72, 153, 0.18);
      transition: transform 0.15s ease, box-shadow 0.15s ease;
    }
    .success-pay-section .btn-upload-receipt:hover {
      transform: translateY(-1px);
      box-shadow: 0 12px 36px rgba(236, 72, 153, 0.25);
    }
    .btn-checkout:disabled:hover { transform: none; }

    .toast { position: fixed; bottom: 80px; right: 24px; background: #1a1a1a; border: 1px solid #2a2a2a; color: white; padding: 13px 20px; border-radius: 12px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 0.88rem; z-index: 9999; transform: translateY(80px); opacity: 0; transition: all 0.3s ease; box-shadow: 0 8px 24px rgba(0,0,0,0.4); max-width: 320px; }
    .toast.show { transform: translateY(0); opacity: 1; }
    .toast.success { border-color: rgba(236,72,153,0.45); background: rgba(20, 8, 21, 0.96); }

    .pending-timer { font-size: 0.95rem; font-weight: 600; color: #ec4899; display: inline-block; margin-left: 8px; background: rgba(236, 72, 153, 0.12); padding: 6px 12px; border-radius: 10px; border: 1px solid rgba(236, 72, 153, 0.4); box-shadow: 0 0 10px rgba(236, 72, 153, 0.15); }

    /* Success Modal */
    .success-content { text-align: center; padding: 20px 0; }
    .success-icon { width: 80px; height: 80px; background: rgba(236,72,153,0.15); border: 2px solid var(--success-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 2.5rem; }
    .success-content h2 { color: var(--accent); margin-bottom: 8px; }
    .success-content p { color: var(--gray-text); margin-bottom: 20px; }
    .booking-ref { background: #1a1a1a; border: 1px solid #2a2a2a; border-radius: 10px; padding: 14px; margin-bottom: 20px; }
    .booking-ref-label { font-size: 0.75rem; color: var(--gray-text); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
    .booking-ref-code { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--accent); letter-spacing: 2px; }

    @media (max-width: 768px) {
      nav { padding: 0 1rem; position: relative; }
      .nav-actions { display: none; }
      .hamburger { display: flex; align-items: center; justify-content: center; }
      .booking-section { grid-template-columns: 1fr; }
      .photo-grid { grid-template-columns: 1fr; grid-template-rows: 220px; }
      .photo-grid .main-photo { grid-row: auto; }
      .photo-mini { display: none; }
      .policies-grid { grid-template-columns: 1fr; gap: 12px; }
      .footer-inner { grid-template-columns: 1fr; }
      .footer-links { align-items: flex-start; }
      .venue-header h1 { font-size: 1.35rem; }
      .calendar-card { position: static; }
      .cart-bar { padding: 12px 16px; }
    }
    @media (max-width: 480px) {
      main { padding: 12px 12px 40px; }
      .venue-header h1 { font-size: 1.15rem; }
      .modal { width: 95%; padding: 18px; }
      .policies-section { padding: 16px; }
    }
