/* ─── THEME & GLOBAL VARIABLES ─── */
html, body, #vnt-wrapper, .vnt-wrapper, #vnt-container, .vnt-container, #vnt-content, .vnt-content, #vnt-main, .vnt-main, #vnt-body, .vnt-body, #wrapper, #container {
  overflow: visible !important;
  overflow-x: clip !important;
}

html.lock-scroll, body.lock-scroll,
html.lock-scroll body,
body.lock-scroll #vnt-wrapper,
body.lock-scroll .vnt-wrapper,
body.lock-scroll #vnt-container,
body.lock-scroll .vnt-container,
body.lock-scroll #vnt-content,
body.lock-scroll .vnt-content,
body.lock-scroll #vnt-main,
body.lock-scroll .vnt-main,
body.lock-scroll #vnt-body,
body.lock-scroll .vnt-body,
body.lock-scroll #wrapper,
body.lock-scroll #container {
  overflow: hidden !important;
}

.ve-tham-quan-theme {
  --bg: #f8f9fa;
  --surface: #ffffff;
  --surface2: #f1f5f9;
  --border: #e2e8f0;
  --text: #1e293b;
  --muted: #64748b;
  --accent: #bf3796;
  --accent2: #e03b93;
  --accent-light: rgba(191, 55, 150, 0.06);
  --green: #10b981;
  --radius: 16px;
  --radius-sm: 10px;
  --red: #ef4444;
  --vin: #e8b94f;
  --vin2: #f7d27a;
  --sun: #f4622a;
  --sun2: #ff8c5a;

  background: var(--bg) !important;
  color: var(--text) !important;
  min-height: 100vh;
  box-sizing: border-box;
  position: relative;
}

.ve-tham-quan-theme *, .ve-tham-quan-theme *::before, .ve-tham-quan-theme *::after {
  box-sizing: border-box;
}

.ve-tham-quan-theme a {
  color: inherit;
}

/* Toast style */
.ve-tham-quan-theme .toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9000;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .87rem;
  font-weight: 500;
  transform: translateY(80px);
  opacity: 0;
  transition: all .3s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
}

.ve-tham-quan-theme .toast.show {
  transform: translateY(0);
  opacity: 1;
}

.ve-tham-quan-theme .disabled-state {
  pointer-events: none !important;
  opacity: 0.55 !important;
  cursor: not-allowed !important;
}

.ve-tham-quan-theme .disabled-state * {
  pointer-events: none !important;
  cursor: not-allowed !important;
}

/* ─── DATE SELECTOR ─── */
.date-selector {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.btn-date {
  padding: 0 20px;
  height: 40px;
  line-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  font-weight: 500;
  font-size: .95rem;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
  user-select: none;
  white-space: nowrap;
}
.btn-date:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-date.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.date-input-wrap {
  display: none; /* removed */
}
.date-input {
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  outline: none;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 500;
  transition: border-color .2s;
  cursor: pointer;
  box-sizing: border-box;
  appearance: auto;
  -webkit-appearance: auto;
}
.date-input:focus, .date-input:hover {
  border-color: var(--accent);
}

/* ─── INDEX/LIST VIEW STYLES ─── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, .03);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 24px;
  letter-spacing: .5px;
}

.hero-badge span {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .5;
    transform: scale(1.4)
  }
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 600;
}

.g1 {
  background: linear-gradient(90deg, var(--vin), var(--vin2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.g2 {
  background: linear-gradient(90deg, var(--sun), var(--sun2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  color: var(--muted);
  font-size: clamp(.9rem, 1.5vw, 1.1rem);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.search-bar {
  display: flex;
  align-items: center;
  max-width: 560px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  overflow: hidden;
}

.search-bar input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-size: .95rem;
  font-family: inherit;
  padding: 14px 20px;
}

.search-bar input::placeholder {
  color: var(--muted);
}

.search-bar button {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border: none;
  cursor: pointer;
  padding: 10px 24px 10px 20px;
  border-radius: 50px;
  color: #ffffff;
  font-weight: 700;
  font-size: .88rem;
  font-family: inherit;
  margin: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity .2s;
}

.search-bar button:hover {
  opacity: .9;
}

/* ─── MAIN LAYOUT ─── */
.main-wrap {
  display: flex;
  gap: 28px;
  padding: 40px clamp(16px, 4vw, 56px);
  max-width: 1400px;
  margin: 0 auto;
  align-items: flex-start;
}

/* ─── SIDEBAR ─── */
.sidebar {
  width: 270px;
  flex-shrink: 0;
  position: sticky;
  top: 80px;
}

.filter-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 14px;
}

.filter-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-title button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--accent);
  font-size: .75rem;
  font-family: inherit;
  font-weight: 600;
}

a.provider-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  cursor: pointer;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  font-size: .88rem;
  font-weight: 500;
  margin-bottom: 8px;
  width: 100%;
  text-align: left;
  transition: all .2s;
  position: relative;
}

a.provider-btn.active,
a.provider-btn:hover,
a.provider-btn:focus {
  border-color: var(--accent);
  outline: none;
}

.provider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.provider-dot.dot-vin {
  background: var(--vin);
}

.provider-dot.dot-sun {
  background: var(--sun);
}

.check-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: .88rem;
  color: var(--muted);
  transition: color .2s;
  user-select: none;
  padding: 4px 0;
}

.check-item:hover {
  color: var(--text);
}

.check-item input {
  display: none;
}

.check-box {
  width: 17px;
  height: 17px;
  border: 1.5px solid var(--border);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .2s;
}

.check-item input:checked~.check-box {
  background: var(--accent);
  border-color: var(--accent);
}

.check-box::after {
  content: '✓';
  font-size: .65rem;
  color: white;
  opacity: 0;
  transition: opacity .2s;
}

.check-item input:checked~.check-box::after {
  opacity: 1;
}

.type-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.type-chip {
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all .18s;
}

.type-chip:hover {
  border-color: var(--accent);
  color: var(--text);
}

.type-chip.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.price-range {
  margin-top: 4px;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  font-size: .78rem;
  color: var(--muted);
  margin-top: 6px;
}

input[type=range] {
  width: 100%;
  accent-color: var(--accent);
  cursor: pointer;
}

/* ─── CONTENT ─── */
.content {
  flex: 1;
  min-width: 0;
}

.content-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.content-header h2 {
  font-size: 1.2rem;
  font-weight: 700;
}

.content-header h2 span {
  color: var(--muted);
  font-weight: 400;
  font-size: 1rem;
}

.sort-bar {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sort-bar label {
  font-size: .82rem;
  color: var(--muted);
}

.sort-select {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 7px 12px;
  border-radius: 8px;
  font-family: inherit;
  font-size: .82rem;
  cursor: pointer;
  outline: none;
}

/* ─── TICKET GRID ─── */
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}

