/* ==========================================================================
   VENUS TOUR — CLEAN CSS (scoped)
   ========================================================================== */

/* ===== Tokens / Colors ===== */
:root {
  --brand: #125123; /* xanh chủ đạo */
  --accent: #f4c100; /* vàng nhấn */
  --ink: #0f172a; /* chữ chính */
  --muted: #94a3b8; /* nhạt */
  --bg-card: #fff;
  --bd-card: #e5e7eb;
  --shadow: 0 6px 18px rgba(2, 6, 12, 0.04);
}

/* ===== Shell ===== */
.content-tour {
  width: 90%;
  margin: auto;
  padding: 30px 0;
}
.content-tour #content-t {
  padding: 0 25px;
}

/* ===== Breadcrumb (1 phiên bản) ===== */
.breadcrumb-bar {
  margin: 6px 0;
}
.breadcrumb-bar .venus-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 15px;
  line-height: 1.4;
  color: #475569;
}
.venus-breadcrumb li {
  position: relative;
}
.venus-breadcrumb li + li {
  padding-left: 12px;
}
.venus-breadcrumb li + li::before {
  content: "/";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--muted);
}
.venus-breadcrumb a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}
.venus-breadcrumb a:hover {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.venus-breadcrumb .is-current,
[aria-current="page"] {
  color: var(--brand);
  font-weight: 800;
  pointer-events: none;
}

/* ===== H1 (1 phiên bản) ===== */
.tour-title {
  margin: 8px 0 18px;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-size: clamp(28px, 2.6vw, 44px);
  position: relative;
}
.tour-title::after {
  content: "";
  display: block;
  width: 140px;
  height: 6px;
  background: var(--brand);
  border-radius: 999px;
  margin-top: 12px;
}
@media (max-width: 576px) {
  .tour-title {
    font-size: clamp(24px, 6vw, 32px);
  }
  .tour-title::after {
    width: 100px;
    height: 5px;
  }
}

/* ===== Tour intro ===== */
.content-tour .tour-introduction {
  font-weight: 600;
}

/* ===== Tour Details (card + itinerary) ===== */
.detal-tour {
  background: var(--bg-card);
  border: 1px solid var(--bd-card);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: var(--shadow);
  margin-top: 10px;
}
.detal-tour > h2 {
  margin: 0 0 12px;
  padding-bottom: 8px;
  font-weight: 800;
  color: var(--ink);
  position: relative;
  font-size: 28px;
}
.detal-tour > h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 4px;
  border-radius: 999px;
  background: var(--brand);
}

/* itinerary */
.itinerary {
  margin-top: 8px;
}
.it-day > h4 {
  margin: 0 0 8px;
  font-weight: 800;
  color: var(--ink);
  font-size: 20px;
}
.it-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--bd-card);
}
.it-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--bd-card);
}
.it-time {
  font-weight: 800;
  color: var(--brand);
  white-space: nowrap;
}
.it-desc {
  color: #111827;
}
.it-srv .it-desc > strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
  font-weight: 800;
}
.it-note {
  color: #374151;
}
@media (max-width: 575.98px) {
  .it-row {
    grid-template-columns: 1fr;
  }
  .it-time {
    margin-bottom: 4px;
  }
}

/* ===== Spec grid (Inclusions/Exclusions/Know Before/Details Note) ===== */
/* Dùng chung 1 hệ thống .tour-spec-grid + .spec-card */
.tour-spec-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(12, 1fr);
  margin-top: 8px;
}
.spec-card {
  grid-column: span 6 / span 6;
  background: var(--bg-card);
  border: 1px solid var(--bd-card);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: var(--shadow);
}
.spec-card--full {
  grid-column: 1 / -1;
}
@media (max-width: 991.98px) {
  .spec-card {
    grid-column: span 12 / span 12;
  }
}

.spec-title {
  margin: 0 0 12px;
  padding-bottom: 8px;
  font-weight: 800;
  color: var(--ink);
  position: relative;
}
.spec-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 4px;
  border-radius: 999px;
  background: var(--brand);
}
/* Exclusions/Notes vàng */
.spec-card--yellow .spec-title::after {
  background: var(--accent);
}

.spec-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.spec-body li,
.spec-body p {
  position: relative;
  margin: 10px 0;
  padding-left: 24px;
}
.spec-card--green .spec-body li::before,
.spec-card--green .spec-body p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 3px rgba(18, 81, 35, 0.18);
}
.spec-card--yellow .spec-body li::before,
.spec-card--yellow .spec-body p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(244, 193, 0, 0.18);
}

