/* ============================================================
   VietTicket Module â€” Scoped CSS (.vt-wrap)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;1,600&display=swap');

.vt-wrap {
  --vt-bg:       #0a0d14;
  --vt-surface:  #111520;
  --vt-surface2: #171c2e;
  --vt-vin:      #e8b94f;
  --vt-sun:      #f4622a;
  --vt-accent:   #5b8df8;
  --vt-text:     #e8eaf2;
  --vt-muted:    #7a8099;
  --vt-border:   rgba(255,255,255,.08);
  --vt-green:    #3ecf74;
  --vt-red:      #e05252;
  --vt-radius:   16px;
  --vt-radius-sm: 10px;

  /* alias Ä‘á»ƒ dÃ¹ng chung vá»›i inline CSS cá»§a module */
  --bg: var(--vt-bg); --surface: var(--vt-surface); --surface2: var(--vt-surface2);
  --vin: var(--vt-vin); --sun: var(--vt-sun); --accent: var(--vt-accent);
  --text: var(--vt-text); --muted: var(--vt-muted); --border: var(--vt-border);
  --green: var(--vt-green); --red: var(--vt-red);
  --radius: var(--vt-radius); --radius-sm: var(--vt-radius-sm);

  background: white;
  color: var(--vt-text);
  font-family: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, sans-serif;
  min-height: 60vh;
  padding-bottom: 60px;
  box-sizing: border-box;
}
.vt-wrap *, .vt-wrap *::before, .vt-wrap *::after { box-sizing: border-box; }
.vt-wrap a { color: inherit; }
.vt-wrap button { font-family: inherit; }
.vt-wrap h1,.vt-wrap h2,.vt-wrap h3,.vt-wrap h4,.vt-wrap h5 { margin: 0; padding: 0; }
.vt-wrap p { margin: 0; }
.vt-wrap ul { margin: 0; padding: 0; list-style: none; }

/* â”€â”€â”€ TOAST â”€â”€â”€ */
.vt-toast-cont { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 8px; }
.vt-toast { background: #1e2435; border: 1px solid rgba(255,255,255,.12); border-radius: 10px;
  padding: 12px 18px; font-size: .85rem; color: #e8eaf2; box-shadow: 0 8px 24px rgba(0,0,0,.5);
  animation: vtToastIn .25s ease; max-width: 320px; }
.vt-toast.success { border-color: rgba(62,207,116,.3); }
.vt-toast.error   { border-color: rgba(224,82,82,.3); }
@keyframes vtToastIn { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:none; } }

/* â”€â”€â”€ HERO (listing) â”€â”€â”€ */
.vt-wrap .hero { position: relative; overflow: hidden;
  padding: clamp(48px,7vw,80px) clamp(16px,4vw,56px) clamp(36px,5vw,60px);
  text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% -10%,rgba(91,141,248,.16) 0%,transparent 70%),
              radial-gradient(ellipse 60% 50% at 20% 100%,rgba(232,185,79,.1) 0%,transparent 60%),
              radial-gradient(ellipse 50% 40% at 80% 80%,rgba(244,98,42,.08) 0%,transparent 60%); }
.vt-wrap .hero-badge { display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.05); border: 1px solid var(--vt-border);
  border-radius: 50px; padding: 6px 16px; font-size: .78rem; font-weight: 600; color: var(--vt-muted);
  margin-bottom: 20px; letter-spacing: .5px; }
.vt-wrap .hero-badge span { width: 6px; height: 6px; background: var(--vt-green); border-radius: 50%; animation: vtPulse 2s infinite; }
@keyframes vtPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }
.vt-wrap .hero h1 {
  font-size: clamp(1.8rem,4.5vw,3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
  color: black;
  }
.vt-wrap .hero h1 em { font-style: italic; font-family: 'Playfair Display',serif; font-weight: 600; }
.vt-wrap .g1 { background: linear-gradient(90deg,var(--vt-vin),#d4a438); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.vt-wrap .g2 { background: linear-gradient(90deg,var(--vt-sun),#e54e1a); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.vt-wrap .hero p { color: var(--vt-muted); font-size: clamp(.88rem,1.4vw,1rem); max-width: 540px; margin: 0 auto 28px; line-height: 1.7; }
.vt-wrap .search-bar {
  display: flex;
  align-items: center;
  max-width: 540px;
  margin: 0 auto;
  background: #e3b44957;
  border: 1px solid rgb(211 211 151);
  border-radius: 50px;
  overflow: hidden;
  }
.vt-wrap .search-bar input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: white;
  font-size: .92rem;
  font-family: inherit;
  padding: 12px 18px;
  }
.vt-wrap .search-bar input::placeholder { color: var(--vt-muted); }
.vt-wrap .search-bar button {
  background: linear-gradient(135deg, #ec0080, #bf3a97);
  border: none;
  cursor: pointer;
  padding: 10px 22px;
  border-radius: 50px;
  color: whte;
  font-weight: 700;
  font-size: .85rem;
  font-family: inherit;
  margin: 4px;
  display: flex;
  align-items: center;
  gap: 7px;
  }

/* â”€â”€â”€ LAYOUT (listing) â”€â”€â”€ */
.vt-wrap .main-wrap { display: flex; gap: 24px; padding: 32px clamp(16px,4vw,48px);
  max-width: 1360px; margin: 0 auto; align-items: flex-start; }
.vt-wrap .sidebar { width: 260px; flex-shrink: 0; position: sticky; top: 80px; }
.vt-wrap .filter-card {
  background: #f7f7f7;
  border: 1px solid var(--vt-border);
  border-radius: var(--vt-radius);
  padding: 20px;
  margin-bottom: 12px;
  }
.vt-wrap .filter-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: black;
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  }
.vt-wrap .filter-title button {
  background: none;
  border: none;
  cursor: pointer;
  color: #ec0180;
  font-size: .72rem;
  font-family: inherit;
  font-weight: 600;
  }
.vt-wrap .provider-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--vt-radius-sm);
  border: 1px solid var(--vt-border);
  cursor: pointer;
  background: transparent;
  color: black;
  font-family: inherit;
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 7px;
  width: 100%;
  text-align: left;
  transition: all .2s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  }