.ticket-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  text-decoration: none;
  color: inherit;
}

.ticket-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 12px 32px rgba(191, 55, 150, .1);
}

.card-img {
  height: 190px;
  overflow: hidden;
  position: relative;
  background: var(--surface2);
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.ticket-card:hover .card-img img {
  transform: scale(1.06);
}

.card-provider {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .5px;
}

.card-provider.vin {
  background: rgba(232, 185, 79, .95);
  color: #0a0d14;
}

.card-provider.sun {
  background: rgba(244, 98, 42, .95);
  color: white;
}

.card-discount {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--sun);
  color: white;
  font-size: .7rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
}

.card-body {
  padding: 16px;
}

.card-loc {
  font-size: .72rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-title {
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .78rem;
}

.stars {
  color: #f7c948;
  letter-spacing: -1px;
}

.rating-count {
  color: var(--muted);
}

.card-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.card-tag {
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--accent-light);
  border: 1px solid rgba(191, 55, 150, .15);
  font-size: .68rem;
  font-weight: 600;
  color: var(--accent);
}

.card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.price-old {
  font-size: .72rem;
  color: var(--muted);
  text-decoration: line-through;
}

.price-new {
  font-size: 1.2rem;
  font-weight: 800;
}

.price-unit {
  font-size: .7rem;
  color: var(--muted);
  font-weight: 400;
}

.price-loading {
  font-size: .85rem;
  color: var(--muted);
  font-style: italic;
}

.btn-book {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border: none;
  color: #ffffff;
  font-weight: 700;
  font-size: .78rem;
  font-family: inherit;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 8px;
  transition: opacity .2s;
  white-space: nowrap;
}

.btn-book:hover {
  opacity: .9;
}

.empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
  grid-column: 1/-1;
}

.empty-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: .4;
}

/* ─── DETAIL VIEW STYLES ─── */
.page-outer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px) 80px;
}

/* TITLE */
.title-section h1 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -.5px;
  margin-bottom: 12px;
}

.title-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.title-meta-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.rating-pill .stars {
  color: #f7c948;
  letter-spacing: -1px;
}

.rating-pill strong {
  font-weight: 800;
}

.meta-sep {
  color: var(--border);
  font-size: 1.2rem;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 242px 242px;
  gap: 5px;
  height: 489px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 36px;
}

.gallery-main {
  grid-row: 1/3;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--surface2);
}

.gallery-thumb {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--surface2);
}

/* Dynamic Gallery Layouts based on image count */
.gallery-grid.gallery-grid-1 {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
.gallery-grid.gallery-grid-1 .gallery-main {
  grid-row: 1/2;
}

.gallery-grid.gallery-grid-2 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
}
.gallery-grid.gallery-grid-2 .gallery-main {
  grid-row: 1/2;
}
.gallery-grid.gallery-grid-2 .gallery-thumb {
  grid-row: 1/2;
}

.gallery-main img, .gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .42s ease;
  display: block;
}

.gallery-main:hover img, .gallery-thumb:hover img {
  transform: scale(1.06);
}

.gallery-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: flex;
  gap: 7px;
}

.g-badge-prov {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
}

.gallery-album-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 3;
  background: rgba(255, 255, 255, .93);
  color: #0a0d14;
  font-family: inherit;
  font-size: .78rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 7px 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}

.gallery-thumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  transition: background 0.3s;
}
.gallery-thumb:hover .gallery-thumb-overlay {
  background: rgba(0, 0, 0, 0.55);
}

/* 2-COL LAYOUT */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 15px;
  align-items: flex-start;
}

/* SECTION BLOCK */
.section-block {
  margin-bottom: 2rem;
}

.mt-xl {
  margin-top: 4rem;
}

.title-xl {
  font-size: 24px !important;
}

.section-heading {
  font-size: 16px;
  padding-bottom: 18px;
  margin-bottom: 12px;
  font-weight: 800;
  border-bottom: 1px solid var(--border);
}

/* BENEFITS */
.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.6;
}

.benefits-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 800;
  font-size: .85rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* INFO CHIPS */
.info-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.info-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  flex: 1;
  min-width: 130px;
}

.ic-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--accent);
}

.ic-label {
  font-size: .7rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.ic-val {
  font-size: .85rem;
  font-weight: 700;
  margin-top: 1px;
}

/* HIGHLIGHTS */
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hl-item {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.hl-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.hl-text h4 {
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.hl-text p {
  font-size: .75rem;
  color: var(--muted);
  line-height: 1.5;
}

/* DATE PILLS */
.date-pill-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  position: relative;
}

.date-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-family: inherit;
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all .18s;
  white-space: nowrap;
}

.date-pill:hover {
  border-color: var(--accent);
  color: var(--text);
}

.date-pill.active {
  background: var(--surface);
  border-color: var(--accent);
  color: var(--accent);
}

/* CALENDAR */
.cal-wrap {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity .18s, transform .18s;
}

.cal-wrap.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.cal-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  padding: 16px;
  width: 280px;
  font-family: inherit;
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.cal-nav {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .15s;
}

.cal-nav:hover {
  background: var(--surface2);
  color: var(--text);
}

.cal-month-label {
  font-size: .88rem;
  font-weight: 800;
}

.cal-dow-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 4px;
}

.cal-dow {
  text-align: center;
  font-size: .65rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .4px;
  padding: 4px 0;
}

.cal-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal-day {
  aspect-ratio: 1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: background .12s, color .12s;
}

.cal-day:hover:not(.cal-day--empty):not(.cal-day--past) {
  background: var(--surface2);
  color: var(--text);
}

.cal-day--empty {
  cursor: default;
}

.cal-day--past {
  color: rgba(122, 128, 153, .3);
  cursor: default;
  pointer-events: none;
}

.cal-day--today {
  color: var(--accent);
  font-weight: 800;
}

.cal-day--selected {
  background: linear-gradient(135deg, var(--accent), var(--accent2)) !important;
  color: #ffffff !important;
  font-weight: 800 !important;
}

/* PRICE LOADING */
.price-loading-overlay {
  padding: 32px;
  text-align: center;
  color: var(--muted);
}

.spinner {
  display: inline-block;
  width: 28px;
  height: 28px;
  border: 3px solid rgba(0, 0, 0, .08);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin .8s linear infinite;
  margin-bottom: 12px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* SERVICE ROWS */
.svc-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.svc-row {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition: border-color .2s;
}

.svc-row:hover {
  border-color: var(--accent);
}

.svc-row.expanded {
  border-color: var(--accent);
}

.svc-row.unavailable {
  opacity: .55;
}

.svc-row-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4px;
  padding: 16px;
}