/* ===== Price & Notes (1 phiên bản) ===== */
.price-tour {
  background: #214d2c;
  color: #f7faf7;
  border-radius: 14px;
  padding: 22px 26px;
  margin: 22px 0 10px;
  box-shadow: 0 10px 24px rgba(2, 6, 12, 0.08);
}
.price-tour h3 {
  color: var(--accent);
  font-weight: 900;
  letter-spacing: 0.2px;
  margin: 0 0 10px;
}
.price-tour > hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 8px 0 20px;
}

.price-tour h5 {
  color: #fff;
  font-weight: 800;
  margin: 0 0 8px;
}
.price-tour .priceSingle {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
  color: #e9f2ea;
}

.price-tour .col-lg-9 {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.price-tour .price-note > hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 14px 0 0;
}
@media (max-width: 991.98px) {
  .price-tour {
    padding: 16px;
  }
  .price-tour .col-lg-9 {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 14px;
    margin-top: 10px;
  }
  .price-tour .priceSingle span[itemprop="price"] {
    font-size: 34px;
  }
}
.badge-contact {
  display: inline-block;
  background: var(--accent);
  color: #1c2a44;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
}

/* ===== Booking CTA (1 phiên bản) ===== */
.booking-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--accent);
  border-radius: 24px;
  padding: 18px 22px;
  margin: 18px 0 6px;
  box-shadow: 0 8px 20px rgba(18, 81, 35, 0.08);
}
.booking-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand);
  color: #fff;
  border: 0;
  border-radius: 14px;
  padding: 14px 22px;
  min-height: 52px;
  font-weight: 800;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(18, 81, 35, 0.18);
  cursor: pointer;
}
.booking-cta__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(18, 81, 35, 0.22);
}
.booking-cta__btn:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.35);
}
.booking-cta__btn svg {
  width: 22px;
  height: 22px;
  color: #fff;
}
.booking-cta__tagline {
  margin: 0;
  color: #1c2a44;
  font-weight: 900;
  letter-spacing: 0.2px;
  font-size: 22px;
}
@media (max-width: 991.98px) {
  .booking-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .booking-cta__btn {
    width: 100%;
    font-size: 18px;
  }
  .booking-cta__tagline {
    font-size: 18px;
    text-align: center;
  }
}

/* ===== Option cards (API non-online) ===== */
.gyg-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(12, 1fr);
  margin-top: 16px;
  text-align: left;
}
.gyg-card {
  grid-column: span 6 / span 6;
  background: #fff;
  border: 1px solid var(--bd-card);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
}
@media (max-width: 991.98px) {
  .gyg-card {
    grid-column: span 12 / span 12;
  }
}
.gyg-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.gyg-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
  background: #eef7f0;
  color: var(--brand);
  border: 1px solid rgba(18, 81, 35, 0.18);
}
.gyg-title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
}
.gyg-desc {
  color: #111827;
  margin: 8px 0 10px;
}
.gyg-meta {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
  color: #475569;
}
.gyg-meta li {
  margin: 4px 0;
}
.gyg-price-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
}
.gyg-price {
  font-weight: 800;
  color: var(--ink);
}
.gyg-price small {
  font-weight: 600;
  color: #64748b;
}
.gyg-price--contact {
  color: var(--brand);
}
.gyg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(18, 81, 35, 0.18);
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.gyg-btn:hover {
  filter: brightness(1.05);
}
.gyg-form-slot {
  margin-top: 12px;
}

/* Inline form */
.venus-form {
  border-radius: 12px;
  border: 1px solid var(--bd-card);
  padding: 12px;
}
.venus-form .row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.venus-form .col {
  flex: 1 1 0;
  min-width: 200px;
}
.venus-form .half {
  flex-basis: calc(50% - 5px);
}
.venus-form .third {
  flex-basis: calc(33.333% - 7px);
}
.venus-form .full {
  flex-basis: 100%;
}
.venus-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}
.venus-form input,
.venus-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
}
.venus-form input:focus,
.venus-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(18, 81, 35, 0.12);
}
.venus-form .actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.vb-btn {
  background: var(--brand);
  color: #fff;
  border: 1px solid rgba(18, 81, 35, 0.18);
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
}
.vb-msg {
  font-size: 14px;
  color: #475569;
}

