/* Activities — Public pages
 * Design aligned with staycore chrome (same tokens, exp- prefix)
 * Covers: experiences list, experience detail, checkout, confirm
 */

/* ── Variables ── */
:root {
  --exp-red: #e61e4d;
  --exp-red-hover: #c4163b;
  --exp-green: #0f9f4b;
  --exp-heading: #101828;
  --exp-body: #344054;
  --exp-muted: #667085;
  --exp-subtle: #9aa3b2;
  --exp-border: #e7e9ee;
  --exp-border-input: #d9deea;
  --exp-bg: #f9fafb;
  --exp-white: #fff;
  --exp-radius-card: 14px;
  --exp-radius-btn: 12px;
  --exp-radius-input: 10px;
  --exp-shadow-card: 0 4px 20px rgba(16, 24, 40, 0.07);
  --exp-shadow-widget: 0 6px 30px rgba(16, 24, 40, 0.1);
}

/* ══════════════════════════════════════
   LIST PAGE
══════════════════════════════════════ */
.exp-list-wrap {
  max-width: 1280px;
  margin: 1.5rem auto 3rem;
  padding: 0 1.25rem;
}

/* Search bar */
.exp-list-search {
  background: var(--exp-white);
  border: 1px solid var(--exp-border);
  border-radius: var(--exp-radius-card);
  padding: 1rem 1.1rem;
  box-shadow: var(--exp-shadow-card);
  margin-bottom: 1.25rem;
}
.exp-list-search-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 0.65rem;
  align-items: end;
}
.exp-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.exp-field span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--exp-body);
}
.exp-field input,
.exp-field select {
  height: 44px;
  border: 1px solid var(--exp-border-input);
  border-radius: var(--exp-radius-input);
  padding: 0 0.7rem;
  font-size: 0.93rem;
  color: var(--exp-heading);
  background: var(--exp-white);
  font-family: inherit;
}
.exp-field input:focus,
.exp-field select:focus {
  outline: none;
  border-color: var(--exp-red);
  box-shadow: 0 0 0 3px rgba(230, 30, 77, 0.1);
}
.exp-search-btn {
  height: 44px;
  border: 0;
  border-radius: var(--exp-radius-input);
  padding: 0 1.25rem;
  background: var(--exp-red);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.93rem;
  white-space: nowrap;
}
.exp-search-btn:hover {
  background: var(--exp-red-hover);
}

/* Toolbar */
.exp-list-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.exp-list-toolbar h1 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--exp-heading);
}
.exp-list-toolbar p {
  margin: 0.2rem 0 0;
  color: var(--exp-muted);
  font-size: 0.9rem;
}

/* Card grid */
.exp-cards {
  display: grid;
  gap: 0.85rem;
}

.exp-card {
  display: grid;
  grid-template-columns: 240px 1fr 200px;
  background: var(--exp-white);
  border: 1px solid var(--exp-border);
  border-radius: var(--exp-radius-card);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition:
    box-shadow 0.2s,
    border-color 0.2s;
}
.exp-card:hover {
  box-shadow: 0 8px 32px rgba(16, 24, 40, 0.12);
  border-color: #d0d5dd;
}