.svc-row-name {
  font-size: .97rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.svc-row-desc {
  font-size: 14px;
}

.svc-row-meta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
  margin-bottom: 8px;
}

.svc-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: rgb(117, 117, 117);
}

.svc-meta-badge i {
  font-size: 13px;
  color: #a0aec0;
}

.svc-row-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.svc-row-tag {
  font-size: .73rem;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.svc-disc-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--accent-light);
  color: var(--accent);
  border: 1px solid rgba(191, 55, 150, .25);
  font-size: .7rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 5px;
  margin-bottom: 10px;
}

.unavailable-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: .75rem;
  padding: 4px 10px;
  border-radius: 5px;
  margin-bottom: 8px;
}

.svc-info-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--accent);
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.svc-row-left {
  width: 100%;
}

.svc-info-trigger {
  display: block;
  width: 100%;
}

.svc-row-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 5px;
}

.svc-row-header .svc-row-name {
  margin-bottom: 0;
}

.svc-collapse-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 1px solid #cbd5e1;
  border-radius: 50%;
  color: var(--muted);
  background-color: #fff;
  box-sizing: border-box;
  flex-shrink: 0;
  transition: all 0.2s;
}

.svc-collapse-btn.active {
  border-color: var(--accent);
  color: var(--accent);
}

.svc-collapse-btn i {
  font-size: 0.7rem;
  transition: transform 0.2s;
}

.svc-collapse-btn.active i {
  transform: rotate(180deg);
}

.svc-time-info {
  margin-top: 6px;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: #d35400;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.svc-sales-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
  margin-bottom: 10px;
}

.svc-voucher-badge {
  background-color: #ffeef0;
  border: 1px solid #f97583;
  color: #d73a49;
  font-size: 0.72rem;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.svc-row-right {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.svc-price-block {
  text-align: right;
  display: flex;
  gap: 4px;
  align-items: center;
}

.svc-price-val {
  font-size: 1.22rem;
  font-weight: 900;
}

.svc-price-old {
  font-size: .75rem;
  color: var(--muted);
  text-decoration: line-through;
  margin-top: 1px;
}

.svc-price-loading {
  font-size: .82rem;
  color: var(--muted);
  font-style: italic;
}

.svc-choose-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  font-family: inherit;
  font-size: .88rem;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s, transform .12s;
  white-space: nowrap;
}

.svc-choose-btn:hover {
  background: var(--accent2);
  transform: scale(1.02);
}

.svc-choose-btn.selected {
  background: var(--green);
}

.svc-choose-btn:disabled {
  background: rgba(0, 0, 0, .08);
  cursor: not-allowed;
  transform: none;
}

/* TICKET PICKER */
.ticket-picker {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--surface2);
}

.ticket-picker.open {
  display: block;
}

.tp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px 10px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .4px;
}

.tp-header i {
  color: var(--accent);
  margin-right: 6px;
}

.tp-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-size: .95rem;
  padding: 4px 6px;
  border-radius: 6px;
}

.tp-close:hover {
  color: var(--text);
  background: rgba(0, 0, 0, .04);
}

.tp-rows {
  padding: 0 20px 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  gap: 12px;
}

.tp-row:hover {
  border-color: var(--accent);
}

.tp-info {
  display: flex;
  align-items: center;
  gap: 11px;
  flex: 1;
  min-width: 0;
}

.tp-type-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--accent-light);
  border: 1px solid rgba(191, 55, 150, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.tp-name {
  font-size: 14px;
  font-weight: 700;
}

.tp-age {
  font-size: .73rem;
  color: var(--muted);
  margin-top: 2px;
}

.tp-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.tp-price-val {
  font-size: .97rem;
  font-weight: 800;
}

.tp-price-old {
  font-size: .7rem;
  color: var(--muted);
  text-decoration: line-through;
}

.qty-ctrl {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.qty-btn:hover {
  background: var(--surface2);
}

.qty-num {
  font-size: .92rem;
  font-weight: 700;
  min-width: 22px;
  text-align: center;
}

.tp-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px 18px;
  border-top: 1px solid var(--border);
  margin-top: 10px;
  gap: 12px;
}

.tp-total-lbl {
  font-size: .75rem;
  color: var(--muted);
}

.tp-total-val {
  font-size: 1.08rem;
  font-weight: 900;
}

.tp-confirm-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  font-family: inherit;
  font-size: .88rem;
  font-weight: 800;
  padding: 11px 24px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
}

.tp-confirm-btn:hover {
  background: var(--accent2);
}

/* DETAIL PANEL */
.svc-detail-panel {
  display: none;
  border-top: 1px solid var(--border);
}

.svc-row.expanded .svc-detail-panel {
  display: block;
}

.sdp-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
  overflow-x: auto;
  scrollbar-width: none;
}

.sdp-tabs::-webkit-scrollbar {
  display: none;
}

.sdp-tab {
  flex-shrink: 0;
  padding: 12px 16px;
  font-family: inherit;
  font-size: .82rem;
  font-weight: 700;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
}

.sdp-tab:hover {
  color: var(--text);
}

.sdp-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.sdp-pane {
  display: none;
  padding: 20px;
}

.sdp-pane.active {
  display: block;
}

.included-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.included-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: .87rem;
  color: var(--muted);
  line-height: 1.6;
}

.included-list li .il-check {
  font-size: .75rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.included-list li.included .il-check {
  color: var(--green);
}

.included-list li.excluded .il-check {
  color: var(--red);
}

.svc-notice-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.svc-notice-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: #fffdf5;
  border: 1px solid #fef3c7;
  font-size: .84rem;
  line-height: 1.65;
  color: #78350f;
}

.svc-notice-item .ni-icon {
  font-size: .95rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.svc-notice-item strong {
  color: #1e293b;
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}

.howto-steps {
  display: flex;
  flex-direction: column;
}

.howto-step {
  display: flex;
  gap: 14px;
  position: relative;
  padding-bottom: 20px;
}

.howto-step:last-child {
  padding-bottom: 0;
}

.howto-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.howto-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #ffffff;
  font-size: .78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.howto-line {
  flex: 1;
  width: 2px;
  background: var(--border);
  margin: 6px 0 0;
}

.howto-step:last-child .howto-line {
  display: none;
}

.howto-content {
  padding-top: 4px;
}

.howto-content h4 {
  font-size: .87rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.howto-content p {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.65;
}

/* BOOKING PANEL */
.booking-panel {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 125px !important;
  height: fit-content !important;
  z-index: 1 !important;
  margin-bottom: 20px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

.bp-header {
  padding: 20px 22px 16px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(191, 55, 150, .04), rgba(224, 59, 147, .04));
}

.bp-from {
  font-size: .7rem;
  color: var(--muted);
  margin-bottom: 2px;
}

.bp-price {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--accent);
}

.bp-unit {
  font-size: .78rem;
  color: var(--muted);
}

.bp-body {
  padding: 18px 10px;
}

.bp-assurance {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}

.bp-assur-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--muted);
}