/* ===== Sidebar ===== */
.sidebar {
  display: block;
  gap: 18px;
}
.sidebar h3 {
  margin: 0 0 10px;
  font-weight: 900;
  color: var(--ink);
}
.sidebar h3::after {
  content: "";
  display: block;
  width: 84px;
  height: 4px;
  margin-top: 8px;
  border-radius: 6px;
  background: var(--brand);
}

.sidebar .sb-1 {
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 10px 24px rgba(2, 6, 12, 0.06);
  border: 1px solid #eef2f1;
}
.sidebar .sb-1 hr {
  border: 0;
  border-top: 1px solid #e9ecec;
  margin: 8px 0 14px;
}
.sidebar .list-why {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar .list-why li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
  color: var(--ink);
  line-height: 1.5;
}
.sidebar .list-why li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 3px rgba(18, 81, 35, 0.15) inset;
}
.sidebar .list-why li::after {
  content: "\2713";
  position: absolute;
  left: 3px;
  top: 1px;
  font-size: 14px;
  color: #fff;
  font-weight: 900;
}

/* TripAdvisor widgets 2 cột */
.sidebar .ta-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}
@media (max-width: 768px) {
  .sidebar .ta-two {
    grid-template-columns: 1fr;
  }
}
.sidebar .ta-two > div {
  background: #fff;
  border: 1px solid #eef2f1;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 10px 24px rgba(2, 6, 12, 0.06);
}
.sidebar .ta-two ul {
  display: block !important;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.sidebar .ta-two li {
  display: block !important;
  padding: 0;
  margin: 0;
}
.sidebar .ta-two img,
.sidebar .ta-two iframe {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Related tours card */
.relatedTourCd {
  display: block;
  background: #fff;
  border: 1px solid #eef2f1;
  border-radius: 16px;
  overflow: hidden;
  margin: 14px 0;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 24px rgba(2, 6, 12, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.relatedTourCd:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(2, 6, 12, 0.1);
}
.relatedTourCd .top {
  position: relative;
  line-height: 0;
}
.relatedTourCd .top img {
  width: 100%;
  height: auto;
  display: block;
}
.relatedTourCd .numDays {
  position: absolute;
  left: 12px;
  top: 12px;
  margin: 0;
  padding: 6px 10px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  border-radius: 999px;
}
.relatedTourCd .price {
  position: absolute;
  right: 12px;
  bottom: 12px;
  margin: 0;
  padding: 6px 10px;
  background: var(--accent);
  color: #16223a;
  font-weight: 900;
  font-size: 12px;
  border-radius: 10px;
}
.relatedTourCd .dtl {
  padding: 12px 14px 14px;
}
.relatedTourCd .dtl h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
}

/* Blog block */
.blogByTour {
  background: #fff;
  border: 1px solid #eef2f1;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(2, 6, 12, 0.06);
}
.blogByTour hr {
  border: 0;
  border-top: 1px solid #e9ecec;
}
.blogByTour ul {
  margin: 0;
  padding-left: 18px;
}
.blogByTour a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}
.blogByTour a:hover {
  text-decoration: underline;
}

/* ===== Datepicker (tối giản) ===== */
input[type="date"]::-webkit-calendar-picker-indicator {
  -webkit-appearance: none;
}
#ui-datepicker-div {
  background: #fff;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
  width: 300px;
}
.ui-datepicker-header {
  position: relative;
  padding: 5px 8px;
  background: var(--accent);
  font-weight: 700;
  color: #fff;
  font-size: 16px;
}
.ui-datepicker-prev,
.ui-datepicker-next {
  position: absolute;
  cursor: pointer;
  line-height: 37px;
  top: 0;
  bottom: 0;
  font-size: 14px;
}
.ui-datepicker-prev {
  left: 5px;
}
.ui-datepicker-next {
  right: 5px;
}
.ui-datepicker-title {
  text-align: center;
}
.ui-datepicker-calendar {
  width: 100%;
  text-align: center;
  font-weight: 500;
}
.ui-datepicker td span,
.ui-datepicker td a {
  padding-bottom: 1em;
}
.ui-datepicker td[title]::after {
  content: attr(title);
  display: block;
  position: relative;
  font-size: 0.8em;
  height: 1.25em;
  margin-top: -1.25em;
  text-align: right;
  padding-right: 0.25em;
}
.disable,
.enabled {
  color: #a0a0a0 !important;
}
/* Beautify "Contact us" inside Price & Notes */
.price-tour .priceSingle,
.price-tour .priceSingle:visited {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f4c100; /* vàng brand */
  color: #16223a !important; /* chữ đậm, không xanh */
  text-decoration: none;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 999px; /* pill */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.price-tour .priceSingle.breadcrumb-bar {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.16);
  filter: brightness(1.02);
}
/* (tuỳ chọn) icon giấy máy bay nếu đang dùng Bootstrap Icons */
.price-tour .priceSingle::before {
  content: "\f1d8";
  font-family: "bootstrap-icons";
  font-size: 18px;
  line-height: 1;
}
/* ==== API option cards (GYG-like) ==== */
.vb-optlist {
  display: grid;
  gap: 16px;
}
.vb-opt {
  border: 2px solid #c7d2fe;
  border-radius: 16px;
  padding: 16px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(2, 6, 12, 0.04);
}
.vb-opt__head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.vb-opt__radio {
  width: 18px;
  height: 18px;
  border: 2px solid #3b82f6;
  border-radius: 999px;
  box-shadow: inset 0 0 0 4px #fff;
  background: #3b82f6;
}
.vb-opt__title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
}
.vb-opt__desc {
  color: #111827;
  margin: 8px 0;
}
.vb-opt__facts {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  color: #334155;
}
.vb-opt__facts li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0;
}
.vb-opt__facts svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: #64748b;
}
.vb-opt__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.vb-opt__price {
  font-weight: 900;
  font-size: 20px;
  color: #0f172a;
}
.vb-btn--outline {
  background: #fff;
  color: #1d4ed8;
  border: 2px solid #93c5fd;
}
.vb-btn--outline:hover {
  filter: brightness(1.03);
}