.vt-wrap .provider-btn::before { content:''; position:absolute; inset:0; opacity:0; transition:opacity .2s; }
.vt-wrap .provider-btn.vin::before { background: linear-gradient(135deg,rgba(232,185,79,.12),transparent); }
.vt-wrap .provider-btn.sun::before { background: linear-gradient(135deg,rgba(244,98,42,.12),transparent); }
.vt-wrap .provider-btn.active, .vt-wrap .provider-btn:hover { border-color: rgba(255,255,255,.22); }
.vt-wrap .provider-btn.active::before, .vt-wrap .provider-btn:hover::before { opacity: 1; }
.vt-wrap .provider-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.vt-wrap .dot-vin { background: var(--vt-vin); } .vt-wrap .dot-sun { background: var(--vt-sun); }
.vt-wrap .check-group { display: flex; flex-direction: column; gap: 5px; }
.vt-wrap .check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: .85rem;
  color: black;
  transition: color .2s;
  user-select: none;
  padding: 3px 0;
  }
.vt-wrap .check-item:hover { color: var(--vt-text); }
.vt-wrap .check-item input { display: none; }
.vt-wrap .check-box {
  width: 16px;
  height: 16px;
  border: 1.5px solid black;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .2s;
  }
.vt-wrap .check-item input:checked ~ .check-box { background: var(--vt-accent); border-color: var(--vt-accent); }
.vt-wrap .check-box::after { content:'✓'; font-size:.62rem; color:white; opacity:0; transition:opacity .2s; }
.vt-wrap .check-item input:checked ~ .check-box::after { opacity: 1; }
.vt-wrap .type-chip-group { display: flex; flex-wrap: wrap; gap: 5px; }
.vt-wrap .type-chip {
  padding: 5px 10px;
  border-radius: 50px;
  border: 1px solid var(--vt-border);
  background: transparent;
  color: black;
  font-size: .75rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all .18s;
  }
.vt-wrap .type-chip:hover { border-color: rgba(255,255,255,.22); color: var(--vt-text); }
.vt-wrap .type-chip.active { background: var(--vt-accent); border-color: var(--vt-accent); color: #fff; }
.vt-wrap .price-range { margin-top: 4px; }
.vt-wrap .range-labels { display: flex; justify-content: space-between; font-size: .75rem; color: var(--vt-muted); margin-top: 5px; }
.vt-wrap input[type=range] { width: 100%; accent-color: var(--vt-accent); cursor: pointer; }
.vt-wrap .content { flex: 1; min-width: 0; }
.vt-wrap .content-header { display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; flex-wrap: wrap; gap: 10px; }
.vt-wrap .content-header h2 {font-size: 1.1rem;font-weight: 700;color: black;}
.vt-wrap .content-header h2 span { color: var(--vt-muted); font-weight: 400; font-size: .95rem; }
.vt-wrap .sort-bar { display: flex; align-items: center; gap: 8px; }
.vt-wrap .sort-bar label { font-size: .8rem; color: var(--vt-muted); }
.vt-wrap .sort-select { background: var(--vt-surface); border: 1px solid var(--vt-border);
  color: var(--vt-text); padding: 6px 10px; border-radius: 8px;
  font-family: inherit; font-size: .8rem; cursor: pointer; outline: none; }

/* â”€â”€â”€ TICKET GRID (listing) â”€â”€â”€ */
.vt-wrap .ticket-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(270px,1fr)); gap: 18px; }
.vt-wrap .ticket-card {
  background: white;
  border: 1px solid #d3d3d3;
  border-radius: var(--vt-radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s,box-shadow .25s,border-color .25s;
  text-decoration: none;
  color: inherit;
  display: block;
  }
.vt-wrap .ticket-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.16);
  box-shadow: 0 14px 40px rgba(0,0,0,.5); }
.vt-wrap .card-img { height: 185px; overflow: hidden; position: relative; background: var(--vt-surface2); }
.vt-wrap .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.vt-wrap .ticket-card:hover .card-img img { transform: scale(1.06); }
.vt-wrap .card-provider { position: absolute; top: 10px; left: 10px;
  padding: 3px 9px; border-radius: 50px; font-size: .68rem; font-weight: 700; letter-spacing: .4px; }