.bp-section-label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 10px;
}

.bp-service-summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.bp-svc-item {
  padding: 10px 0px;
}

.bp-svc-item-name {
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.bp-svc-item-sub {
  font-size: 14px;
}

.bp-svc-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.bp-svc-price {
  font-size: .88rem;
  font-weight: 800;
}

.bp-empty-state {
  text-align: center;
  padding: 18px 0;
}

.bp-empty-icon {
  font-size: 2rem;
  opacity: .3;
  margin-bottom: 6px;
}

.bp-empty-text {
  font-size: .8rem;
  color: var(--muted);
}

.bp-total {
  padding: 12px 0;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.bp-total-label {
  font-size: .78rem;
  color: var(--muted);
}

.bp-total-amount {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--accent);
}

.bp-total-count {
  font-size: .75rem;
  color: var(--muted);
}

.btn-checkout {
  width: 100%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border: none;
  color: #ffffff;
  font-weight: 800;
  font-size: .95rem;
  font-family: inherit;
  cursor: pointer;
  padding: 15px;
  border-radius: var(--radius-sm);
  transition: opacity .2s;
}

.dlv-btn-primary {
  width: 100%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border: none;
  color: #ffffff;
  font-weight: 800;
  font-size: .95rem;
  font-family: inherit;
  cursor: pointer;
  padding: 15px;
  border-radius: var(--radius-sm);
  transition: opacity .2s;
}

.btn-checkout:hover {
  opacity: .87;
}

.btn-checkout:disabled {
  opacity: .5;
  cursor: not-allowed;
}

/* RELATED */
.related-section {
  margin-top: 52px;
}

.related-heading {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

.rel-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform .22s, box-shadow .22s, border-color .22s;
  text-decoration: none;
  color: inherit;
}

.rel-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.rel-img {
  height: 148px;
  overflow: hidden;
  position: relative;
  background: var(--surface2);
}

.rel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.rel-card:hover .rel-img img {
  transform: scale(1.06);
}

.rel-prov {
  position: absolute;
  top: 9px;
  left: 9px;
  padding: 3px 9px;
  border-radius: 50px;
  font-size: .65rem;
  font-weight: 700;
}

.rel-prov.vin {
  background: rgba(232, 185, 79, .95);
  color: #0a0d14;
}

.rel-prov.sun {
  background: rgba(244, 98, 42, .95);
  color: #fff;
}

.rel-body {
  padding: 13px;
}

.rel-loc {
  font-size: .7rem;
  color: var(--muted);
  margin-bottom: 4px;
}

.rel-name {
  font-size: .85rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rel-price {
  font-size: 1rem;
  font-weight: 800;
}

.rel-unit {
  font-size: .65rem;
  color: var(--muted);
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  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;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 90vw;
}

.lightbox-img-wrap {
  border-radius: 12px;
  overflow: hidden;
}

.lightbox-img-wrap img {
  max-width: 80vw;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  cursor: pointer;
  font-size: 1.2rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-dots {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
}

.lb-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .3);
  cursor: pointer;
}

.lb-dot.active {
  background: #fff;
}

.flex-responsive {
  display: flex;
  gap: 10px;
}

@media (max-width: 960px) {
  .detail-layout {
    display: flex !important;
    flex-direction: column !important;
  }

  .flex-responsive {
    flex-direction: column;
  }

  .booking-panel {
    position: unset;
    width: 100%;
    z-index: unset;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 164px;
    height: auto;
  }

  .gallery-main {
    grid-row: 1/2;
    grid-column: 1/3;
  }

  .gallery-grid.gallery-grid-1 {
    grid-template-columns: 1fr;
    grid-template-rows: 250px;
  }

  .gallery-grid.gallery-grid-2 {
    grid-template-columns: 1fr;
    grid-template-rows: 200px 164px;
  }
  .gallery-grid.gallery-grid-2 .gallery-main {
    grid-row: 1/2;
    grid-column: 1/3;
  }
  .gallery-grid.gallery-grid-2 .gallery-thumb {
    grid-row: 2/3;
    grid-column: 1/3;
  }
}

/* ─── PAYMENT GATEWAY & RESULT VIEWS STYLES ─── */
.gw-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 32px clamp(16px, 4vw, 48px) 80px;
}

.gw-title {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 900;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* STEPS */
.steps-bar {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
}

.step {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 800;
  flex-shrink: 0;
}

.step.done .step-num {
  background: var(--green);
  color: #fff;
}

.step.active .step-num {
  background: linear-gradient(135deg, var(--vin), var(--sun));
  color: #0a0d14;
}

.step.todo .step-num {
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--muted);
}

.step-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
}

.step.active .step-label {
  color: var(--text);
}

.step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 8px;
}

/* LAYOUT */
.gw-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: flex-start;
}