/* ==== Modal ==== */
.vb-modal {
  position: fixed;
  inset: 0;
  display: none;
}
.vb-modal.is-open {
  display: block;
}
.vb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
}
.vb-dialog {
  position: relative;
  width: min(720px, 92vw);
  margin: 6vh auto;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 40px rgba(2, 6, 12, 0.24);
}
.vb-dialog__hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.vb-close {
  background: transparent;
  border: 0;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.vb-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 6px;
}
.vb-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px;
}
.vb-card h4 {
  margin: 0 0 6px;
  font-size: 16px;
}
.vb-card p {
  margin: 0 0 8px;
  color: #475569;
}
.vb-card .vb-btn {
  width: 100%;
}
/* mini styles cho widget */
.bw-wrap {
  background: #101e3a;
  color: #fff;
  border-radius: 20px;
  padding: 16px;
  margin: 16px 0;
}
.bw-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.bw-select,
.bw-date,
.bw-check {
  border-radius: 18px;
  height: 48px;
  display: flex;
  align-items: center;
}
.bw-select {
  background: #fff;
  color: #0f172a;
  border: 0;
  padding: 0 16px;
  cursor: pointer;
}
.bw-date {
  background: #fff;
  border: 0;
  padding: 0 14px;
  min-width: 240px;
  outline: none;
}
.bw-check {
  background: #436be8;
  border: 0;
  color: #fff;
  font-weight: 800;
  padding: 0 18px;
  cursor: pointer;
}
.bw-panel {
  position: relative;
}
.bw-pop {
  position: absolute;
  z-index: 20;
  top: 8px;
  left: 0;
  background: #fff;
  color: #0f172a;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.25);
  padding: 14px;
  min-width: 360px;
}
.bw-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid #eef2f7;
}
.bw-line:first-child {
  border-top: none;
}
.bw-ctrl {
  display: flex;
  gap: 8px;
  align-items: center;
}
.bw-btn {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  background: #fff;
  cursor: pointer;
}
.bw-num {
  width: 48px;
  text-align: center;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  height: 36px;
}
/* ===== Start time chips (PRIVATE) ===== */
.vb-time-label {
  font-weight: 800;
  margin: 6px 0 2px;
  color: #0f172a;
}
.vb-time-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 6px 0 12px;
}
.vb-time-chip {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #0f172a;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: box-shadow 0.18s ease, transform 0.06s ease,
    border-color 0.18s ease;
}
.vb-time-chip:hover {
  box-shadow: 0 0 0 3px rgba(18, 81, 35, 0.12);
}
.vb-time-chip.is-active {
  border-color: #125123;
  box-shadow: 0 0 0 3px rgba(18, 81, 35, 0.18);
}
.vb-time-chip[disabled] {
  background: #f1f5f9;
  color: #94a3b8;
  border-color: #e2e8f0;
  cursor: not-allowed;
  text-decoration: none;
  box-shadow: none;
}