/* Card image */
.exp-card-img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
  display: block;
}
.exp-card-img--ph {
  min-height: 170px;
  display: block;
  width: 100%;
}
.exp-card-img--ph-0 {
  background: linear-gradient(135deg, #ffe0e6, #ffb3c1, #ff6b8a);
}
.exp-card-img--ph-1 {
  background: linear-gradient(135deg, #e0eaff, #c2d4ff, #7ea8ff);
}
.exp-card-img--ph-2 {
  background: linear-gradient(135deg, #e0fff4, #b3ffe0, #5aedc0);
}
.exp-card-img--ph-3 {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2, #ffb347);
}
.exp-card-img--ph-4 {
  background: linear-gradient(135deg, #f0e0ff, #e0c2ff, #c77dff);
}

/* Card main */
.exp-card-main {
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.exp-card-main h2 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--exp-heading);
}
.exp-card-supplier {
  margin: 0 0 0.45rem;
  font-size: 0.83rem;
  color: var(--exp-muted);
}
.exp-card-desc {
  margin: 0 0 0.55rem;
  font-size: 0.84rem;
  color: var(--exp-body);
  line-height: 1.55;
  flex: 1;
}
.exp-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.exp-card-tag {
  font-size: 0.74rem;
  background: #eef4ff;
  border: 1px solid #d6e6ff;
  color: #15407d;
  padding: 0.2rem 0.4rem;
  border-radius: 999px;
}

/* Card side (price) */
.exp-card-side {
  border-left: 1px solid #eef0f5;
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  justify-content: center;
  align-items: flex-end;
}
.exp-card-duration {
  font-size: 0.84rem;
  color: var(--exp-muted);
  text-align: right;
}
.exp-card-pax {
  font-size: 0.82rem;
  color: var(--exp-muted);
  text-align: right;
}
.exp-card-price-label {
  font-size: 0.75rem;
  color: var(--exp-muted);
  margin: 0;
}
.exp-card-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--exp-heading);
  margin: 0;
}
.exp-card-price-unit {
  font-size: 0.78rem;
  color: var(--exp-muted);
}
.exp-card-cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 36px;
  padding: 0 0.85rem;
  border-radius: 8px;
  background: var(--exp-green);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 0.35rem;
}
.exp-card-cta:hover {
  opacity: 0.88;
}

/* Pagination */
.exp-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  background: var(--exp-white);
  border: 1px solid var(--exp-border);
  border-radius: var(--exp-radius-card);
  padding: 0.55rem 0.6rem;
  margin-top: 0.85rem;
}
.exp-pg-pages {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}
.exp-pg-btn {
  height: 34px;
  min-width: 34px;
  border: 1px solid var(--exp-border-input);
  background: var(--exp-white);
  color: var(--exp-body);
  border-radius: 8px;
  padding: 0 0.6rem;
  cursor: pointer;
  font-size: 0.88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.exp-pg-btn:disabled,
.exp-pg-btn.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}
.exp-pg-btn.is-active {
  background: var(--exp-red);
  border-color: var(--exp-red);
  color: #fff;
}
.exp-pg-info {
  font-size: 0.88rem;
  color: var(--exp-muted);
}

/* Empty state */
.exp-empty {
  background: var(--exp-white);
  border: 1px solid var(--exp-border);
  border-radius: var(--exp-radius-card);
  padding: 3rem 1.5rem;
  text-align: center;
  color: var(--exp-muted);
}
.exp-empty p {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
}

/* ══════════════════════════════════════
   DETAIL PAGE
══════════════════════════════════════ */
.exp-detail {
  max-width: 1180px;
  margin: 1.5rem auto 3rem;
  padding: 0 1.25rem;
}

.exp-breadcrumb {
  margin-bottom: 0.75rem;
}
.exp-breadcrumb a {
  color: var(--exp-muted);
  font-size: 0.88rem;
  text-decoration: none;
}
.exp-breadcrumb a:hover {
  color: var(--exp-red);
  text-decoration: underline;
}

.exp-detail-name {
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--exp-heading);
}
.exp-detail-meta {
  color: var(--exp-muted);
  font-size: 0.92rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  align-items: center;
}
.exp-detail-meta-sep {
  opacity: 0.5;
}
.exp-detail-rating {
  color: var(--exp-red);
  font-weight: 700;
}