/* PAYMENT BOX */
.pay-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.pay-box-header {
  padding: 18px 22px 14px;
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* QR SECTION */
.qr-section {
  padding: 28px 22px;
  text-align: center;
}

.qr-amount {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.qr-amount-lbl {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.qr-img-wrap {
  display: inline-block;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .3);
  margin-bottom: 20px;
}

.qr-img-wrap img {
  width: 220px;
  height: 220px;
  display: block;
  border-radius: 8px;
}

.qr-bank-info {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  text-align: left;
  margin-bottom: 20px;
}

.qr-bank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: .84rem;
}

.qr-bank-row:last-child {
  border-bottom: none;
}

.qr-bank-label {
  color: var(--muted);
}

.qr-bank-val {
  font-weight: 700;
}

.qr-note {
  font-size: .78rem;
  color: var(--muted);
  background: rgba(232, 185, 79, .06);
  border: 1px solid rgba(232, 185, 79, .15);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 24px;
  text-align: left;
}

.qr-note i {
  color: var(--vin);
  flex-shrink: 0;
  margin-top: 1px;
}

.btn-confirm {
  width: 100%;
  background: linear-gradient(135deg, var(--vin), var(--sun));
  border: none;
  color: #0a0d14;
  font-weight: 800;
  font-size: 1rem;
  font-family: inherit;
  padding: 15px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: opacity .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-confirm:hover {
  opacity: .88;
}

.btn-cancel {
  width: 100%;
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  font-weight: 600;
  font-size: .85rem;
  font-family: inherit;
  padding: 11px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  margin-top: 10px;
  transition: all .2s;
}

.btn-cancel:hover {
  border-color: rgba(255, 255, 255, .2);
  color: var(--text);
}

/* CARD SECTION */
.card-section {
  padding: 24px 22px;
}

.card-providers {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.card-prov {
  height: 32px;
  padding: 4px 12px;
  background: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  color: #333;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: .73rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 7px;
}

.form-input {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .9rem;
  outline: none;
  transition: border-color .2s;
}

.form-input:focus {
  border-color: rgba(91, 141, 248, .5);
}

.form-input::placeholder {
  color: var(--muted);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.secure-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  color: var(--muted);
  margin: 16px 0;
}

.secure-note i {
  color: var(--green);
}

/* ORDER SUMMARY */
.order-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: sticky;
  top: 80px;
}

.os-header {
  padding: 16px 18px 12px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(232, 185, 79, .06), rgba(244, 98, 42, .06));
}

.os-loc {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.os-loc-img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.os-loc-name {
  font-size: .86rem;
  font-weight: 800;
  margin-bottom: 2px;
  line-height: 1.3;
}

.os-loc-city {
  font-size: .73rem;
  color: var(--muted);
}

.os-date-chip {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .8rem;
  color: var(--muted);
  background: var(--surface2);
  padding: 7px 12px;
  border-radius: 8px;
}

.os-date-chip strong {
  color: var(--text);
}

.os-body {
  padding: 14px 18px 18px;
}

.os-items {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}

.os-item-name {
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.os-item-row {
  display: flex;
  justify-content: space-between;
  font-size: .73rem;
  color: var(--muted);
  margin-top: 4px;
}

.os-item-price {
  font-size: .85rem;
  font-weight: 800;
  color: var(--text);
}

.os-divider {
  height: 1px;
  background: var(--border);
  margin: 12px 0;
}

.os-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.os-total-amount {
  font-size: 1.45rem;
  font-weight: 900;
}

.os-code {
  margin-top: 10px;
  font-size: .72rem;
  color: var(--muted);
}

.os-code span {
  color: var(--vin);
  font-family: monospace;
  font-weight: 700;
}

/* TIMER */
.timer-bar {
  background: rgba(244, 98, 42, .08);
  border: 1px solid rgba(244, 98, 42, .2);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
}

.timer-bar i {
  color: var(--sun);
}

.timer-count {
  font-weight: 800;
  color: var(--sun);
  font-size: .95rem;
}

/* RESULT STYLE */
.result-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px clamp(16px, 4vw, 48px) 80px;
  font-size: 16px;
}

.result-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(320px, 4fr);
  gap: 24px;
  align-items: flex-start;
}

.result-ticket-column,
.result-side-column {
  min-width: 0;
}

.result-side-column {
  position: sticky;
  top: 84px;
}

.result-ticket-list {
  margin-bottom: 30px;
}

.result-section-title {
  border-bottom: 2px solid var(--accent);
  padding-bottom: 8px;
  margin: 0 0 15px;
  display: inline-block;
}

.status-banner {
  text-align: center;
  padding: 40px 24px;
  margin-bottom: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.status-banner.success {
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(62, 207, 116, .12), transparent);
  border-color: rgba(62, 207, 116, .2);
}

.status-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.status-title {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.status-banner.success .status-title {
  color: var(--green);
}

.status-banner.failed .status-title {
  color: var(--red);
}

.status-subtitle {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.7;
}

.order-code-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-top: 16px;
}

/* TICKET CARD */
.ticket-card-wrap {
  background: var(--surface);
  border: 1px solid rgba(62, 207, 116, .25);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}

.ticket-card-header {
  background: linear-gradient(135deg, rgba(232, 185, 79, .08), rgba(244, 98, 42, .08));
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ticket-card-title {
  font-size: .88rem;
  font-weight: 800;
}

.ticket-status-pill {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
}

.pill-issued {
  background: rgba(62, 207, 116, .15);
  color: var(--green);
  border: 1px solid rgba(62, 207, 116, .3);
}

.pill-processing {
  background: rgba(232, 185, 79, .15);
  color: var(--vin);
  border: 1px solid rgba(232, 185, 79, .3);
}

.ticket-body {
  padding: 20px;
}

.ticket-qr-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.ticket-qr {
  background: #fff;
  padding: 14px;
  border-radius: 12px;
  text-align: center;
  min-width: 140px;
}

.ticket-qr-placeholder {
  width: 110px;
  height: 110px;
  background: #f5f5f5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.ticket-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  flex: 1;
}

.ticket-info-item {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}

.ticket-info-label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--muted);
  margin-bottom: 4px;
}

.ticket-info-val {
  font-size: .88rem;
  font-weight: 700;
}

/* ORDER DETAILS */
.order-details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.od-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: .88rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

.od-body {
  padding: 20px;
}

.od-location {
  display: flex;
  gap: 14px;
}

.od-loc-img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.od-loc-name {
  font-size: .92rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.od-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.od-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.od-item-name {
  font-size: .82rem;
}

.od-item-price {
  font-size: .88rem;
  font-weight: 800;
}

.od-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}

.od-total {
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  font-weight: 800;
}

.od-total-amount {
  font-size: 1.3rem;
  color: var(--vin);
}

/* CUSTOMER INFO */
.customer-info {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.ci-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  font-size: .85rem;
}

.ci-row:last-child {
  border-bottom: none;
}

.ci-label {
  color: var(--muted);
}

.ci-val {
  font-weight: 600;
}

/* ACTIONS */
.action-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn-action {
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: none;
  font-family: inherit;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--vin), var(--sun));
  color: #0a0d14;
}

.btn-secondary {
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-action:hover {
  opacity: .88;
}

.help-note {
  background: rgba(91, 141, 248, .05);
  border: 1px solid rgba(91, 141, 248, .15);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: .82rem;
  color: var(--muted);
}

.help-note strong {
  color: var(--text);
}

@media (max-width: 760px) {
  .gw-layout {
    grid-template-columns: 1fr;
  }

  .result-main-grid {
    grid-template-columns: 1fr;
  }

  .result-side-column {
    position: static;
  }

  .order-summary {
    position: static;
  }
}

/* ─── CHECKOUT VIEW STYLES ─── */
.checkout-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px clamp(16px, 4vw, 48px) 80px;
}

.checkout-title {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 900;
  margin-bottom: 28px;
}

/* STEPS */
.checkout-wrap .steps-bar {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
}

.checkout-wrap .step {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.checkout-wrap .step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 800;
  flex-shrink: 0;
}

.checkout-wrap .step.done .step-num {
  background: var(--green);
  color: #fff;
}