/* ===== Request button: disabled look đồng nhất ===== */
.gyg-card .js-select-option.is-disabled,
.gyg-card .js-select-option[disabled],
.gyg-card .js-select-option[aria-disabled="true"] {
  background: #94a3b8 !important;
  border-color: #94a3b8 !important;
  color: #f8fafc !important;
  opacity: 0.8;
  pointer-events: none;
  cursor: not-allowed;
  box-shadow: none !important;
  transform: none !important;
}

/* ===== Elegant forms (local & pay-later) ===== */
.venus-form {
  background: #fff;
  border: 1px solid #e9edf1;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(2, 6, 12, 0.06);
}
.venus-form label {
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}
.venus-form input,
.venus-form textarea,
.venus-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d6dde4;
  border-radius: 12px;
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.venus-form input:focus,
.venus-form textarea:focus,
.venus-form select:focus {
  outline: none;
  border-color: #125123;
  box-shadow: 0 0 0 4px rgba(18, 81, 35, 0.14);
}
.venus-form .actions {
  margin-top: 6px;
}
.venus-form .vb-btn {
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 900;
  background: linear-gradient(180deg, #176433, #0f4a25);
  border-color: rgba(18, 81, 35, 0.22);
  box-shadow: 0 6px 18px rgba(18, 81, 35, 0.24);
  transition: transform 0.06s ease, filter 0.18s ease;
}
.venus-form .vb-btn:hover {
  filter: brightness(1.02);
}
.venus-form .vb-btn:active {
  transform: translateY(1px);
}
.vb-msg {
  font-size: 14px;
}

/* ===== Smooth swap (check availability) ===== */
.booking-dynamic {
  will-change: opacity, transform;
}
.vb-fade-enter {
  opacity: 0;
  transform: translateY(8px);
}
.vb-fade-enter-active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.vb-fade-exit {
  opacity: 1;
  transform: translateY(0);
}
.vb-fade-exit-active {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

/* Check button loading */
.bw-check {
  position: relative;
  transition: filter 0.18s ease, transform 0.06s ease;
}
.bw-check.is-loading {
  pointer-events: none;
  opacity: 0.85;
}
.bw-check.is-loading::after {
  content: "";
  position: absolute;
  right: 14px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-top-color: transparent;
  animation: vbspin 0.8s linear infinite;
}
@keyframes vbspin {
  to {
    transform: rotate(360deg);
  }
}
/* ===== Smooth submit states for booking forms ===== */
.venus-form {
  position: relative;
  overflow: clip;
}
.venus-form.is-submitting::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.65),
    rgba(255, 255, 255, 0.45)
  );
  backdrop-filter: blur(2px);
  border-radius: 12px;
  animation: vbFade 0.18s ease forwards;
  opacity: 0;
}
@keyframes vbFade {
  to {
    opacity: 1;
  }
}

.venus-form .vb-msg {
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.18s, transform 0.18s;
}
.venus-form .vb-msg.show {
  opacity: 1;
  transform: none;
}

.venus-form button[type="submit"].is-loading {
  position: relative;
  pointer-events: none;
  filter: saturate(0.85) brightness(0.98);
}
.venus-form button[type="submit"].is-loading::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 10px;
  vertical-align: -2px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-right-color: transparent;
  border-radius: 50%;
  animation: vbSpin 0.6s linear infinite;
}
@keyframes vbSpin {
  to {
    transform: rotate(360deg);
  }
}

/* Success card after submit */
.vb-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #14532d;
  border-radius: 14px;
  padding: 16px;
  margin-top: 12px;
  box-shadow: 0 10px 28px rgba(2, 6, 12, 0.07);
  display: flex;
  align-items: center;
  gap: 12px;
}
.vb-success .vb-ico {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #16a34a;
  color: #fff;
  font-weight: 900;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.15);
}
/* ===== Booking form — elegant card ===== */
.booking-dynamic .venus-form {
  background: #fff;
  border: 1px solid var(--bd-card);
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: var(--shadow);
  margin-top: 10px;
}

/* Header (title + sub) cho form */
.venus-form__hd {
  margin-bottom: 12px;
}
.venus-form__title {
  margin: 0 0 4px;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-size: clamp(20px, 2.2vw, 26px);
}
.venus-form__sub {
  margin: 0 0 12px;
  color: #475569;
  font-weight: 600;
}
.venus-form__hr {
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(2, 6, 12, 0.08),
    rgba(2, 6, 12, 0.02)
  );
  border: 0;
  margin: 0 0 6px;
}