.vt-wrap .card-provider.vin { background: rgba(232,185,79,.9); color: #0a0d14; }
.vt-wrap .card-provider.sun { background: rgba(244,98,42,.9); color: white; }
.vt-wrap .card-discount { position: absolute; bottom: 10px; left: 10px;
  background: var(--vt-sun); color: white; font-size: .68rem; font-weight: 800;
  padding: 2px 7px; border-radius: 5px; }
.vt-wrap .card-body { padding: 15px; }
.vt-wrap .card-loc {font-size: .7rem;color: var(--vt-muted);font-weight: 500;/* margin-bottom: 5px; */margin-right: 5px;float: left;/* display: flex; *//* align-items: center; */display: none;/* gap: 4px; */}
.vt-wrap .card-title {
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 9px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: black;
  }
.vt-wrap .card-meta {display: flex;align-items: center;gap: 8px;margin-bottom: 10px;flex-wrap: wrap;display: none;}
.vt-wrap .rating { display: flex; align-items: center; gap: 4px; font-size: .75rem; color: var(--vt-muted); }
.vt-wrap .stars { color: #f7c948; letter-spacing: -1px; }
.vt-wrap .card-tags {display: flex;gap: 4px;flex-wrap: wrap;display: none;}
.vt-wrap .card-tag { padding: 2px 7px; border-radius: 4px;
  background: rgba(91,141,248,.1); border: 1px solid rgba(91,141,248,.2);
  font-size: .65rem; font-weight: 600; color: var(--vt-accent); }
.vt-wrap .card-footer { display: flex; align-items: flex-end; justify-content: space-between; }
.vt-wrap .price-new { font-size: 1.12rem; font-weight: 800; color: var(--vt-text); }
.vt-wrap .price-unit { font-size: .67rem; color: var(--vt-muted); font-weight: 400; }
.vt-wrap .price-loading { font-size: .8rem; color: var(--vt-muted); font-style: italic; }
.vt-wrap .btn-book {
  background: linear-gradient(135deg, #eb0180, #c03997);
  border: none;
  color: white;
  font-weight: 700;
  font-size: .75rem;
  font-family: inherit;
  cursor: pointer;
  padding: 7px 14px;
  border-radius: 7px;
  transition: opacity .2s;
  white-space: nowrap;
  }
.vt-wrap .btn-book:hover { opacity: .85; }
.vt-wrap .empty { text-align: center; padding: 50px 20px; color: var(--vt-muted); grid-column: 1/-1; }
.vt-wrap .empty-icon { font-size: 2.5rem; margin-bottom: 12px; opacity: .4; }

/* â”€â”€â”€ DETAIL PAGE â”€â”€â”€ */
.vt-wrap .page-outer {max-width: 1200px;margin: 0 auto;padding: 0;}
.vt-wrap .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  color: var(--vt-muted);
  padding: 6px 10px 6px;
  flex-wrap: wrap;
  }
.vt-wrap .breadcrumb a { color: var(--vt-muted); text-decoration: none; transition: color .2s; }
.vt-wrap .breadcrumb a:hover { color: var(--vt-text); }
.vt-wrap .title-section h1 {
  font-size: clamp(1.3rem,2.8vw,1.9rem);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -.5px;
  margin-bottom: 10px;
  color: black;
  }
.vt-wrap .title-meta-bar { display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px; padding-bottom: 14px; border-bottom: 1px solid var(--vt-border); }
.vt-wrap .title-meta-left { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.vt-wrap .rating-pill { display: inline-flex; align-items: center; gap: 5px; font-size: .87rem; }
.vt-wrap .rating-pill .stars { color: #f7c948; letter-spacing: -1px; }
.vt-wrap .rating-pill strong { font-weight: 800; }
.vt-wrap .rating-pill span { color: var(--vt-muted); font-size: .8rem; }
.vt-wrap .meta-sep { color: var(--vt-border); font-size: 1.2rem; }
.vt-wrap .meta-chip { display: inline-flex; align-items: center; gap: 5px; font-size: .82rem; color: var(--vt-muted); }
.vt-wrap .gallery-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 230px 230px;
  gap: 5px; height: 465px; border-radius: var(--vt-radius); overflow: hidden; margin-bottom: 30px; }
.vt-wrap .gallery-main { grid-row: 1/3; position: relative; overflow: hidden; cursor: pointer; background: var(--vt-surface2); }
.vt-wrap .gallery-thumb { position: relative; overflow: hidden; cursor: pointer; background: var(--vt-surface2); }
.vt-wrap .gallery-main img,.vt-wrap .gallery-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .42s ease; display: block; }
.vt-wrap .gallery-main:hover img,.vt-wrap .gallery-thumb:hover img { transform: scale(1.06); }
.vt-wrap .gallery-badges { position: absolute; top: 12px; left: 12px; z-index: 2; display: flex; gap: 7px; }
.vt-wrap .g-badge-prov { padding: 4px 11px; border-radius: 50px; font-size: .7rem; font-weight: 700; }
.vt-wrap .g-badge-prov.vin { background: rgba(232,185,79,.92); color: #0a0d14; }
.vt-wrap .g-badge-prov.sun { background: rgba(244,98,42,.92); color: #fff; }
.vt-wrap .gallery-album-btn { position: absolute; bottom: 10px; right: 10px; z-index: 3;
  background: rgba(255,255,255,.93); color: #0a0d14; font-family: inherit; font-size: .75rem;
  font-weight: 700; border: none; border-radius: 7px; padding: 6px 12px; cursor: pointer;
  display: flex; align-items: center; gap: 5px; }
.vt-wrap .detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 28px; align-items: flex-start; }
.vt-wrap .section-block { margin-bottom: 28px; }
.vt-wrap .section-heading {
  font-size: .95rem;
  font-weight: 800;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--vt-border);
  display: flex;
  align-items: center;
  gap: 8px;
  color: black;
  }
.vt-wrap .benefits-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.vt-wrap .benefits-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem;
  color: var(--vt-muted); line-height: 1.6; }
.vt-wrap .benefits-list li::before { content:'✓'; color: var(--vt-green); font-weight: 800;
  font-size: .83rem; margin-top: 2px; flex-shrink: 0; }
.vt-wrap .info-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.vt-wrap .info-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: var(--vt-radius-sm);
  background: #f7f7f7;
  border: 1px solid var(--vt-border);
  flex: 1;
  min-width: 120px;
  color: #333;
  }