.checkout-wrap .step.active .step-num {
  background: linear-gradient(135deg, var(--vin), var(--sun));
  color: #0a0d14;
}

.checkout-wrap .step.todo .step-num {
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--muted);
}

.checkout-wrap .step-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
}

.checkout-wrap .step.active .step-label {
  color: var(--text);
}

.checkout-wrap .step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 8px;
}

/* LAYOUT */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  align-items: flex-start;
}

/* FORM */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}

.form-card-header {
  padding: 18px 24px 14px;
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-card-body {
  padding: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 7px;
}

.form-group label .req {
  color: var(--sun);
}

.form-input {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .9rem;
  outline: none;
  transition: border-color .2s;
}

.form-input:focus {
  border-color: rgba(91, 141, 248, .5);
}

.form-input::placeholder {
  color: var(--muted);
}

/* PAYMENT METHODS */
.pay-methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pay-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: var(--surface2);
  transition: all .2s;
  user-select: none;
}

.pay-method:hover {
  border-color: rgba(255, 255, 255, .2);
}

.pay-method input[type=radio] {
  display: none;
}

.pay-method.selected {
  border-color: var(--vin);
  background: rgba(232, 185, 79, .06);
}

.pm-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.pm-qr {
  background: rgba(62, 207, 116, .12);
  color: var(--green);
}

.pm-atm {
  background: rgba(91, 141, 248, .12);
  color: var(--accent);
}

.pm-int {
  background: rgba(232, 185, 79, .12);
  color: var(--vin);
}

.pm-payoo {
  background: rgba(244, 98, 42, .12);
  color: var(--sun);
}

.pm-info {
  flex: 1;
}

.pm-name {
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.pm-desc {
  font-size: .75rem;
  color: var(--muted);
}

.pm-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pay-method.selected .pm-radio {
  border-color: var(--vin);
}

.pm-radio::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vin);
  display: none;
}

.pay-method.selected .pm-radio::after {
  display: block;
}

.pm-badge {
  font-size: .68rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 50px;
  background: rgba(62, 207, 116, .15);
  color: var(--green);
}

/* ORDER SUMMARY */
.os-location {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.os-loc-img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.os-loc-name {
  font-size: .9rem;
  font-weight: 800;
  margin-bottom: 4px;
  line-height: 1.3;
}

.os-loc-city {
  font-size: .75rem;
  color: var(--muted);
}

.os-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--muted);
  background: var(--surface2);
  padding: 8px 12px;
  border-radius: 8px;
}

.os-date strong {
  color: var(--text);
}

.os-body {
  padding: 16px 20px;
}

.os-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.os-total-amount {
  font-size: 1.5rem;
  font-weight: 900;
}

.btn-pay:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.terms-note {
  font-size: .73rem;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.6;
}

.terms-note a {
  color: var(--accent);
}

.error-box {
  background: rgba(224, 82, 82, .1);
  border: 1px solid rgba(224, 82, 82, .3);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--red);
  font-size: .88rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 800px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ────────────────────────────────────────────────────────────
   CART PAGE VIEW STYLES (Giỏ hàng)
   ──────────────────────────────────────────────────────────── */
.cart-page-wrap {
  max-width: 1200px;
  margin: 0 auto 48px;
  padding: 0 15px;
}

.cart-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 24px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: flex-start;
}

.cart-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 8px;
  transition: box-shadow .2s;
}

.cart-item-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, .04);
}

.cart-item-thumb {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--text);
  line-height: 1.4;
}

.cart-item-service {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 6px;
}

.cart-item-date {
  font-size: .8rem;
  color: var(--muted);
  background: var(--surface2);
  display: inline-block;
  padding: 3px 8px;
  border-radius: 6px;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface2);
  flex-shrink: 0;
}

.cart-qty-btn {
  border: none;
  background: none;
  width: 36px;
  height: 36px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}

.cart-qty-btn:hover {
  background: var(--border);
}

.cart-qty-val {
  width: 42px;
  text-align: center;
  font-size: .9rem;
  font-weight: 700;
}

.cart-item-price {
  width: 140px;
  text-align: right;
  flex-shrink: 0;
}

.cart-item-unit {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: 2px;
}

.cart-item-total {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent);
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.1rem;
  padding: 8px;
  border-radius: 50%;
  transition: all .15s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-item-remove:hover {
  color: var(--red);
  background: rgba(224, 82, 82, .08);
}

/* SUMMARY */
.cart-summary-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  position: sticky;
  top: 125px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
}

.cart-summary-header {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 1.05rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-summary-body {
  padding: 20px;
}

.cart-summary-loc {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.cart-summary-loc-img {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.cart-summary-loc-info {
  flex-grow: 1;
}

.cart-summary-loc-name {
  font-size: .92rem;
  font-weight: 800;
  margin-bottom: 4px;
  line-height: 1.3;
}

.cart-summary-loc-city {
  font-size: .75rem;
  color: var(--muted);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.cart-summary-label {
  font-size: .85rem;
  color: var(--muted);
}

.cart-summary-val {
  font-size: .88rem;
  font-weight: 700;
}

.cart-summary-total {
  border-top: 1px dashed var(--border);
  padding-top: 16px;
  margin-top: 16px;
}

.cart-summary-total-val {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent);
}

.cart-back-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: .85rem;
  color: var(--muted);
  text-decoration: none;
  margin-top: 16px;
  transition: color .15s;
}

.cart-back-link:hover {
  color: var(--accent);
}

/* EMPTY STATE */
.cart-empty-state {
  text-align: center;
  padding: 60px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  max-width: 600px;
  margin: 40px auto;
}

.cart-empty-icon {
  font-size: 4rem;
  color: var(--border);
  margin-bottom: 20px;
}

.cart-empty-state h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text);
}

.cart-empty-state p {
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent) !important;
  color: #ffffff !important;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none !important;
  transition: opacity .2s, background .2s;
}

.btn-explore:hover {
  background: var(--accent2) !important;
  color: #ffffff !important;
}

@media (max-width: 800px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-item-card {
    flex-wrap: wrap;
    gap: 14px;
    padding: 16px;
  }

  .cart-item-price {
    width: auto;
    text-align: left;
    margin-left: auto;
  }

  .cart-summary-card {
    position: static;
  }
}



/* ── CART BUTTON IN BREADCRUMB HEADER ─────────────────────── */
.breadcrumb .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vnt-cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--vin), var(--sun));
  color: #0a0d14;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .18s, transform .18s;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  border: none;
}

.vnt-cart-btn:hover {
  opacity: .88;
  transform: translateY(-1px);
  color: #0a0d14;
  text-decoration: none;
}

.vnt-cart-btn--active {
  opacity: .7;
  cursor: default;
  pointer-events: none;
}