/* Gallery */
.exp-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 185px 185px;
  gap: 0.5rem;
  border-radius: 18px;
  overflow: hidden;
  margin: 1.25rem 0 2.25rem;
}
.exp-gallery-cell {
  overflow: hidden;
}
.exp-gallery-cell--main {
  grid-row: 1 / 3;
}
.exp-gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.exp-gallery-cell:hover img {
  transform: scale(1.03);
}
.exp-gallery-grad {
  width: 100%;
  height: 100%;
}
.exp-gallery-grad--0 {
  background: linear-gradient(135deg, #ffe0e6, #ffb3c1, #ff6b8a);
}
.exp-gallery-grad--1 {
  background: linear-gradient(135deg, #e0eaff, #c2d4ff, #7ea8ff);
}
.exp-gallery-grad--2 {
  background: linear-gradient(135deg, #e0fff4, #b3ffe0, #5aedc0);
}
.exp-gallery-grad--3 {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2, #ffb347);
}
.exp-gallery-grad--4 {
  background: linear-gradient(135deg, #f0e0ff, #e0c2ff, #c77dff);
}

/* Two-column body */
.exp-detail-body {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.75rem;
  align-items: start;
}
.exp-detail-content {
  display: grid;
  gap: 1.75rem;
}
.exp-divider {
  border: 0;
  border-top: 1px solid var(--exp-border);
  margin: 0;
}

/* Highlights */
.exp-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
}
.exp-highlight-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.exp-highlight-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.exp-highlight-item strong {
  display: block;
  font-size: 0.96rem;
  color: var(--exp-heading);
  font-weight: 700;
}
.exp-highlight-item p {
  margin: 0.15rem 0 0;
  font-size: 0.86rem;
  color: var(--exp-muted);
}

/* Description */
.exp-description h2 {
  margin: 0 0 0.8rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--exp-heading);
}
.exp-description p {
  color: var(--exp-body);
  line-height: 1.75;
  margin: 0;
}

/* Highlights list (bullet) */
.exp-highlights-list h2 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--exp-heading);
}
.exp-highlights-list ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.4rem;
  color: var(--exp-body);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Includes / Excludes */
.exp-included h2 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--exp-heading);
}
.exp-included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
}
.exp-included-item {
  font-size: 0.88rem;
  color: var(--exp-body);
  display: flex;
  gap: 0.5rem;
}
.exp-included-item--yes::before {
  content: "✓";
  color: var(--exp-green);
  font-weight: 700;
}
.exp-included-item--no::before {
  content: "✗";
  color: var(--exp-red);
  font-weight: 700;
}

/* Reviews */
.exp-reviews h2 {
  margin: 0 0 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--exp-heading);
}
.exp-reviews-score {
  color: var(--exp-red);
}
.exp-reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.exp-review-card {
  background: var(--exp-bg);
  border-radius: 14px;
  padding: 1rem 1.1rem;
}
.exp-review-title {
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0 0 0.4rem;
  color: var(--exp-heading);
}
.exp-review-body {
  font-size: 0.86rem;
  color: var(--exp-body);
  margin: 0 0 0.6rem;
  line-height: 1.6;
}
.exp-review-meta {
  font-size: 0.78rem;
  color: var(--exp-subtle);
  margin: 0;
}

/* Meeting point */
.exp-meeting h2 {
  margin: 0 0 0.8rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--exp-heading);
}
.exp-meeting-box {
  background: linear-gradient(175deg, #d7ecff, #eef7ff);
  border-radius: 16px;
  border: 1px solid #c6dcf7;
  padding: 1.75rem 1.5rem;
  text-align: center;
  color: #0b3f7a;
}
.exp-meeting-box p {
  margin: 0.35rem 0;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ── Booking widget ── */
.exp-widget-wrap {
  position: sticky;
  top: 100px;
}
.exp-widget {
  background: var(--exp-white);
  border: 1px solid var(--exp-border);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: var(--exp-shadow-widget);
}
.exp-widget-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin: 0 0 1.1rem;
}
.exp-widget-price strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--exp-heading);
}
.exp-widget-price span {
  font-size: 0.88rem;
  color: var(--exp-muted);
}
.exp-widget-fields {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}
.exp-widget-field {
  border: 1px solid var(--exp-border-input);
  border-radius: var(--exp-radius-input);
  overflow: hidden;
}
.exp-widget-field-inner {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.6rem 0.8rem;
}
.exp-widget-field-inner span {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--exp-body);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.exp-widget-field-inner input,
.exp-widget-field-inner select {
  border: 0;
  outline: none;
  font-size: 0.95rem;
  color: var(--exp-heading);
  background: transparent;
  width: 100%;
  font-family: inherit;
}
.exp-widget-btn {
  width: 100%;
  height: 54px;
  border: 0;
  border-radius: var(--exp-radius-btn);
  background: var(--exp-red);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.exp-widget-btn:hover {
  background: var(--exp-red-hover);
}
.exp-widget-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--exp-subtle);
  margin: 0.75rem 0 0;
}
.exp-widget-divider {
  border: 0;
  border-top: 1px solid var(--exp-border);
  margin: 0.85rem 0;
}
.exp-widget-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--exp-body);
}
.exp-widget-row strong {
  color: var(--exp-heading);
}