/* Inputs – tinh gọn, thanh lịch */
.venus-form label {
  font-weight: 800;
  color: #0f172a;
}
.venus-form input,
.venus-form textarea,
.venus-form select {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px 14px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.venus-form input:focus,
.venus-form textarea:focus,
.venus-form select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(18, 81, 35, 0.12);
}

/* Hàng actions dưới cùng */
.venus-form .actions {
  border-top: 1px solid #f1f5f9;
  padding-top: 12px;
  margin-top: 6px;
}

/* Nút submit “sạch” hơn (vẫn giữ màu thương hiệu) */
.venus-form .vb-btn {
  border-radius: 14px;
  padding: 12px 18px;
  font-size: 16px;
  box-shadow: 0 6px 16px rgba(18, 81, 35, 0.16);
}
.venus-form .vb-btn:hover {
  transform: translateY(-1px);
}
/* ===== Modern Venus Form (elegant) ===== */
.venus-form {
  --ring: 18, 81, 35;
  background: linear-gradient(180deg, #ffffff, #fbfdfb);
  border: 1px solid #e6eee8;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(2, 6, 12, 0.06),
    0 1px 0 rgba(16, 24, 40, 0.02) inset;
  padding: 18px 18px 20px;
}
.venus-form__hd {
  margin-bottom: 6px;
}
.venus-form__title {
  margin: 4px 0 4px;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0f172a;
}
.venus-form__sub {
  margin: 0;
  color: #334155;
  font-size: 16px;
}
.venus-form__sub em {
  background: #e9edff;
  border-radius: 6px;
  padding: 0 6px;
  font-style: normal;
  font-weight: 800;
}
.venus-form__note {
  margin: 10px 0 14px;
  background: #101e3a;
  color: #e8edff;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 14px;
  line-height: 1.5;
}
.venus-form__hr {
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(18, 81, 35, 0.25),
    rgba(18, 81, 35, 0)
  );
  margin: 12px 0 6px;
}

/* Grid & columns */
.venus-form .row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 16px;
}
.venus-form .col {
  flex: 1 1 0;
  min-width: 260px;
}
.venus-form .half {
  flex-basis: calc(50% - 8px);
}
.venus-form .third {
  flex-basis: calc(33.333% - 11px);
}
.venus-form .full {
  flex-basis: 100%;
}

/* Labels */
.venus-form label {
  display: block;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.1px;
  margin: 6px 0 6px;
}

/* Inputs */
.venus-form input,
.venus-form textarea,
.venus-form select {
  width: 100%;
  background: #f6f8fb;
  border: 1.5px solid #e6e9ef;
  border-radius: 14px;
  padding: 12px 14px;
  height: 48px;
  line-height: 22px;
  font-size: 16px;
  transition: background 0.15s ease, border-color 0.2s ease,
    box-shadow 0.2s ease, transform 0.06s ease;
}
.venus-form textarea {
  min-height: 140px;
  height: auto;
  resize: vertical;
}
.venus-form input:hover,
.venus-form select:hover,
.venus-form textarea:hover {
  transform: translateY(-1px);
}
.venus-form input:focus,
.venus-form select:focus,
.venus-form textarea:focus {
  background: #fff;
  border-color: rgb(var(--ring));
  box-shadow: 0 0 0 6px rgba(var(--ring), 0.08), 0 4px 14px rgba(2, 6, 12, 0.06);
  outline: 0;
}

/* Actions & button */
.venus-form .actions {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 6px;
}
.venus-form .vb-btn {
  background: linear-gradient(180deg, #1d6a3a, #125123);
  color: #fff;
  border: 0;
  padding: 14px 20px;
  border-radius: 14px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(18, 81, 35, 0.22);
  cursor: pointer;
}
.venus-form .vb-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 12px 26px rgba(18, 81, 35, 0.26);
}

/* Subtle field separators on big screens */
@media (min-width: 992px) {
  .venus-form .third:nth-child(3n + 1) {
    padding-right: 4px;
  }
  .venus-form .third:nth-child(3n + 3) {
    padding-left: 4px;
  }
}

/* Messages */
.vb-msg {
  font-size: 14px;
}
.vb-msg--ok {
  color: #125123 !important;
  font-weight: 800;
}
.vb-msg--err {
  color: #b91c1c !important;
  font-weight: 800;
}
.venus-form {
  backdrop-filter: saturate(120%) blur(2px);
}