.vt-wrap .ic-icon { font-size: 1.2rem; flex-shrink: 0; }
.vt-wrap .ic-label {font-size: .68rem;color: #333;font-weight: 500;text-transform: uppercase;letter-spacing: .5px;}
.vt-wrap .ic-val {font-size: .82rem;font-weight: 700;margin-top: 1px;color: #333;}
.vt-wrap .highlights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.vt-wrap .hl-item { padding: 12px 14px; border-radius: var(--vt-radius-sm); background: var(--vt-surface2);
  border: 1px solid var(--vt-border); display: flex; align-items: flex-start; gap: 9px; }
.vt-wrap .hl-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.vt-wrap .hl-text { font-size: .85rem; color: var(--vt-muted); line-height: 1.55; }
.vt-wrap .date-pill-bar { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; margin-bottom: 16px; position: relative; }
.vt-wrap .date-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 50px;
  border: 1px solid var(--vt-border);
  background: #ed0080;
  font-family: inherit;
  font-size: .8rem;
  font-weight: 600;
  color: wheat;
  cursor: pointer;
  transition: all .18s;
  white-space: nowrap;
  }
.vt-wrap .date-pill:hover { border-color: rgba(255,255,255,.2); color: var(--vt-text); }
.vt-wrap .date-pill.active {background: #8a8186;border-color: #8a8186;color: var(--vt-text);}
.vt-wrap .cal-wrap { position: absolute; top: calc(100% + 8px); left: 0; z-index: 9999;
  opacity: 0; pointer-events: none; transform: translateY(6px); transition: opacity .18s,transform .18s; }
.vt-wrap .cal-wrap.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.vt-wrap .cal-box { background: var(--vt-surface2); border: 1px solid rgba(255,255,255,.13);
  border-radius: 14px; box-shadow: 0 20px 60px rgba(0,0,0,.6); padding: 14px; width: 270px; }
.vt-wrap .cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.vt-wrap .cal-nav { width: 28px; height: 28px; border-radius: 7px; border: 1px solid var(--vt-border);
  background: none; color: var(--vt-muted); cursor: pointer; font-size: .9rem;
  display: flex; align-items: center; justify-content: center; }
.vt-wrap .cal-nav:hover { background: rgba(255,255,255,.08); color: var(--vt-text); }
.vt-wrap .cal-month-label { font-size: .85rem; font-weight: 800; color: var(--vt-text); }
.vt-wrap .cal-dow-row { display: grid; grid-template-columns: repeat(7,1fr); margin-bottom: 4px; }
.vt-wrap .cal-dow { text-align: center; font-size: .62rem; font-weight: 700; color: var(--vt-muted); text-transform: uppercase; letter-spacing: .3px; padding: 3px 0; }
.vt-wrap .cal-days-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; }
.vt-wrap .cal-day { aspect-ratio:1; border-radius: 7px; display: flex; align-items: center;
  justify-content: center; font-size: .78rem; font-weight: 600; color: var(--vt-muted);
  cursor: pointer; border: none; background: none; font-family: inherit; transition: background .12s,color .12s; }
.vt-wrap .cal-day:hover:not(.cal-day--empty):not(.cal-day--past) { background: rgba(255,255,255,.07); color: var(--vt-text); }
.vt-wrap .cal-day--empty { cursor: default; }
.vt-wrap .cal-day--past { color: rgba(122,128,153,.3); cursor: default; pointer-events: none; }
.vt-wrap .cal-day--today { color: var(--vt-accent); font-weight: 800; }
.vt-wrap .cal-day--selected { background: linear-gradient(135deg,var(--vt-vin),var(--vt-sun)) !important; color: #0a0d14 !important; font-weight: 800 !important; }
.vt-wrap .price-loading-overlay { padding: 28px; text-align: center; color: var(--vt-muted); }
.vt-wrap .spinner { display: inline-block; width: 26px; height: 26px; border: 3px solid rgba(255,255,255,.1);
  border-top-color: var(--vt-vin); border-radius: 50%; animation: vtSpin .8s linear infinite; margin-bottom: 10px; }
@keyframes vtSpin { to { transform: rotate(360deg); } }
.vt-wrap .svc-list { display: flex; flex-direction: column; gap: 10px; }
.vt-wrap .svc-row {
  border: 1px solid rgb(210 35 142);
  border-radius: var(--vt-radius);
  background: white;
  overflow: hidden;
  transition: border-color .2s;
  }
.vt-wrap .svc-row:hover {border-color: rgb(191 58 152);}
.vt-wrap .svc-row.expanded {/* border-color: rgba(232,185,79,.3); */}
.vt-wrap .svc-row.unavailable { opacity: .55; }
.vt-wrap .svc-row-top { display: flex; align-items: flex-start; justify-content: space-between;
  gap: 14px; padding: 16px 18px 12px; }
.vt-wrap .svc-row-left { flex: 1; min-width: 0; }
.vt-wrap .svc-row-name {font-size: .94rem;font-weight: 800;margin-bottom: 4px;color: black;}
.vt-wrap .svc-row-desc {font-size: .8rem;color: black;line-height: 1.55;margin-bottom: 8px;}
.vt-wrap .svc-row-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 8px; }
.vt-wrap .svc-row-tag { font-size: .7rem; color: var(--vt-muted); display: inline-flex; align-items: center; gap: 4px; }
.vt-wrap .svc-disc-badge { display: inline-flex; align-items: center; gap: 4px;
  background: rgba(244,98,42,.12); color: var(--vt-sun); border: 1px solid rgba(244,98,42,.25);
  font-size: .68rem; font-weight: 800; padding: 3px 7px; border-radius: 5px; margin-bottom: 8px; }
.vt-wrap .unavailable-badge { display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.04); border: 1px solid var(--vt-border);
  color: var(--vt-muted); font-size: .73rem; padding: 3px 9px; border-radius: 5px; margin-bottom: 7px; }
.vt-wrap .svc-info-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .78rem;
  font-weight: 600;
  color: black;
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
  text-underline-offset: 2px;
  border-radius: 25px;
  border: 1px solid #000000;
  padding: 3px 12px;
  }
.vt-wrap .svc-row-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; flex-shrink: 0; }
.vt-wrap .svc-price-block { text-align: right; }
.vt-wrap .svc-price-val {font-size: 1.18rem;font-weight: 900;color: #d2238e;}
.vt-wrap .svc-price-old { font-size: .72rem; color: var(--vt-muted); text-decoration: line-through; margin-top: 1px; }
.vt-wrap .svc-price-loading { font-size: .8rem; color: var(--vt-muted); font-style: italic; }
.vt-wrap .svc-choose-btn {
  background: #eb0281;
  color: #fff;
  border: none;
  font-family: inherit;
  font-size: .85rem;
  font-weight: 800;
  padding: 9px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s,transform .12s;
  white-space: nowrap;
  }
.vt-wrap .svc-choose-btn:hover { background: #e5541d; transform: scale(1.02); }
.vt-wrap .svc-choose-btn.selected { background: var(--vt-green); }
.vt-wrap .svc-choose-btn:disabled { background: rgba(255,255,255,.1); cursor: not-allowed; transform: none; }
.vt-wrap .ticket-picker { display: none; border-top: 1px solid var(--vt-border); background: rgba(255,255,255,.012); }
.vt-wrap .ticket-picker.open { display: block; }
.vt-wrap .tp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px 8px;
  font-size: .78rem;
  font-weight: 700;
  color: black;
  letter-spacing: .4px;
  }
.vt-wrap .tp-close { background: none; border: none; cursor: pointer; color: var(--vt-muted); font-size: .92rem; padding: 3px 5px; border-radius: 5px; }
.vt-wrap .tp-close:hover { color: var(--vt-text); }
.vt-wrap .tp-rows { padding: 0 18px 4px; display: flex; flex-direction: column; gap: 7px; }
.vt-wrap .tp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: var(--vt-radius-sm);
  background: #f8f8f8b3;
  border: 1px solid rgb(233 233 233);
  gap: 10px;
  color: black;
  }