/* ══════════════════════════════════════
   BOOKING PAGES (checkout + confirm)
══════════════════════════════════════ */
.exp-booking-wrap,
.exp-confirm-wrap {
  max-width: 1100px;
  margin: 1.5rem auto 3rem;
  padding: 0 1.25rem;
}

/* Stepper */
.exp-stepper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2.25rem;
}
.exp-step {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--exp-subtle);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
}
.exp-step--active {
  background: #fff0f3;
  color: var(--exp-red);
  border: 1.5px solid #ffcdd7;
}
.exp-step--done {
  color: #027a48;
}
.exp-step-sep {
  flex: 1;
  height: 1px;
  background: var(--exp-border);
  min-width: 1rem;
}

/* Checkout body */
.exp-booking-body {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
.exp-booking-form-wrap h1 {
  margin: 0 0 1.4rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--exp-heading);
}
.exp-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 1.4rem;
}
.exp-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.exp-form-field--full {
  grid-column: 1 / -1;
}
.exp-form-field span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--exp-body);
}
.exp-form-field em {
  color: var(--exp-red);
  font-style: normal;
}
.exp-form-field input,
.exp-form-field textarea {
  border: 1.5px solid var(--exp-border-input);
  border-radius: var(--exp-radius-input);
  padding: 0.7rem 0.9rem;
  font-size: 0.95rem;
  color: var(--exp-heading);
  width: 100%;
  box-sizing: border-box;
  font-family: inherit;
  transition: border-color 0.15s;
}
.exp-form-field input:focus,
.exp-form-field textarea:focus {
  outline: none;
  border-color: var(--exp-red);
  box-shadow: 0 0 0 3px rgba(230, 30, 77, 0.1);
}
.exp-form-field textarea {
  resize: vertical;
  line-height: 1.6;
}

.exp-booking-error {
  padding: 0.8rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  background: #fff0f3;
  border: 1.5px solid #ffcdd7;
  color: #9b1c3a;
  display: none;
}
.exp-booking-error.is-visible {
  display: block;
}

.exp-booking-submit {
  width: 100%;
  height: 54px;
  border: 0;
  border-radius: var(--exp-radius-btn);
  background: var(--exp-red);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}
.exp-booking-submit:hover {
  background: var(--exp-red-hover);
}
.exp-booking-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.exp-booking-legal {
  font-size: 0.78rem;
  color: var(--exp-subtle);
  text-align: center;
  margin: 0.9rem 0 0;
  line-height: 1.6;
}
.exp-booking-legal a {
  color: var(--exp-muted);
}

/* Checkout summary card */
.exp-summary-card {
  background: var(--exp-white);
  border: 1px solid var(--exp-border);
  border-radius: 18px;
  overflow: hidden;
  position: sticky;
  top: 100px;
  box-shadow: var(--exp-shadow-widget);
}
.exp-summary-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}
.exp-summary-img--ph {
  height: 190px;
  background: linear-gradient(135deg, #ffe0e6, #ffb3c1, #ff6b8a);
}
.exp-summary-info {
  padding: 1rem 1.1rem 0.8rem;
}
.exp-summary-name {
  margin: 0 0 0.25rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--exp-heading);
}
.exp-summary-area {
  margin: 0;
  font-size: 0.86rem;
  color: var(--exp-muted);
}
.exp-summary-card hr {
  border: 0;
  border-top: 1px solid #eef0f5;
  margin: 0;
}
.exp-summary-details {
  padding: 0.85rem 1.1rem;
  display: grid;
  gap: 0.45rem;
}
.exp-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--exp-body);
}
.exp-summary-row strong {
  color: var(--exp-heading);
}
.exp-summary-price {
  padding: 0.75rem 1.1rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--exp-bg);
}
.exp-summary-price p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--exp-muted);
}
.exp-summary-price strong {
  font-size: 1.05rem;
  color: var(--exp-heading);
}