.vnt-cart-count {
  background: #0a0d14;
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
}

/* ── CART PAGE ─────────────────────────────── */
.cart-group-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 20px;
  overflow: hidden;
}

.cart-group-header {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, .03);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.cart-group-loc {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.cart-group-thumb {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.cart-group-thumb-placeholder {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: var(--surface3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  flex-shrink: 0;
}

.cart-group-loc-name {
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: block;
  margin-bottom: 2px;
}

.cart-group-loc-name:hover {
  color: var(--accent);
}

.cart-group-loc-city {
  font-size: 14px;
}

.cart-group-date {
  font-size: 1rem;
}

.cart-group-items {
  padding: 8px;
}

.cart-group-footer {
  padding: 10px 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, .02);
}

.cart-group-subtotal {
  font-size: .82rem;
  color: var(--muted);
}

.cart-group-subtotal strong {
  color: var(--text);
}

.cart-group-remove-btn {
  background: rgba(255, 80, 80, .1);
  border: 1px solid rgba(255, 80, 80, .2);
  color: var(--red, #f55);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-size: .75rem;
  cursor: pointer;
  transition: background .15s;
}

.cart-group-remove-btn:hover {
  background: rgba(255, 80, 80, .2);
}

.cart-summary-group {
  padding: 6px 0;
  border-bottom: 1px dashed var(--border);
  margin-bottom: 4px;
}

.cart-summary-group-name {
  font-size: .78rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

/* ── STANDARD DLV BUTTONS ──────────────────── */
.dlv-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent) !important;
  color: #ffffff !important;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-align: center;
  text-decoration: none !important;
  transition: opacity .2s, background .2s, transform .2s;
  border: none;
  cursor: pointer;
}

.dlv-btn-primary:hover {
  background: var(--accent2) !important;
  color: #ffffff !important;
  text-decoration: none;
}

.dlv-btn-primary:disabled,
.dlv-btn-primary[disabled] {
  opacity: 0.5;
  pointer-events: none;
}

/* ── RESPONSIVE MAIN INDEX ── */
@media (max-width: 990px) {
  .main-wrap {
    flex-direction: column;
    padding: 20px 16px;
    gap: 20px;
  }

  .sidebar {
    width: 100%;
    position: static;
  }

  .filter-card {
    padding: 16px;
    margin-bottom: 12px;
  }

  /* Filter Provider buttons Side by Side */
  .sidebar>.filter-card:first-child {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .sidebar>.filter-card:first-child .filter-title {
    width: 100%;
    margin-bottom: 8px;
  }

  .provider-btn {
    flex: 1;
    margin-bottom: 0;
    padding: 8px;
    font-size: 0.75rem;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 4px;
    min-width: 30%;
  }

  .provider-btn span:last-child {
    margin-left: 0 !important;
  }

  .check-group {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  .content-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .content {
    width: 100%;
  }

  .ticket-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
  }

  .card-img {
    height: 140px;
  }

  .card-title {
    font-size: .85rem;
  }

  .card-body {
    padding: 12px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .search-bar {
    width: 100%;
  }
}

.txt-vin {
  color: var(--vin);
}

.txt-sun {
  color: var(--sun);
}

.g-badge-prov.vin {
  background: rgba(232, 185, 79, .9);
  color: #0a0d14;
  display: inline-block;
}

.g-badge-prov.sun {
  background: rgba(244, 98, 42, .9);
  color: #fff;
  display: inline-block;
}

.btn-pay:hover {
  opacity: 0.9;
}

/* New classes to replace inline styles */
.os-item-bordered {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px dashed var(--border);
}

.os-item-header {
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.os-item-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.os-item-header i {
  color: var(--accent);
  font-size: .8em;
}

.os-item-date i {
  color: var(--accent);
}

.summary-row-style {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text);
}

.os-subtotal-val, .os-fee-val {
  font-weight: 600;
}

.summary-fee-note {
  font-size: 0.75em;
  color: var(--muted);
  font-weight: normal;
}

.os-gross-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 12px;
}

.gross-amount, 
.gross-label {
  font-weight: bold;
  font-size: 16px;
}

.fs-sm {
  font-size: 12px;
}

.pb-sm {
  padding-bottom: 4px;
}

/* ─── RESPONSIVE (MOBILE) ─── */
@media (max-width: 960px) {
  .main-wrap {
    flex-direction: column;
    padding: 24px 16px;
    gap: 20px;
  }
  .sidebar {
    width: 100%;
    position: static;
  }
  .hero h1 {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }
  .search-bar {
    border-radius: 20px;
    flex-direction: column;
  }
  .search-bar input {
    width: 100%;
    text-align: center;
  }
  .search-bar button {
    width: 100%;
    margin: 0;
    border-radius: 0 0 20px 20px;
    justify-content: center;
  }
  .content-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .sort-bar {
    width: 100%;
  }
  .sort-select {
    width: calc(100% - 80px);
  }
  .checkout-layout {
    flex-direction: column;
  }
  .checkout-main, .checkout-sidebar {
    flex: none;
    width: 100%;
  }
}

/* Secondary Button */
.dlv-btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  cursor: pointer;
  padding: 10px 24px 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .88rem;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
}

.dlv-btn-secondary:hover {
  background: var(--accent-light);
}

/* Payment Result Print Styles */
@media print {
  header, #vnt-header-top, .action-bar, .help-note, .related-section, .vnt-main-top { display: none !important; }
  .result-wrap { padding: 0 !important; max-width: 100% !important; }
  body, .ve-tham-quan-theme { background: #fff !important; color: #000 !important; }
  .ticket-card-wrap, .order-details, .customer-info { border: 1px solid #ccc !important; }
}

.bold {
  font-weight: bold !important;
}

/* Off-canvas Info Sidebar styles */
.info-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 700px;
  height: 100%;
  background: var(--surface, #fff);
  box-shadow: -5px 0 25px rgba(0,0,0,0.15);
  z-index: 2000000004 !important;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 16px;
}
.info-sidebar.open {
  transform: translateX(0);
}
.info-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.info-sidebar-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.info-sidebar-header {
  padding: 20px;
  border-bottom: 1px solid var(--border, #eee);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fdfcfb;
}
.info-sidebar-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text, #333);
  margin: 0;
  padding-right: 20px;
  line-height: 1.4;
}
.info-sidebar-close {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--muted, #666);
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
  width: 32px;
  height: 32px;
}
.info-sidebar-close:hover {
  background: var(--border, #eee);
  color: var(--text, #333);
}
.info-sidebar-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}
.info-sidebar-section {
  margin-bottom: 28px;
}
.info-sidebar-section-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text, #333);
  border-bottom: 2px solid var(--border, #eee);
  padding-bottom: 8px;
}
.info-sidebar-section-title i {
  font-size: 1.1rem;
}
.info-sidebar-section-title i.fa-circle-check {
  color: #3ecf74;
}
.info-sidebar-section-title i.fa-clipboard-list {
  color: var(--accent);
}
.info-sidebar-section-title i.fa-route {
  color: #3498db;
}
.info-sidebar-body .included-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.info-sidebar-body .included-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.5;
}
.included-list li.included .il-check {
  color: #3ecf74;
}
.included-list li.excluded .il-check {
  color: #e05252;
}
.included-list li.excluded span:last-child {
  opacity: 0.65;
}

/* Notices styles */
.svc-notice-list {
  display: flex;
  flex-direction: column;
}
.svc-notice-item {
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.svc-notice-item .ni-icon {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 2px;
}
.svc-notice-item .ni-content {
  display: flex;
  flex-direction: column;
}
.svc-notice-item .ni-title {
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}
.svc-notice-item .ni-desc {
  font-size: 16px;
  opacity: 0.8;
  margin-top: 4px;
}

/* Howto steps styles */
.howto-steps {
  display: flex;
  flex-direction: column;
}
.howto-step {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.howto-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.howto-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: bold;
}
.howto-content {
  display: flex;
  flex-direction: column;
}
.howto-content .howto-title {
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
}
.howto-content .howto-desc {
  font-size: 16px;
  opacity: 0.8;
  margin-top: 4px;
}

/* CKEditor HTML content styles */
.ck-content {
  font-size: 16px;
  line-height: 1.5;

}
.ck-content p {
  margin-bottom: 4px;
  padding: 0px;
}

.ck-content ul, .ck-content ol {
  padding-left: 20px;
  margin-bottom: 12px;
}
.ck-content img {
  max-width: 100%;
  height: auto !important;
}
.ck-content ul {
  list-style-type: disc;
}

.ck-content ol {
  list-style-type: decimal;
}

.ck-content li {
  margin-bottom: 6px;
}

.ck-content h2 {
  font-size: 26px;
  margin-bottom: 1rem;
  margin-top: .8rem;
}

.ck-content h3 {
  font-size: 24px;
  margin-bottom: 1rem;
  margin-top: .8rem;
}

.ck-content h4 {
  font-size: 22px;
  margin-bottom: 1rem;
  margin-top: .8rem;
}

.ck-content h5 {
  font-size: 20px;
  margin-bottom: 1rem;
  margin-top: .8rem;
}

.ck-content h6 {
  font-size: 18px;
  margin-bottom: 1rem;
  margin-top: .8rem;
}

/* Custom list-style for Sidebar Included / Not Included columns */
.sidebar-included ul {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0 !important;
}
.sidebar-included ul li {
  position: relative !important;
  padding-left: 26px !important;
  margin-bottom: 10px !important;
  font-size: 16px !important;
  line-height: 1.5 !important;
  display: block !important;
}
.sidebar-included ul li::before {
  content: "" !important;
  display: inline-block !important;
  width: 18px !important;
  height: 18px !important;
  background-image: url("/ve-tham-quan/public/img/ticked.svg") !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  position: absolute !important;
  left: 0 !important;
  top: 3px !important;
}

.sidebar-not-included ul {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0 !important;
}
.sidebar-not-included ul li {
  position: relative !important;
  padding-left: 26px !important;
  margin-bottom: 10px !important;
  font-size: 16px !important;
  line-height: 1.5 !important;
  display: block !important;
}
.sidebar-not-included ul li::before {
  content: "" !important;
  display: inline-block !important;
  width: 16px !important;
  height: 16px !important;
  background-image: url("/ve-tham-quan/public/img/fox.svg") !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  position: absolute !important;
  left: 2px !important;
  top: 5px !important;
}

.info-sidebar-section-title i.fa-check {
  color: #16a34a;
}
.info-sidebar-section-title i.fa-xmark {
  color: #9ca3af;
}
.info-sidebar-section-title i.fa-clipboard-question {
  color: #0284c7;
}
.info-sidebar-section-title i.fa-circle-info {
  color: var(--vin);
}

/* Sidebar Subsections (Included, Not Included, Conditions grouped) */
.info-sidebar-subsection {
  margin-bottom: 20px;
}
.info-sidebar-subsection:last-child {
  margin-bottom: 0;
}
.info-sidebar-subsection-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.info-sidebar-subsection-title i {
  font-size: 1rem;
}

/* Sidebar Meta Items (Validity & Refund) */
.info-sidebar-svc-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--text, #333);
  margin-bottom: 20px;
  line-height: 1.3;
}
.info-sidebar-meta-items {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.info-sidebar-meta-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.info-sidebar-meta-item .ism-icon {
  font-size: 18px;
  margin-top: 2px;
}

.info-sidebar-meta-item .ism-icon i.fa-check-circle,
.info-sidebar-meta-item .ism-icon i.fa-info-circle,
.info-sidebar-meta-item .ism-icon i.fa-circle-check,
.info-sidebar-meta-item .ism-icon i.fa-circle-info,
.info-sidebar-meta-item .ism-icon i.fa-clock {
  color: #a0aec0; /* premium cool light grey for low focus */
}
.info-sidebar-meta-item .ism-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.info-sidebar-meta-item .ism-title {
  font-weight: 700;
  font-size: 16px;
  color: var(--text, #333);
}
.info-sidebar-meta-item .ism-desc {
  font-size: 15px;
  color: var(--muted, #666);
  line-height: 1.4;
}

/* ORIGNAL COMMON CLASS */
.mb-2 {
  margin-bottom: 2rem;
}
.desc-line-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
}
.desc-fade-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9) 70%, #ffffff 100%);
  pointer-events: none;
}

/* Nút Xem thêm đẹp mắt */
.btn-read-more-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--surface, #ffffff);
  color: var(--accent, #bf3796);
  border: 1px solid var(--border, #e2e8f0);
  padding: 6px 60px;
  line-height: 1;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  z-index: 2;
  margin-top: -30px;
}
.btn-read-more-modern:hover {
  background: var(--accent, #bf3796);
  color: #ffffff;
  border-color: var(--accent, #bf3796);
  box-shadow: 0 10px 15px -3px rgba(191, 55, 150, 0.2), 0 4px 6px -2px rgba(191, 55, 150, 0.1);
  transform: translateY(-2px);
}
.btn-read-more-modern i {
  font-size: 12px;
  transition: transform 0.3s ease;
}
.btn-read-more-modern:hover i.fa-chevron-down {
  transform: translateY(2px);
}
.btn-read-more-modern:hover i.fa-chevron-up {
  transform: translateY(-2px);
}