.vt-wrap .tp-info { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
.vt-wrap .tp-type-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #f0f0f0;
  border: 1px solid rgba(91,141,248,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #878787;
  flex-shrink: 0;
  display: none;
  }
.vt-wrap .tp-name {font-size: .85rem;font-weight: 700;color: black;}
.vt-wrap .tp-age {font-size: .7rem;color: gray;margin-top: 2px;}
.vt-wrap .tp-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.vt-wrap .tp-price-val {font-size: .94rem;font-weight: 800;color: black;}
.vt-wrap .tp-price-old {font-size: .68rem;color: #4b4b4b;text-decoration: line-through;}
.vt-wrap .qty-ctrl { display: flex; align-items: center; gap: 7px; }
.vt-wrap .qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgb(233 233 233);
  background: #fafafa;
  color: #ea0381;
  cursor: pointer;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  }
.vt-wrap .qty-btn:hover { background: rgba(255,255,255,.1); }
.vt-wrap .qty-num {font-size: .9rem;font-weight: 700;min-width: 20px;text-align: center;color: black;}
.vt-wrap .tp-footer { display: flex; align-items: center; justify-content: space-between;
  padding: 12px 18px 16px; border-top: 1px solid var(--vt-border); margin-top: 8px; gap: 10px; }
.vt-wrap .tp-total-lbl {font-size: .73rem;color: black;}
.vt-wrap .tp-total-val {font-size: 1.05rem;font-weight: 900;color: #d2238e;}
.vt-wrap .tp-confirm-btn {
  background: #eb0281;
  color: #fff;
  border: none;
  font-family: inherit;
  font-size: .85rem;
  font-weight: 800;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  }
.vt-wrap .tp-confirm-btn:hover { background: #e5541d; }
.vt-wrap .svc-detail-panel { display: none; border-top: 1px solid var(--vt-border); }
.vt-wrap .svc-row.expanded .svc-detail-panel { display: block; }
.vt-wrap .sdp-tabs { display: flex; gap: 0; border-bottom: 1px solid var(--vt-border);
  padding: 0 18px; overflow-x: auto; scrollbar-width: none; }
.vt-wrap .sdp-tabs::-webkit-scrollbar { display: none; }
.vt-wrap .sdp-tab { flex-shrink: 0; padding: 10px 14px; font-family: inherit; font-size: .8rem;
  font-weight: 700; background: none; border: none; color: var(--vt-muted); cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -1px; white-space: nowrap; }
.vt-wrap .sdp-tab:hover {color: #ec0180;}
.vt-wrap .sdp-tab.active {color: #ec0281;border-bottom-color: #ec0181;}
.vt-wrap .sdp-pane { display: none; padding: 18px; }
.vt-wrap .sdp-pane.active { display: block; }
.vt-wrap .included-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.vt-wrap .included-list li { display: flex; align-items: flex-start; gap: 8px; font-size: .84rem; color: var(--vt-muted); line-height: 1.6; }
.vt-wrap .included-list li .il-check { font-size: .72rem; margin-top: 3px; flex-shrink: 0; }
.vt-wrap .included-list li.included .il-check { color: var(--vt-green); }
.vt-wrap .included-list li.excluded .il-check { color: var(--vt-red); }
.vt-wrap .svc-notice-list { display: flex; flex-direction: column; gap: 9px; }
.vt-wrap .svc-notice-item { display: flex; align-items: flex-start; gap: 9px; padding: 10px 12px;
  border-radius: var(--vt-radius-sm); background: rgba(255,200,80,.04);
  border: 1px solid rgba(255,200,80,.1); font-size: .82rem; line-height: 1.65; color: var(--vt-muted); }
.vt-wrap .svc-notice-item .ni-icon { font-size: .9rem; flex-shrink: 0; margin-top: 1px; }
.vt-wrap .howto-steps { display: flex; flex-direction: column; }
.vt-wrap .howto-step { display: flex; gap: 12px; position: relative; padding-bottom: 18px; }
.vt-wrap .howto-step:last-child { padding-bottom: 0; }
.vt-wrap .howto-step-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.vt-wrap .howto-num { width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg,var(--vt-vin),var(--vt-sun)); color: #0a0d14;
  font-size: .75rem; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.vt-wrap .howto-line { flex: 1; width: 2px; background: var(--vt-border); margin: 5px 0 0; }
.vt-wrap .howto-step:last-child .howto-line { display: none; }
.vt-wrap .howto-content { padding-top: 3px; }
.vt-wrap .howto-content p { font-size: .8rem; color: var(--vt-muted); line-height: 1.65; margin: 0; }
.vt-wrap .booking-panel {
  background: white;
  border: 1px solid rgb(142 142 142 / 73%);
  border-radius: var(--vt-radius);
  overflow: hidden;
  position: sticky;
  top: 80px;
  }
.vt-wrap .bp-header {
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--vt-border);
  background: #ec0281;
  }
.vt-wrap .bp-from {font-size: .68rem;color: white;margin-bottom: 2px;}
.vt-wrap .bp-price { font-size: 1.9rem; font-weight: 900; line-height: 1; color: var(--vt-text); }
.vt-wrap .bp-unit {font-size: .75rem;color: white;}
.vt-wrap .bp-body { padding: 16px 20px 20px; }
.vt-wrap .bp-assurance { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.vt-wrap .bp-assur-item {display: flex;align-items: center;gap: 8px;font-size: .78rem;color: black;}
.vt-wrap .bp-section-label { font-size: .65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--vt-muted); margin-bottom: 9px; }
.vt-wrap .bp-service-summary { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.vt-wrap .bp-svc-item {
  padding: 10px 12px;
  border-radius: var(--vt-radius-sm);
  border: 1px solid var(--vt-border);
  background: #e1e1e1;
  }
.vt-wrap .bp-svc-item-name {font-size: .8rem;font-weight: 700;margin-bottom: 2px;color: black;}
.vt-wrap .bp-svc-item-sub {font-size: .7rem;color: black;}
.vt-wrap .bp-svc-qty-row { display: flex; align-items: center; justify-content: space-between; margin-top: 7px; }
.vt-wrap .bp-svc-price {font-size: .85rem;font-weight: 800;color: black;}
.vt-wrap .bp-empty-state { text-align: center; padding: 16px 0; }
.vt-wrap .bp-empty-icon { font-size: 1.8rem; opacity: .3; margin-bottom: 5px; }
.vt-wrap .bp-empty-text { font-size: .78rem; color: var(--vt-muted); }
.vt-wrap .bp-total { padding: 10px 0; border-top: 1px solid var(--vt-border); margin-bottom: 12px;
  display: flex; align-items: center; justify-content: space-between; }
.vt-wrap .bp-total-label {font-size: .75rem;color: black;}
.vt-wrap .bp-total-amount {font-size: 1.35rem;font-weight: 900;color: #ec0180;}
.vt-wrap .bp-total-count { font-size: .72rem; color: var(--vt-muted); }
.vt-wrap .btn-checkout {
  width: 100%;
  background: #eb0281;
  border: none;
  color: white;
  font-weight: 800;
  font-size: .92rem;
  font-family: inherit;
  cursor: pointer;
  padding: 14px;
  border-radius: var(--vt-radius-sm);
  transition: opacity .2s;
  }
.vt-wrap .btn-checkout:hover { opacity: .87; }
.vt-wrap .btn-checkout:disabled { opacity: .5; cursor: not-allowed; }
.vt-wrap .related-section { margin-top: 44px; }
.vt-wrap .related-heading {font-size: .95rem;font-weight: 800;margin-bottom: 16px;color: black;}
.vt-wrap .related-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(210px,1fr)); gap: 12px; }
.vt-wrap .rel-card {
  background: white;
  border: 1px solid rgb(169 169 169);
  border-radius: var(--vt-radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform .22s,box-shadow .22s,border-color .22s;
  text-decoration: none;
  color: inherit;
  display: block;
  }
.vt-wrap .rel-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.16); box-shadow: 0 10px 30px rgba(0,0,0,.5); }
.vt-wrap .rel-img { height: 140px; overflow: hidden; position: relative; background: var(--vt-surface2); }
.vt-wrap .rel-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.vt-wrap .rel-card:hover .rel-img img { transform: scale(1.06); }
.vt-wrap .rel-prov { position: absolute; top: 8px; left: 8px; padding: 3px 8px; border-radius: 50px; font-size: .62rem; font-weight: 700; }
.vt-wrap .rel-prov.vin { background: rgba(232,185,79,.9); color: #0a0d14; }
.vt-wrap .rel-prov.sun { background: rgba(244,98,42,.9); color: #fff; }
.vt-wrap .rel-body {padding: 11px;color: black;}
.vt-wrap .rel-loc {font-size: .68rem;color: black;margin-bottom: 3px;display: none;}
.vt-wrap .rel-name {
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: black;
  }
.vt-wrap .lightbox { position: fixed; inset: 0; z-index: 9998; background: rgba(0,0,0,.92);
  backdrop-filter: blur(12px); display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s; }
.vt-wrap .lightbox.open { opacity: 1; pointer-events: all; }
.vt-wrap .lightbox-inner { display: flex; align-items: center; gap: 14px; max-width: 90vw; }
.vt-wrap .lightbox-img-wrap { border-radius: 12px; overflow: hidden; }
.vt-wrap .lightbox-img-wrap img { max-width: 80vw; max-height: 80vh; object-fit: contain; display: block; }
.vt-wrap .lightbox-close { position: fixed; top: 16px; right: 16px; width: 36px; height: 36px;
  border-radius: 50%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: #fff; cursor: pointer; font-size: .95rem; display: flex; align-items: center; justify-content: center; }
.vt-wrap .lightbox-nav { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2); color: #fff; cursor: pointer;
  font-size: 1.1rem; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.vt-wrap .lightbox-dots { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; }
.vt-wrap .lb-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.3); cursor: pointer; }
.vt-wrap .lb-dot.active { background: #fff; }

/* â”€â”€â”€ CHECKOUT â”€â”€â”€ */
.vt-wrap .checkout-wrap { max-width: 1080px; margin: 0 auto; padding: 28px clamp(16px,4vw,48px) 80px; }
.vt-wrap .checkout-title { font-size: clamp(1.3rem,2.5vw,1.7rem); font-weight: 900; margin-bottom: 24px; color: var(--vt-text); }
.vt-wrap .steps-bar { display: flex; align-items: center; gap: 0; margin-bottom: 36px; }
.vt-wrap .step { display: flex; align-items: center; gap: 9px; flex: 1; }
.vt-wrap .step-num { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 800; flex-shrink: 0; }
.vt-wrap .step.done .step-num  { background: var(--vt-green); color: #fff; }
.vt-wrap .step.active .step-num{ background: linear-gradient(135deg,var(--vt-vin),var(--vt-sun)); color: #0a0d14; }
.vt-wrap .step.todo .step-num  { background: var(--vt-surface2); border: 1px solid var(--vt-border); color: var(--vt-muted); }
.vt-wrap .step-label { font-size: .8rem; font-weight: 600; color: var(--vt-muted); }
.vt-wrap .step.active .step-label { color: var(--vt-text); }
.vt-wrap .step-line { flex: 1; height: 2px; background: var(--vt-border); margin: 0 7px; }
.vt-wrap .checkout-layout { display: grid; grid-template-columns: 1fr 360px; gap: 24px; align-items: flex-start; }
.vt-wrap .form-card { background: var(--vt-surface); border: 1px solid var(--vt-border); border-radius: var(--vt-radius); overflow: hidden; margin-bottom: 18px; }
.vt-wrap .form-card-header { padding: 16px 22px 12px; border-bottom: 1px solid var(--vt-border);
  font-size: .92rem; font-weight: 800; display: flex; align-items: center; gap: 8px; color: var(--vt-text); }
.vt-wrap .form-card-body { padding: 22px; }
.vt-wrap .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.vt-wrap .form-group { margin-bottom: 16px; }
.vt-wrap .form-group label { display: block; font-size: .75rem; font-weight: 700; color: var(--vt-muted);
  text-transform: uppercase; letter-spacing: .5px; margin-bottom: 6px; }
.vt-wrap .form-group label .req { color: var(--vt-sun); }
.vt-wrap .form-input { width: 100%; background: var(--vt-surface2); border: 1px solid var(--vt-border);
  color: var(--vt-text); padding: 10px 13px; border-radius: var(--vt-radius-sm);
  font-family: inherit; font-size: .88rem; outline: none; transition: border-color .2s; }
.vt-wrap .form-input:focus { border-color: rgba(91,141,248,.5); }
.vt-wrap .form-input::placeholder { color: var(--vt-muted); }
.vt-wrap .pay-methods { display: flex; flex-direction: column; gap: 9px; }
.vt-wrap .pay-method { display: flex; align-items: center; gap: 12px; padding: 14px 16px;
  border: 2px solid var(--vt-border); border-radius: var(--vt-radius-sm); cursor: pointer;
  background: var(--vt-surface2); transition: all .2s; user-select: none; }
.vt-wrap .pay-method:hover { border-color: rgba(255,255,255,.18); }
.vt-wrap .pay-method input[type=radio] { display: none; }
.vt-wrap .pay-method.selected { border-color: var(--vt-vin); background: rgba(232,185,79,.06); }
.vt-wrap .pm-icon { width: 42px; height: 42px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; }
.vt-wrap .pm-qr    { background: rgba(62,207,116,.12); color: var(--vt-green); }
.vt-wrap .pm-atm   { background: rgba(91,141,248,.12);  color: var(--vt-accent); }
.vt-wrap .pm-int   { background: rgba(232,185,79,.12);  color: var(--vt-vin); }
.vt-wrap .pm-payoo { background: rgba(244,98,42,.12);   color: var(--vt-sun); }
.vt-wrap .pm-info { flex: 1; }
.vt-wrap .pm-name { font-size: .88rem; font-weight: 700; margin-bottom: 2px; color: var(--vt-text); }
.vt-wrap .pm-desc { font-size: .72rem; color: var(--vt-muted); }
.vt-wrap .pm-radio { width: 17px; height: 17px; border-radius: 50%; border: 2px solid var(--vt-border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.vt-wrap .pay-method.selected .pm-radio { border-color: var(--vt-vin); }
.vt-wrap .pm-radio::after { content:''; width: 7px; height: 7px; border-radius: 50%; background: var(--vt-vin); display: none; }
.vt-wrap .pay-method.selected .pm-radio::after { display: block; }
.vt-wrap .pm-badge { font-size: .65rem; font-weight: 700; padding: 2px 6px; border-radius: 50px; background: rgba(62,207,116,.15); color: var(--vt-green); }
.vt-wrap .order-summary { background: var(--vt-surface); border: 1px solid var(--vt-border); border-radius: var(--vt-radius); overflow: hidden; position: sticky; top: 80px; }
.vt-wrap .os-header { padding: 16px 18px 13px; border-bottom: 1px solid var(--vt-border); background: linear-gradient(135deg,rgba(232,185,79,.06),rgba(244,98,42,.06)); }
.vt-wrap .os-loc-img { width: 56px; height: 56px; border-radius: 9px; object-fit: cover; flex-shrink: 0; }
.vt-wrap .os-loc-name { font-size: .88rem; font-weight: 800; margin-bottom: 3px; line-height: 1.3; color: var(--vt-text); }
.vt-wrap .os-loc-city { font-size: .72rem; color: var(--vt-muted); }
.vt-wrap .os-date { display: flex; align-items: center; gap: 7px; font-size: .8rem; color: var(--vt-muted); background: var(--vt-surface2); padding: 7px 11px; border-radius: 7px; margin-top: 10px; }
.vt-wrap .os-date strong { color: var(--vt-text); }
.vt-wrap .os-body { padding: 14px 18px; }
.vt-wrap .os-item { padding: 9px 11px; background: var(--vt-surface2); border: 1px solid var(--vt-border); border-radius: var(--vt-radius-sm); margin-bottom: 7px; }
.vt-wrap .os-item-name { font-size: .8rem; font-weight: 700; margin-bottom: 2px; color: var(--vt-text); }
.vt-wrap .os-item-detail { display: flex; justify-content: space-between; align-items: center; font-size: .72rem; color: var(--vt-muted); margin-top: 4px; }
.vt-wrap .os-item-price { font-size: .87rem; font-weight: 800; color: var(--vt-text); }
.vt-wrap .os-divider { height: 1px; background: var(--vt-border); margin: 12px 0; }
.vt-wrap .os-total-row { display: flex; align-items: center; justify-content: space-between; }
.vt-wrap .os-total-label { font-size: .8rem; color: var(--vt-muted); }
.vt-wrap .os-total-amount { font-size: 1.4rem; font-weight: 900; color: var(--vt-text); }
.vt-wrap .btn-pay { width: 100%; margin-top: 14px; background: linear-gradient(135deg,var(--vt-vin),var(--vt-sun));
  border: none; color: #0a0d14; font-weight: 800; font-size: .95rem; font-family: inherit;
  padding: 14px; border-radius: var(--vt-radius-sm); cursor: pointer; transition: opacity .2s;
  display: flex; align-items: center; justify-content: center; gap: 9px; }
.vt-wrap .btn-pay:hover { opacity: .88; }
.vt-wrap .btn-pay:disabled { opacity: .5; cursor: not-allowed; }
.vt-wrap .terms-note { font-size: .7rem; color: var(--vt-muted); text-align: center; margin-top: 10px; line-height: 1.6; }
.vt-wrap .terms-note a { color: var(--vt-accent); }
.vt-wrap .error-box { background: rgba(224,82,82,.1); border: 1px solid rgba(224,82,82,.3);
  border-radius: var(--vt-radius-sm); padding: 12px 15px; color: var(--vt-red);
  font-size: .85rem; margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.vt-wrap .trust-badges { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.vt-wrap .trust-badge { display: flex; align-items: center; gap: 5px; background: var(--vt-surface2);
  border: 1px solid var(--vt-border); padding: 4px 9px; border-radius: 50px; font-size: .7rem; color: var(--vt-muted); }
.vt-wrap .trust-badge i { color: var(--vt-green); }

/* â”€â”€â”€ RESULT PAGE â”€â”€â”€ */
.vt-wrap .result-wrap { max-width: 740px; margin: 0 auto; padding: 40px clamp(16px,4vw,48px) 80px; }
.vt-wrap .status-banner { text-align: center; padding: 36px 22px; margin-bottom: 28px; border-radius: var(--vt-radius); border: 1px solid var(--vt-border); }
.vt-wrap .status-banner.success { background: radial-gradient(ellipse 80% 60% at 50% 0%,rgba(62,207,116,.1),transparent); border-color: rgba(62,207,116,.2); }
.vt-wrap .status-banner.failed  { background: radial-gradient(ellipse 80% 60% at 50% 0%,rgba(224,82,82,.1),transparent); border-color: rgba(224,82,82,.2); }
.vt-wrap .status-icon { font-size: 3rem; margin-bottom: 14px; }
.vt-wrap .status-title { font-size: 1.5rem; font-weight: 900; margin-bottom: 8px; color: var(--vt-text); }
.vt-wrap .status-banner.success .status-title { color: var(--vt-green); }
.vt-wrap .status-banner.failed  .status-title { color: var(--vt-red); }
.vt-wrap .status-subtitle { color: var(--vt-muted); font-size: .87rem; line-height: 1.7; }
.vt-wrap .order-code-chip { display: inline-flex; align-items: center; gap: 8px; background: var(--vt-surface2);
  border: 1px solid var(--vt-border); padding: 6px 14px; border-radius: 50px; font-size: .8rem; font-weight: 700; margin-top: 14px; }
.vt-wrap .order-code-chip .code { color: var(--vt-vin); font-family: monospace; letter-spacing: .5px; }
.vt-wrap .ticket-card-wrap { background: var(--vt-surface); border: 1px solid rgba(62,207,116,.25); border-radius: var(--vt-radius); overflow: hidden; margin-bottom: 18px; }
.vt-wrap .ticket-card-header { background: linear-gradient(135deg,rgba(232,185,79,.07),rgba(244,98,42,.07));
  padding: 14px 18px; border-bottom: 1px solid var(--vt-border);
  display: flex; align-items: center; justify-content: space-between; }
.vt-wrap .ticket-card-title { font-size: .85rem; font-weight: 800; color: var(--vt-text); }
.vt-wrap .ticket-status-pill { padding: 3px 11px; border-radius: 50px; font-size: .7rem; font-weight: 700; }
.vt-wrap .pill-issued { background: rgba(62,207,116,.15); color: var(--vt-green); border: 1px solid rgba(62,207,116,.3); }
.vt-wrap .pill-processing { background: rgba(232,185,79,.15); color: var(--vt-vin); border: 1px solid rgba(232,185,79,.3); }
.vt-wrap .ticket-body { padding: 18px; }
.vt-wrap .ticket-qr-row { display: flex; align-items: center; gap: 22px; margin-bottom: 18px; flex-wrap: wrap; }
.vt-wrap .ticket-qr { background: #fff; padding: 12px; border-radius: 11px; text-align: center; min-width: 130px; }
.vt-wrap .ticket-qr-placeholder { width: 100px; height: 100px; background: #f5f5f5; border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.vt-wrap .ticket-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; flex: 1; }
.vt-wrap .ticket-info-item { background: var(--vt-surface2); border: 1px solid var(--vt-border); border-radius: var(--vt-radius-sm); padding: 9px 12px; }
.vt-wrap .ticket-info-label { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--vt-muted); margin-bottom: 3px; }
.vt-wrap .ticket-info-val { font-size: .85rem; font-weight: 700; color: var(--vt-text); }
.vt-wrap .order-details { background: var(--vt-surface); border: 1px solid var(--vt-border); border-radius: var(--vt-radius); margin-bottom: 18px; }
.vt-wrap .od-header { padding: 14px 18px; border-bottom: 1px solid var(--vt-border); font-size: .85rem; font-weight: 800; display: flex; align-items: center; gap: 8px; color: var(--vt-text); }
.vt-wrap .od-body { padding: 18px; }
.vt-wrap .od-loc-img { width: 64px; height: 64px; border-radius: 9px; object-fit: cover; flex-shrink: 0; }
.vt-wrap .od-loc-name { font-size: .9rem; font-weight: 800; margin-bottom: 3px; color: var(--vt-text); }
.vt-wrap .od-loc-city { font-size: .72rem; color: var(--vt-muted); }
.vt-wrap .od-item { display: flex; justify-content: space-between; align-items: center;
  padding: 9px 11px; background: var(--vt-surface2); border: 1px solid var(--vt-border); border-radius: var(--vt-radius-sm); margin-bottom: 7px; }
.vt-wrap .od-item-name { font-size: .8rem; color: var(--vt-text); }
.vt-wrap .od-item-price { font-size: .85rem; font-weight: 800; color: var(--vt-text); }
.vt-wrap .od-divider { height: 1px; background: var(--vt-border); margin: 12px 0; }
.vt-wrap .od-total { display: flex; justify-content: space-between; font-size: .88rem; font-weight: 800; color: var(--vt-text); }
.vt-wrap .od-total-amount { font-size: 1.25rem; color: var(--vt-vin); }
.vt-wrap .customer-info { background: var(--vt-surface); border: 1px solid var(--vt-border); border-radius: var(--vt-radius); margin-bottom: 18px; }
.vt-wrap .ci-row { display: flex; justify-content: space-between; padding: 11px 18px; border-bottom: 1px solid var(--vt-border); font-size: .83rem; }
.vt-wrap .ci-row:last-child { border-bottom: none; }
.vt-wrap .ci-label { color: var(--vt-muted); }
.vt-wrap .ci-val { font-weight: 600; color: var(--vt-text); }
.vt-wrap .action-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.vt-wrap .btn-action { padding: 11px 22px; border-radius: var(--vt-radius-sm); border: none;
  font-family: inherit; font-size: .87rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 7px; text-decoration: none; }
.vt-wrap .btn-primary-act { background: linear-gradient(135deg,var(--vt-vin),var(--vt-sun)); color: #0a0d14; }
.vt-wrap .btn-secondary-act { background: var(--vt-surface2); border: 1px solid var(--vt-border); color: var(--vt-text); }
.vt-wrap .btn-action:hover { opacity: .88; }
.vt-wrap .help-note { background: rgba(91,141,248,.05); border: 1px solid rgba(91,141,248,.15);
  border-radius: var(--vt-radius-sm); padding: 12px 16px; font-size: .8rem; color: var(--vt-muted); }

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 960px) {
  .vt-wrap .detail-layout { grid-template-columns: 1fr; }
  .vt-wrap .booking-panel { position: static; }
  .vt-wrap .highlights-grid { grid-template-columns: 1fr; }
  .vt-wrap .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 190px 155px; height: auto; }
  .vt-wrap .gallery-main { grid-row: 1/2; grid-column: 1/3; }
}
@media (max-width: 860px) {
  .vt-wrap .checkout-layout { grid-template-columns: 1fr; }
  .vt-wrap .order-summary { position: static; }
  .vt-wrap .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .vt-wrap .main-wrap { flex-direction: column; padding: 18px 14px; }
  .vt-wrap .sidebar { display: none; }
}

.btn-secondary {
    color: #fff;
    background-color: #eb0381;
    border-color: #eb0381;
}