/* ── Confirm ── */
.exp-confirm-card {
  max-width: 580px;
  margin: 2rem auto 0;
  background: var(--exp-white);
  border: 1px solid var(--exp-border);
  border-radius: 22px;
  padding: 2.75rem 2.25rem;
  text-align: center;
  box-shadow: 0 6px 32px rgba(16, 24, 40, 0.08);
}
.exp-confirm-icon {
  font-size: 3.5rem;
  margin-bottom: 1.1rem;
}
.exp-confirm-card h1 {
  margin: 0 0 0.6rem;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--exp-heading);
}
.exp-confirm-ref {
  color: var(--exp-muted);
  margin: 0 0 1.75rem;
  font-size: 0.95rem;
}
.exp-confirm-ref strong {
  color: var(--exp-red);
  font-size: 1.1rem;
}
.exp-confirm-summary {
  background: var(--exp-bg);
  border-radius: 14px;
  padding: 1.1rem 1.4rem;
  margin-bottom: 1.75rem;
  text-align: left;
}
.exp-confirm-exp {
  font-weight: 700;
  margin: 0 0 0.3rem;
  font-size: 1rem;
  color: var(--exp-heading);
}
.exp-confirm-location {
  color: var(--exp-muted);
  margin: 0 0 0.6rem;
  font-size: 0.88rem;
}
.exp-confirm-summary p {
  margin: 0.3rem 0;
  font-size: 0.9rem;
  color: var(--exp-body);
}
.exp-confirm-guest {
  font-style: italic;
  color: var(--exp-muted);
}
.exp-confirm-steps {
  text-align: left;
  margin-bottom: 2.25rem;
}
.exp-confirm-steps h2 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.85rem;
  color: var(--exp-heading);
}
.exp-confirm-steps ol {
  margin: 0;
  padding-left: 1.35rem;
  display: grid;
  gap: 0.6rem;
}
.exp-confirm-steps li {
  font-size: 0.9rem;
  color: var(--exp-body);
  line-height: 1.65;
}
.exp-confirm-actions {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Shared buttons */
.exp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 1.6rem;
  border-radius: var(--exp-radius-btn);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  transition: opacity 0.15s;
}
.exp-btn:hover {
  opacity: 0.88;
}
.exp-btn--primary {
  background: var(--exp-red);
  color: #fff;
}
.exp-btn--secondary {
  background: var(--exp-white);
  border: 1.5px solid var(--exp-border-input);
  color: var(--exp-body);
}
.exp-btn--green {
  background: var(--exp-green);
  color: #fff;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .exp-list-search-grid {
    grid-template-columns: 1fr 1fr;
  }
  .exp-search-btn {
    grid-column: span 2;
  }
  .exp-detail-body {
    grid-template-columns: 1fr;
  }
  .exp-widget-wrap {
    position: static;
  }
}

@media (max-width: 860px) {
  .exp-booking-body {
    grid-template-columns: 1fr;
  }
  .exp-summary-card {
    position: static;
  }
  .exp-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .exp-card {
    grid-template-columns: 1fr;
  }
  .exp-card-img,
  .exp-card-img--ph {
    min-height: 200px;
    height: 200px;
  }
  .exp-card-side {
    align-items: flex-start;
    border-left: 0;
    border-top: 1px solid #eef0f5;
  }
  .exp-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 140px 140px 140px;
  }
  .exp-gallery-cell--main {
    grid-column: 1 / 3;
    grid-row: 1;
  }
  .exp-reviews-grid {
    grid-template-columns: 1fr;
  }
  .exp-detail-name {
    font-size: 1.35rem;
  }
  .exp-included-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .exp-confirm-card {
    padding: 1.75rem 1.25rem;
  }
  .exp-stepper {
    flex-wrap: wrap;
    gap: 0.4rem;
  }
  .exp-step-sep {
    display: none;
  }
  .exp-list-search-grid {
    grid-template-columns: 1fr;
  }
  .exp-search-btn {
    grid-column: span 1;
  }
}
