/* ── Hero Search Form ── */
.mw-hero__search-bar {
  width: 100%;
  max-width: 1000px;
  z-index: 6;
  pointer-events: auto;
  padding: 0 1rem;
}

.mw-hero__search-card {
  background: none;
  border-radius: 0;
  padding: 0;
  border: none;
  backdrop-filter: none;
  box-shadow: none !important;
}

/* Labels */
.mw-hero__search-card .form-label {
  font-size: var(--mw-fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mw-text-muted);
  margin-bottom: 0.4rem;
}

/* Inputs + selects uniform height */
.mw-hero__search-card .form-control,
.mw-hero__search-card .form-select {
  height: 48px;
  border: 1.5px solid var(--mw-border);
  border-radius: 0;
  font-size: var(--mw-fs-sm);
  color: var(--mw-text);
  padding: 0.5rem 1rem;
  transition:
    border-color var(--mw-transition),
    box-shadow var(--mw-transition);
}
.mw-hero__search-card .form-control:focus,
.mw-hero__search-card .form-select:focus {
  border-color: var(--mw-primary);
  box-shadow: 0 0 0 3px rgba(196, 137, 106, 0.15);
  outline: none;
}

/* Guest count select — override BS5 caret with FA */
.mw-hero__search-card .form-select {
  background-image: none;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.5rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%238A7A72' d='M201.4 374.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 306.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z'/%3E%3C/svg%3E")
    no-repeat right 0.9rem center / 12px 12px #fff;
}

/* Checkbox dropdown match input height */
.mw-hero__search-card .mw-checkbox-dropdown__toggle {
  height: 48px;
  border: 1.5px solid var(--mw-border);
  border-radius: 0;
  font-size: var(--mw-fs-sm);
  padding: 0.5rem 1rem;
}
.mw-hero__search-card .mw-checkbox-dropdown__toggle:hover,
.mw-hero__search-card .mw-checkbox-dropdown__toggle:focus {
  border-color: var(--mw-primary);
  box-shadow: 0 0 0 3px rgba(196, 137, 106, 0.15);
  outline: none;
}

/* Search button match height */
.mw-hero__search-card .btn-mw-primary {
  height: 48px;
  font-size: var(--mw-fs-sm);
  font-weight: 600;
  border-radius: 0;
  letter-spacing: 0.03em;
}

/* Unified rounded bar — outer corners only */
@media (min-width: 992px) {
  .mw-hero__search-card .row > [class*="col-lg"]:first-child .mw-checkbox-dropdown__toggle,
  .mw-hero__search-card .row > [class*="col-lg"]:first-child .form-control,
  .mw-hero__search-card .row > [class*="col-lg"]:first-child .form-select {
    border-radius: var(--mw-radius-md) 0 0 var(--mw-radius-md);
  }
  .mw-hero__search-card .row > [class*="col-lg"]:last-child .btn-mw-primary {
    border-radius: 0 var(--mw-radius-md) var(--mw-radius-md) 0;
  }
}

/* Mobile: full radius per field when stacked */
@media (max-width: 991px) {
  .mw-hero__search-card .form-control,
  .mw-hero__search-card .form-select,
  .mw-hero__search-card .mw-checkbox-dropdown__toggle,
  .mw-hero__search-card .btn-mw-primary {
    border-radius: var(--mw-radius-md);
  }
}


/* ── Hero ── */
.mw-hero {
  position: relative;
}
.mw-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
  pointer-events: none;
}
.mw-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.mw-hero__carousel .carousel-control-prev,
.mw-hero__carousel .carousel-control-next,
.mw-hero__carousel .carousel-indicators {
  z-index: 10;
}
.mw-hero__carousel {
  max-height: 580px;
  overflow: hidden;
}
.mw-hero__img {
  height: 580px;
  object-fit: cover;
}
.mw-hero__caption {
  /* background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.55), transparent); */
  width: 100%;
  padding: 2.5rem 2rem 1.5rem;
  text-align: center;
  pointer-events: auto;
}
.mw-hero__caption h1 {
  font-family: var(--mw-font-heading);
  font-size: var(--mw-fs-3xl);
  color: var(--mw-surface);
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.mw-hero__caption p {
  font-size: var(--mw-fs-lg);
  font-weight: 600;
  color: var(--mw-surface);
  opacity: 0.9;
  margin-bottom: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
.mw-hero__video-wrap {
  position: relative;
  height: 580px;
  overflow: hidden;
}
.mw-hero__video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 177.78vh;
  min-width: 100%;
  height: 56.25vw;
  min-height: 580px;
  border: 0;
  pointer-events: none;
}
.mw-hero__video-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: #000;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.mw-hero__video-cover.is-ending {
  opacity: 1;
}
.mw-hero__fallback {
  height: 500px;
  background: linear-gradient(135deg, var(--mw-secondary) 0%, #5a3535 100%);
}
.mw-hero__search-card {
  background: none;
  border-radius: 0;
  padding: 0;
  backdrop-filter: none;
  box-shadow: none !important;
}

/* ── Featured Categories Section ── */
.feat-cats-section {
  background: var(--mw-bg);
  padding: var(--mw-space-xl) 0;
}
.feat-cats-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Section header */
.section-header {
  margin-bottom: 2.5rem;
}
.section-label {
  font-size: var(--mw-fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mw-primary);
  margin-bottom: 0.4rem;
}
.section-header .section-title {
  font-family: var(--mw-font-heading);
  font-size: var(--mw-fs-3xl);
  font-weight: 700;
  color: var(--mw-secondary);
  margin-bottom: 0.75rem;
}
.font-heading {
  font-family: var(--mw-font-heading) !important;
}
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--mw-primary);
  font-size: 1.1rem;
  margin-top: 0.5rem;
}
.ornament::before,
.ornament::after {
  content: "";
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--mw-primary);
  opacity: 0.4;
}

/* Grid — 4 per row */
.feat-cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 991px) {
  .feat-cats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .feat-cats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

/* Vendor card */
.vendor-card {
  display: block;
  border-radius: var(--mw-radius-lg);
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--mw-shadow-sm);
  transition:
    box-shadow var(--mw-transition),
    transform var(--mw-transition);
}
.vendor-card:hover {
  box-shadow: var(--mw-shadow-md);
  transform: translateY(-4px);
}
.vendor-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--mw-primary-light);
}
.vendor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.vendor-card:hover .vendor-image img {
  transform: scale(1.06);
}
.vendor-image__fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mw-primary);
}

/* Name strip — always visible at bottom */
.vendor-name-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(45, 36, 36, 0.75) 0%,
    transparent 100%
  );
  padding: 1.75rem 0.85rem 0.75rem;
  z-index: 2;
  transition: opacity var(--mw-transition);
}
.vendor-card:hover .vendor-name-strip {
  opacity: 0;
}
.vendor-name {
  font-family: var(--mw-font-heading);
  font-size: var(--mw-fs-lg);
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.25;
}

/* Hover overlay — "View Vendors" pill */
.feat-cat-hover {
  position: absolute;
  inset: 0;
  background: rgba(196, 137, 106, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--mw-transition);
  z-index: 3;
}
.vendor-card:hover .feat-cat-hover {
  opacity: 1;
}
.feat-cat-pill {
  background: #fff;
  color: var(--mw-primary-dark);
  font-size: var(--mw-fs-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.45rem 1.25rem;
  border-radius: var(--mw-radius-pill);
}

/* Vendor card extras */
.vendor-category-tag {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  background: rgba(196, 137, 106, 0.88);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: var(--mw-radius-pill);
  z-index: 2;
  margin: 0;
  line-height: 1.5;
}
.vendor-location {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0.15rem 0 0;
  display: flex;
  align-items: center;
  gap: 3px;
  line-height: 1.3;
}

/* ── Category hero (vendor-category taxonomy with banner) ── */
.category-hero {
  position: relative;
  height: 340px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
}
.category-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30, 20, 20, 0.75) 0%,
    rgba(0, 0, 0, 0.25) 100%
  );
}
.category-hero-overlay {
  position: relative;
  z-index: 1;
  padding: 2rem 2rem 2.25rem;
}
.hero-label-sm {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mw-primary-light);
  margin: 0 0 0.35rem;
}
.category-hero-title {
  font-family: var(--mw-font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.15;
}

/* ── Vendor listing search bar ── */
.vl-search-bar {
  background: var(--mw-surface, #faf8f5);
  padding: 1rem 0;
  border-bottom: 1px solid var(--mw-border, #e8e0d8);
}
.vl-search-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}
/* custom select trigger */
.vl-cat-select-wrap {
  flex: 1;
  position: relative;
}
.vl-cat-select-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 2.5rem;
  padding: 0 0.85rem;
  background: #fff;
  border: 1px solid var(--mw-border, #e8e0d8);
  border-radius: 6px;
  font-family: var(--mw-font-body);
  font-size: var(--mw-fs-base, 1rem);
  color: var(--mw-text, #333);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s;
}
.vl-cat-select-btn:focus,
.vl-cat-select-wrap.is-open .vl-cat-select-btn {
  outline: none;
  border-color: var(--mw-accent, #b8945a);
}
.vl-cat-select-label { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.vl-cat-chevron { font-size: 0.75rem; transition: transform 0.2s; flex-shrink: 0; }
.vl-cat-select-wrap.is-open .vl-cat-chevron { transform: rotate(180deg); }
/* dropdown menu */
.vl-cat-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid var(--mw-border, #e8e0d8);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 200;
  padding: 0.5rem;
}
.vl-cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.1rem 0.5rem;
}
.vl-cat-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.6rem;
  background: none;
  border: none;
  font-family: var(--mw-font-body);
  font-size: var(--mw-fs-sm, 0.9rem);
  color: var(--mw-text, #333);
  cursor: pointer;
  text-align: left;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
  width: 100%;
}
.vl-cat-option::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mw-accent, #b8945a);
  flex-shrink: 0;
}
.vl-cat-option:hover { background: var(--mw-surface, #faf8f5); color: var(--mw-accent, #b8945a); }
.vl-cat-option.is-active { font-weight: 700; color: var(--mw-accent, #b8945a); }
.vl-cat-option.is-active::before { background: var(--mw-accent, #b8945a); box-shadow: 0 0 0 2px rgba(184,148,90,0.3); }
@media (max-width: 600px) {
  .vl-search-form { flex-direction: column; }
  .vl-cat-select-wrap { width: 100%; }
  .vl-cat-grid { grid-template-columns: 1fr; }
  .vl-filter-search-btn { width: 100%; justify-content: center; }
}

/* ── Vendor listing body & grid ── */
.vl-body {
  padding: var(--mw-space-2xl) 0;
}
.vl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
@media (max-width: 1199px) {
  .vl-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .vl-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 479px) {
  .vl-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.85rem;
  }
}
.vl-empty {
  text-align: center;
  color: var(--mw-text-muted);
  padding: 4rem 1rem;
  font-size: var(--mw-fs-lg);
}

/* ── Venue listing filter bar ── */
.vl-filter-section {
  padding: 1.5rem 1rem;
}
.vl-filter-inner {
  background: var(--mw-surface);
  border: 1px solid var(--mw-border);
  border-radius: var(--mw-radius-lg);
  box-shadow: var(--mw-shadow-sm);
  padding: 1.25rem 1.5rem;
}
.vl-filter-main {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: flex-end;
}
.vl-filter-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1 1 160px;
  min-width: 140px;
  position: relative;
}
.vl-search-field {
  flex: 2 1 220px;
}
.vl-filter-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--mw-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.vl-filter-input,
.vl-filter-select {
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--mw-border);
  border-radius: var(--mw-radius-md);
  font-size: var(--mw-fs-sm);
  background: var(--mw-bg);
  color: var(--mw-text);
  transition: border-color 0.2s ease;
  height: 2.5rem;
  width: 100%;
}
.vl-filter-input:focus,
.vl-filter-select:focus {
  outline: none;
  border-color: var(--mw-primary);
}
.vl-filter-field .mw-checkbox-dropdown__toggle {
  height: 2.5rem;
  font-size: var(--mw-fs-sm);
  background: var(--mw-bg);
  border-color: var(--mw-border);
  border-radius: var(--mw-radius-md);
  padding: 0.5rem 0.75rem;
}
.vl-filter-field .mw-checkbox-dropdown__toggle:hover,
.vl-filter-field .mw-checkbox-dropdown__toggle:focus {
  border-color: var(--mw-primary);
  box-shadow: none;
}
.vl-filter-search-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--mw-primary);
  color: #fff;
  border: none;
  border-radius: var(--mw-radius-pill);
  padding: 0.5rem 1.25rem;
  font-size: var(--mw-fs-sm);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s ease;
  align-self: flex-end;
  height: 2.5rem;
  white-space: nowrap;
}
.vl-filter-search-btn:hover {
  background: var(--mw-primary-dark);
}
.vl-filter-reset-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--mw-text-muted);
  font-size: var(--mw-fs-sm);
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--mw-border);
  border-radius: var(--mw-radius-pill);
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
  align-self: flex-end;
  height: 2.5rem;
  white-space: nowrap;
}
.vl-filter-reset-btn:hover {
  color: var(--mw-primary);
  border-color: var(--mw-primary);
}

/* More filters row */
.vl-more-filters-row {
  margin-top: 0.75rem;
  text-align: center;
}
.vl-more-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  border: none;
  color: var(--mw-primary);
  font-size: var(--mw-fs-sm);
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}
.vl-more-toggle i {
  transition: transform 0.25s ease;
}
.vl-more-toggle.is-open i {
  transform: rotate(180deg);
}
.vl-extra-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--mw-border);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.35s ease,
    opacity 0.3s ease,
    padding-top 0.3s ease;
  padding-top: 0;
  border-top: none;
}
.vl-extra-filters.is-open {
  max-height: 300px;
  overflow: visible;
  opacity: 1;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--mw-border);
}
.vl-extra-filters .vl-filter-field {
  flex: 1 1 180px;
}
.vl-filter-wide {
  flex: 1.5 1 200px;
}

/* Celebration dropdown */
.celebration-field {
  position: relative;
}
.celebration-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--mw-border);
  border-radius: var(--mw-radius-md);
  background: var(--mw-bg);
  color: var(--mw-text);
  font-size: var(--mw-fs-sm);
  cursor: pointer;
  height: 2.5rem;
  width: 100%;
  text-align: left;
  gap: 0.5rem;
}
.celebration-trigger:hover {
  border-color: var(--mw-primary);
}
.celebration-trigger span {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.celebration-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--mw-surface);
  border: 1px solid var(--mw-border);
  border-radius: var(--mw-radius-md);
  box-shadow: var(--mw-shadow-md);
  z-index: 100;
  padding: 0.5rem;
  max-height: 220px;
  overflow-y: auto;
}
.celebration-dropdown.is-open {
  display: block;
}
.celebration-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.5rem;
  font-size: var(--mw-fs-sm);
  cursor: pointer;
  border-radius: var(--mw-radius-sm);
  transition: background 0.15s ease;
}
.celebration-check:hover {
  background: var(--mw-primary-light);
}
.celebration-check input {
  accent-color: var(--mw-primary);
}

@media (max-width: 767px) {
  .vl-filter-main {
    flex-direction: column;
  }
  .vl-filter-field {
    flex: none;
    width: 100%;
  }
  .vl-search-field {
    flex: none;
  }
  .vl-filter-search-btn,
  .vl-filter-reset-btn {
    width: 100%;
    justify-content: center;
  }
}

/* View more */
.feat-cats-view-more {
  text-align: center;
}
.tk-btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--mw-secondary);
  color: #fff;
  font-family: var(--mw-font-body);
  font-weight: 600;
  font-size: var(--mw-fs-sm);
  letter-spacing: 0.04em;
  padding: 0.65rem 2rem;
  border-radius: var(--mw-radius-pill);
  text-decoration: none;
  transition:
    background var(--mw-transition),
    transform var(--mw-transition),
    box-shadow var(--mw-transition);
}
.tk-btn-dark:hover {
  background: var(--mw-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--mw-shadow-md);
}

/* ── Destinations section ── */
.destinations-section {
  background: var(--mw-surface);
  padding: var(--mw-space-lg) 0;
}
.destinations-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 991px) {
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}
.dest-view-more {
  text-align: center;
}

/* ── Planning & Inspiration section ── */
.pi-home-section {
  background: var(--mw-bg);
  padding: var(--mw-space-lg) 0;
}
.pi-home-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Carousel wrapper */
.tk-carousel-wrapper {
  position: relative;
  padding: 0 2.5rem;
}
.tk-carousel-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0.5rem;
}
.tk-carousel-track::-webkit-scrollbar {
  display: none;
}
.tk-carousel-item {
  flex: 0 0 calc(25% - 1rem);
  scroll-snap-align: start;
  min-width: 0;
}
@media (max-width: 991px) {
  .tk-carousel-item {
    flex: 0 0 calc(50% - 0.75rem);
  }
}
@media (max-width: 575px) {
  .tk-carousel-item {
    flex: 0 0 calc(85% - 0.5rem);
  }
  .tk-carousel-wrapper {
    padding: 0 1.5rem;
  }
}

/* Arrow buttons */
.tk-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1.5px solid var(--mw-border);
  background: var(--mw-surface);
  color: var(--mw-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background var(--mw-transition),
    color var(--mw-transition),
    border-color var(--mw-transition);
  font-size: 0.8rem;
}
.tk-carousel-arrow:hover {
  background: var(--mw-primary);
  color: #fff;
  border-color: var(--mw-primary);
}
.tk-carousel-prev {
  left: 0;
}
.tk-carousel-next {
  right: 0;
}

/* Planning card */
.pi-home-card {
  display: block;
  text-decoration: none;
  border-radius: var(--mw-radius-lg);
  overflow: hidden;
  box-shadow: var(--mw-shadow-sm);
  transition: box-shadow var(--mw-transition);
  background: var(--mw-surface);
}
/* .pi-home-card:hover {} */
.pi-home-card-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--mw-primary-light);
}
.pi-home-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.pi-home-card:hover .pi-home-card-img img {
  transform: scale(1.06);
}
.pi-home-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--mw-primary);
}
.pi-home-card-hover {
  position: absolute;
  inset: 0;
  background: rgba(196, 137, 106, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--mw-transition);
  z-index: 3;
}
.pi-home-card:hover .pi-home-card-hover {
  opacity: 1;
}
.pi-home-card-hover span {
  background: #fff;
  color: var(--mw-primary-dark);
  font-size: var(--mw-fs-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.45rem 1.25rem;
  border-radius: var(--mw-radius-pill);
}
.pi-home-card-cat {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  z-index: 4;
  background: var(--mw-primary);
  color: #fff;
  font-size: var(--mw-fs-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: var(--mw-radius-sm);
}
.pi-home-card-body {
  padding: 0.85rem 1rem 1rem;
}
.pi-home-card-title {
  font-family: var(--mw-font-heading);
  font-size: var(--mw-fs-lg);
  font-weight: 600;
  color: var(--mw-secondary);
  margin: 0 0 0.4rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pi-home-card-date {
  font-size: var(--mw-fs-xs);
  color: var(--mw-text-muted);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Magazine archive — vendor-style full-image cards */
#mag-listing-grid .pi-home-card {
  position: relative;
  border-radius: var(--mw-radius-lg);
  overflow: hidden;
  box-shadow: var(--mw-shadow-sm);
  transition:
    box-shadow var(--mw-transition),
    transform var(--mw-transition);
  background: transparent;
}
#mag-listing-grid .pi-home-card:hover {
  box-shadow: var(--mw-shadow-md);
  transform: translateY(-4px);
}
#mag-listing-grid .pi-home-card-img {
  aspect-ratio: 3 / 4;
}
#mag-listing-grid .pi-home-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(45, 36, 36, 0.78) 0%, transparent 100%);
  padding: 2.5rem 0.85rem 0.85rem;
  z-index: 2;
  transition: opacity var(--mw-transition);
}
#mag-listing-grid .pi-home-card:hover .pi-home-card-body {
  opacity: 0;
}
#mag-listing-grid .pi-home-card-body .pi-home-card-title {
  color: #fff;
  margin: 0 0 0.25rem;
  line-height: 1.25;
}
#mag-listing-grid .pi-home-card-body .pi-listing-excerpt {
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--mw-fs-sm);
  margin: 0;
}
#mag-listing-grid .pi-home-card-hover {
  background: rgba(45, 36, 36, 0.72);
  z-index: 3;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
}
#mag-listing-grid .mag-hover-title {
  color: #fff;
  font-family: var(--mw-font-heading);
  font-size: var(--mw-fs-base);
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  text-align: center;
}
#mag-listing-grid .pi-home-card-body {
  display: none;
}
#mag-listing-grid .pi-home-card-cat {
  display: none;
}

.tk-view-more {
  text-align: center;
  margin-top: 2rem;
}

/* ── Checkbox Dropdown ── */
.mw-checkbox-dropdown {
  position: relative;
}
.mw-checkbox-dropdown__toggle {
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--mw-border);
  border-radius: var(--mw-radius-md);
  padding: 0.5rem 0.85rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: var(--mw-fs-sm);
  color: var(--mw-text);
  transition: border-color var(--mw-transition);
}
.mw-checkbox-dropdown__toggle:hover {
  border-color: var(--mw-primary);
}
.mw-checkbox-dropdown__label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mw-checkbox-dropdown__icon {
  flex-shrink: 0;
  color: var(--mw-text-muted);
  transition: transform var(--mw-transition);
}
.mw-checkbox-dropdown__menu.open
  ~ .mw-checkbox-dropdown__toggle
  .mw-checkbox-dropdown__icon,
.mw-checkbox-dropdown.open .mw-checkbox-dropdown__icon {
  transform: rotate(180deg);
}
.mw-checkbox-dropdown__menu {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0s linear 0.2s;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--mw-surface);
  border: 1px solid var(--mw-border);
  border-radius: var(--mw-radius-md);
  box-shadow: var(--mw-shadow-md);
  z-index: 200;
  padding: 0.5rem 0;
  max-height: 260px;
  overflow-y: auto;
  scrollbar-gutter: stable;
  pointer-events: none;
}
.mw-checkbox-dropdown__menu.open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0s linear 0s;
  pointer-events: auto;
}
.mw-checkbox-dropdown__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1rem;
  cursor: pointer;
  font-size: var(--mw-fs-sm);
  color: var(--mw-text);
  transition: background var(--mw-transition);
}
.mw-checkbox-dropdown__item:hover {
  background: var(--mw-primary-light);
}
.mw-dropdown-nowrap .mw-checkbox-dropdown__menu {
  min-width: max-content;
  right: auto;
}
.mw-checkbox-dropdown__menu::-webkit-scrollbar {

  width: 6px;
}
.mw-checkbox-dropdown__menu::-webkit-scrollbar-track {
  background: transparent;
}
.mw-checkbox-dropdown__menu::-webkit-scrollbar-thumb {
  background: var(--mw-border);
  border-radius: 4px;
}
.mw-checkbox-dropdown__menu::-webkit-scrollbar-thumb:hover {
  background: var(--mw-text-muted);
}
.mw-dropdown-nowrap .mw-checkbox-dropdown__item {
  white-space: nowrap;
}
.mw-checkbox-dropdown__item input[type="checkbox"],
.mw-checkbox-dropdown__item input[type="radio"] {
  accent-color: var(--mw-primary);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* ── tk-carousel (scroll-snap, real weddings) ── */
.tk-carousel-wrapper {
  position: relative;
}
.tk-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--mw-border);
  background: var(--mw-surface);
  color: var(--mw-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background var(--mw-transition),
    border-color var(--mw-transition),
    transform var(--mw-transition);
  z-index: 10;
  box-shadow: var(--mw-shadow-sm);
}
.tk-carousel-prev {
  left: -20px;
}
.tk-carousel-next {
  right: -20px;
}
.tk-carousel-arrow:hover {
  background: var(--mw-primary);
  border-color: var(--mw-primary);
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}
.tk-carousel-arrow:disabled {
  opacity: 0.35;
  pointer-events: none;
}
.tk-carousel-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
}
.tk-carousel-track::-webkit-scrollbar {
  display: none;
}
.tk-carousel-item {
  flex: 0 0 calc(25% - 0.94rem);
  scroll-snap-align: start;
}
@media (max-width: 991px) {
  .tk-carousel-item {
    flex: 0 0 calc(50% - 0.63rem);
  }
}
@media (max-width: 575px) {
  .tk-carousel-item {
    flex: 0 0 85%;
  }
}

/* ── rw-archive grid ── */
.rw-archive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 1199px) {
  .rw-archive-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .rw-archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .rw-archive-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* ── rw-archive-grid card image — matches tk-rw-home height ── */
.rw-archive-grid .rw-card-name {
  font-size: 16px;
}
.rw-archive-grid .rw-card-wrap {
  display: flex;
  flex-direction: column;
}
.rw-archive-grid .rw-card-inner {
  flex: 1;
}
.rw-archive-grid .rw-card-img-link {
  min-height: 200px;
  max-height: 300px;
  display: block;
}
.rw-archive-grid .rw-card-img-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── rw-card ── */
.rw-card-wrap {
  background: var(--mw-surface);
  border: 1px solid var(--mw-border);
  border-radius: var(--mw-radius-lg);
  overflow: hidden;
  transition: box-shadow var(--mw-transition);
}
.rw-card-wrap:hover {
  box-shadow: var(--mw-shadow-md);
}
.rw-card-name {
  font-family: var(--mw-font-heading);
  font-size: var(--mw-fs-lg);
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  margin: 0.85rem 1rem 0.2rem;
}
.rw-card-name a {
  color: var(--mw-secondary);
  transition: color var(--mw-transition);
}
.rw-card-name a:hover {
  color: var(--mw-primary);
}
.rw-card-loc {
  display: block;
  font-size: var(--mw-fs-xs);
  color: var(--mw-text-muted);
  margin: 0 1rem 0.75rem;
  text-align: center;
}
.rw-card-loc i {
  color: var(--mw-primary);
  margin-right: 3px;
}
.rw-card-inner {
  position: relative;
}

/* Main image */
.rw-card-img-link {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: auto;
}
.rw-card-img-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.rw-card-wrap:hover .rw-card-img-link img {
  transform: scale(1.04);
}
.rw-card-no-img {
  width: 100%;
  height: 100%;
  background: var(--mw-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mw-primary);
}

/* Hover overlay */
.rw-card-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--mw-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: var(--mw-fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity var(--mw-transition);
  z-index: 2;
}
.rw-card-wrap:hover .rw-card-overlay,
.vendor-card:hover .rw-card-overlay {
  opacity: 1;
}

/* Featured badge */
.rw-card-featured-badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  background: var(--mw-accent);
  color: var(--mw-secondary);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: var(--mw-radius-pill);
  z-index: 3;
}

/* Date badge */
.rw-card-date {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: rgba(0, 0, 0, 0.55);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.65rem;
  padding: 2px 7px;
  border-radius: var(--mw-radius-sm);
  z-index: 3;
}

/* Gallery strip */
.rw-card-gallery {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 72px;
  border-top: 1px solid var(--mw-border);
}
.rw-card-gallery li {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.rw-card-gallery li + li {
  border-left: 1px solid var(--mw-border);
}
.rw-card-gallery li a {
  display: block;
  width: 100%;
  height: 100%;
}
.rw-card-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  display: block;
}
.rw-card-gallery li:hover img {
  transform: scale(1.06);
}

/* "Load More" overlay on last thumb */
.rw-card-more-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 36, 36, 0.62);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  z-index: 2;
}

.tk-rw-home .rw-card-name {
  font-size: 16px;
}
.rw-card-name-line,
.rw-card-name-and {
  display: block;
  text-align: center;
}

/* ── Thai The Knot home carousel — matches rw-more-section style ── */
.tk-rw-home .tk-carousel-track {
  align-items: stretch;
  padding: 4px 4px 4px 4px;
}
.tk-rw-home .tk-carousel-item {
  display: flex;
}
.tk-rw-home .tk-carousel-item .rw-card-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.tk-rw-home .tk-carousel-item .rw-card-inner {
  flex: 1;
}
.tk-rw-home .tk-carousel-item .rw-card-img-link {
  min-height: 200px;
  max-height: 300px;
  display: block;
}
.tk-rw-home .tk-carousel-item .rw-card-img-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 575px) {
  .tk-rw-home .tk-carousel-item {
    flex: 0 0 100%;
  }
}

/* ── Planning & Inspiration home carousel — equal-height cards ── */
.pi-rw-home .tk-carousel-track {
  align-items: stretch;
  padding: 4px 4px 4px;
}
.pi-rw-home .tk-carousel-item {
  display: flex;
}
.pi-rw-home .tk-carousel-item .pi-home-card {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.pi-rw-home .tk-carousel-item .pi-home-card-body {
  flex: 1;
}
.pi-rw-home .pi-home-card-img {
  aspect-ratio: unset;
  min-height: 200px;
  max-height: 300px;
}
@media (max-width: 575px) {
  .pi-rw-home .tk-carousel-item {
    flex: 0 0 100%;
  }
}

/* ── Cards ── */
.mw-card {
  background: var(--mw-surface);
  border-radius: var(--mw-radius-lg);
  border: 1px solid var(--mw-border);
  overflow: hidden;
  transition:
    box-shadow var(--mw-transition),
    transform var(--mw-transition);
}
.mw-card:hover {
  box-shadow: var(--mw-shadow-md);
  transform: translateY(-3px);
}
.mw-card__thumb {
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}
.mw-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.mw-card:hover .mw-card__thumb img {
  transform: scale(1.04);
}
.mw-card__body {
  padding: var(--mw-space-lg);
}
.mw-card__title {
  font-family: var(--mw-font-heading);
  font-size: var(--mw-fs-xl);
  margin-bottom: var(--mw-space-sm);
  line-height: 1.3;
}
.mw-card__title a {
  color: var(--mw-secondary);
  transition: color var(--mw-transition);
}
.mw-card__title a:hover {
  color: var(--mw-primary);
}

.mw-card__meta {
  font-size: var(--mw-fs-xs);
  color: var(--mw-text-muted);
  margin-bottom: var(--mw-space-sm);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.mw-card__meta i {
  color: var(--mw-primary);
}

.mw-card__excerpt {
  font-size: var(--mw-fs-sm);
  color: var(--mw-text-muted);
  line-height: 1.6;
}

.mw-card__footer {
  padding: var(--mw-space-md) var(--mw-space-lg);
  border-top: 1px solid var(--mw-border);
  background: var(--mw-bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── Rating stars ── */
.mw-rating {
  color: var(--mw-accent);
  font-size: var(--mw-fs-sm);
}
.mw-rating .fa-star {
  margin-right: 1px;
}

/* ── Venue infinite-scroll loader ── */
.vl-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}
.vl-loader__spinner {
  width: 2rem;
  height: 2rem;
  border: 3px solid var(--mw-border);
  border-top-color: var(--mw-primary);
  border-radius: 50%;
  animation: vl-spin 0.7s linear infinite;
}
@keyframes vl-spin {
  to { transform: rotate(360deg); }
}

.vl-load-more-wrap {
  display: flex;
  justify-content: center;
  margin: 2.5rem 0;
}

/* ── Pagination ── */
.mw-pagination {
  display: flex;
  justify-content: center;
  margin-top: var(--mw-space-2xl);
}
.mw-pagination .page-link {
  color: var(--mw-primary);
  border-color: var(--mw-border);
  border-radius: var(--mw-radius-sm) !important;
  margin: 0 2px;
  transition: all var(--mw-transition);
}
.mw-pagination .page-item.active .page-link {
  background: var(--mw-primary);
  border-color: var(--mw-primary);
  color: #fff;
}
.mw-pagination .page-link:hover {
  background: var(--mw-primary-light);
  border-color: var(--mw-primary);
  color: var(--mw-primary-dark);
}

/* ── Forms ── */
.mw-form-control {
  border: 1px solid var(--mw-border);
  border-radius: var(--mw-radius-md);
  padding: 0.65rem 1rem;
  font-family: var(--mw-font-body);
  font-size: var(--mw-fs-sm);
  transition:
    border-color var(--mw-transition),
    box-shadow var(--mw-transition);
}
.mw-form-control:focus {
  border-color: var(--mw-primary);
  box-shadow: 0 0 0 3px rgba(196, 137, 106, 0.15);
  outline: none;
}

/* ── Search bar ── */
.mw-search-bar {
  display: flex;
  border: 2px solid var(--mw-border);
  border-radius: var(--mw-radius-pill);
  overflow: hidden;
  background: var(--mw-surface);
}
.mw-search-bar input {
  flex: 1;
  border: none;
  padding: 0.65rem 1.25rem;
  font-family: var(--mw-font-body);
  font-size: var(--mw-fs-sm);
  background: transparent;
}
.mw-search-bar input:focus {
  outline: none;
}
.mw-search-bar button {
  background: var(--mw-primary);
  border: none;
  color: #fff;
  padding: 0 1.5rem;
  cursor: pointer;
  transition: background var(--mw-transition);
}
.mw-search-bar button:hover {
  background: var(--mw-primary-dark);
}

/* ── No results ── */
.mw-no-results {
  text-align: center;
  padding: var(--mw-space-3xl) 0;
  color: var(--mw-text-muted);
}
.mw-no-results i {
  font-size: 3rem;
  color: var(--mw-border);
  margin-bottom: var(--mw-space-md);
  display: block;
}

/* ── Alert / Notice ── */
.mw-notice {
  padding: var(--mw-space-md) var(--mw-space-lg);
  border-radius: var(--mw-radius-md);
  border-left: 4px solid var(--mw-primary);
  background: var(--mw-primary-light);
  color: var(--mw-secondary);
  font-size: var(--mw-fs-sm);
}

/* ── Back to top ── */
#mw-back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: none;
  background: var(--mw-primary);
  color: #fff;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    background var(--mw-transition);
  pointer-events: none;
}
#mw-back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#mw-back-to-top:hover {
  background: var(--mw-primary-dark);
}

/* ── Real Wedding Single ── */
.rw-hero {
  height: 560px;
  background: linear-gradient(135deg, var(--mw-secondary) 0%, #5a3535 100%)
    center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rw-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
}
.rw-hero-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1rem;
}
.rw-hero-title {
  font-family: var(--mw-font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.rw-hero-cat-badge {
  display: inline-block;
  background: var(--mw-primary);
  color: #fff;
  font-size: var(--mw-fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: var(--mw-radius-pill);
  text-decoration: none;
  margin-bottom: 0.75rem;
}
.rw-hero-meta {
  margin-top: 0.5rem;
}
.rw-hero-location {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--mw-fs-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.rw-hero-location i {
  color: var(--mw-primary);
}
.rw-hero-location:hover {
  color: #fff;
}

.rw-breadcrumb-bar {
  background: var(--mw-surface);
  border-bottom: 1px solid var(--mw-border);
  padding: 0.65rem 0;
}
.rw-breadcrumb-bar nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.rw-breadcrumb-bar .breadcrumb {
  font-size: var(--mw-fs-sm);
  font-weight: 700;
}

.rw-body {
  background: var(--mw-bg);
  padding: var(--mw-space-2xl) 0;
}
.rw-col {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.rw-section {
  margin-bottom: var(--mw-space-2xl);
}
.rw-section-title {
  font-family: var(--mw-font-heading);
  font-size: var(--mw-fs-2xl);
  font-weight: 700;
  color: var(--mw-secondary);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--mw-primary-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.rw-section-title i {
  color: var(--mw-primary);
  font-size: 0.9em;
}

.rw-story {
  line-height: 1.85;
  color: var(--mw-text);
  font-size: var(--mw-fs-md);
}
.rw-story p {
  margin-bottom: 1rem;
}

.rw-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--mw-radius-lg);
}
.rw-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Gallery 5-grid */
.rw-gallery5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.4rem;
}
.rw-gallery5-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
}
.rw-gallery5-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.rw-gallery5-item:hover img {
  transform: scale(1.07);
}
.rw-gallery5-more {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
}
@media (max-width: 575px) {
  .rw-gallery5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Highlights */
.rw-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
}
.rw-highlight-item {
  background: var(--mw-surface);
  border: 1px solid var(--mw-border);
  border-radius: var(--mw-radius-md);
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.rw-highlight-icon {
  color: var(--mw-primary);
  font-size: 1.1rem;
  margin-bottom: 0.1rem;
}
.rw-highlight-label {
  font-size: var(--mw-fs-xs);
  color: var(--mw-text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.rw-highlight-value {
  font-size: var(--mw-fs-sm);
  color: var(--mw-secondary);
  font-weight: 600;
}

/* Credit grid (< 5 items) */
.rw-credit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 991px) {
  .rw-credit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .rw-credit-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

/* Credit carousel (≥ 5 items) */
.rw-credit-carousel {
  padding: 0 2.5rem;
}
.rw-credit-carousel .tk-carousel-item {
  flex: 0 0 calc(25% - 1rem);
}
@media (max-width: 991px) {
  .rw-credit-carousel .tk-carousel-item {
    flex: 0 0 calc(50% - 0.75rem);
  }
}
@media (max-width: 575px) {
  .rw-credit-carousel .tk-carousel-item {
    flex: 0 0 calc(80% - 0.5rem);
  }
}

/* Vendor grid */
.rw-vendor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}
.rw-vendor-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--mw-surface);
  border: 1px solid var(--mw-border);
  border-radius: var(--mw-radius-md);
  padding: 0.65rem 0.85rem;
  text-decoration: none;
  transition:
    border-color var(--mw-transition),
    box-shadow var(--mw-transition);
}
.rw-vendor-card:hover {
  border-color: var(--mw-primary);
  box-shadow: var(--mw-shadow-sm);
}
.rw-vendor-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--mw-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.rw-vendor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rw-credit-initial {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--mw-primary);
}
.rw-credit-name {
  font-size: var(--mw-fs-sm);
  font-weight: 600;
  color: var(--mw-secondary);
  margin: 0;
}
.rw-credit-cat {
  font-size: var(--mw-fs-xs);
  color: var(--mw-text-muted);
  margin: 0;
}
.rw-vendor-info {
  min-width: 0;
}

/* Tags */
.rw-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--mw-space-lg);
}
.rw-tag-chip {
  background: var(--mw-primary-light);
  color: var(--mw-primary-dark);
  font-size: var(--mw-fs-xs);
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: var(--mw-radius-pill);
  text-decoration: none;
  transition: background var(--mw-transition);
}
.rw-tag-chip:hover {
  background: var(--mw-primary);
  color: #fff;
}

/* Share */
.rw-share {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: var(--mw-space-2xl);
  padding: 1rem 0;
  border-top: 1px solid var(--mw-border);
}
.rw-share-label {
  font-size: var(--mw-fs-sm);
  font-weight: 700;
  color: var(--mw-text-muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.rw-share-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1.5px solid var(--mw-border);
  background: var(--mw-surface);
  color: var(--mw-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  text-decoration: none;
  cursor: pointer;
  transition:
    background var(--mw-transition),
    color var(--mw-transition),
    border-color var(--mw-transition);
}
.rw-share-btn:hover {
  background: var(--mw-primary);
  color: #fff;
  border-color: var(--mw-primary);
}

/* More weddings carousel */

.rw-more-section .tk-carousel-track {
  align-items: stretch;
  padding: 4px;
}
.rw-more-section .tk-carousel-item {
  flex: 0 0 calc(25% - 1rem);
  display: flex;
}
.rw-more-section .tk-carousel-item .rw-card-name {
  font-size: 16px;
}
.rw-more-section .tk-carousel-item .rw-card-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.rw-more-section .tk-carousel-item .rw-card-inner {
  flex: 1;
}
.rw-more-section .tk-carousel-item .rw-card-img-link {
  min-height: 200px;
  max-height: 300px;
  display: block;
}
.rw-more-section .tk-carousel-item .rw-card-img-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .rw-more-section .tk-carousel-item {
    flex: 0 0 calc(50% - 0.75rem);
  }
}
@media (max-width: 575px) {
  .rw-more-section .tk-carousel-item {
    flex: 0 0 100%;
  }
}

/* ═══════════════════════════════════════════════════════════
   Vendor Detail Page  (.vd-*)
   ═══════════════════════════════════════════════════════════ */

/* Hero */
.vd-hero {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--mw-secondary) 0%, #5a3535 100%) center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vd-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
}
.vd-hero-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1rem;
}
.vd-hero-name {
  font-family: var(--mw-font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.vd-hero-location {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--mw-primary);
  color: #fff;
  font-size: var(--mw-fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: var(--mw-radius-pill);
  text-decoration: none;
  margin-top: 0.4rem;
  transition: opacity var(--mw-transition);
}
.vd-hero-location:hover {
  opacity: 0.85;
  color: #fff;
}
.vd-hero-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--mw-primary-light, #f5e6dd) 0%, var(--mw-surface) 100%);
}
.vd-hero-placeholder span {
  font-size: 5rem;
  font-weight: 800;
  font-family: var(--mw-font-heading);
  color: var(--mw-primary);
  opacity: .35;
}

/* Container */
.vd-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

/* Name row */
.vd-name-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.vd-name {
  font-family: var(--mw-font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--mw-heading);
  margin: 0 0 .35rem;
  line-height: 1.2;
}
.vd-meta {
  font-size: var(--mw-fs-sm);
  color: var(--mw-text-muted);
}
.vd-meta i { color: var(--mw-primary); margin-right: .25rem; }
.vd-meta-link i { color: inherit; margin-right: .3rem; }
.vd-meta-link {
  display: inline-block;
  padding: .15rem .55rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--mw-primary) 12%, transparent);
  color: var(--mw-primary);
  font-size: .8em;
  font-weight: 500;
  text-decoration: none;
  transition: background .18s, color .18s;
  line-height: 1.6;
}
.vd-meta-link:hover {
  background: var(--mw-primary);
  color: #fff;
  text-decoration: none;
}
.vd-actions { display: flex; gap: .75rem; flex-shrink: 0; }
.vd-action-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem 1rem;
  border: 1.5px solid var(--mw-border);
  border-radius: var(--mw-radius-md);
  background: #fff;
  color: var(--mw-text);
  font-size: var(--mw-fs-sm);
  font-weight: 500;
  cursor: pointer;
  transition: border-color var(--mw-transition), color var(--mw-transition);
}
.vd-action-btn:hover { border-color: var(--mw-primary); color: var(--mw-primary); }

/* Tabs */
.vd-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--mw-border);
  margin-bottom: 2rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.vd-tabs::-webkit-scrollbar { display: none; }
.vd-tab {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .65rem 1.1rem;
  font-size: var(--mw-fs-sm);
  font-weight: 500;
  color: var(--mw-text-muted);
  white-space: nowrap;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color var(--mw-transition), border-color var(--mw-transition);
}
.vd-tab:hover, .vd-tab.active {
  color: var(--mw-primary);
  border-bottom-color: var(--mw-primary);
}

/* Body layout */
.vd-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 2rem;
  align-items: start;
}

/* Section anchors */
.vd-section-anchor { scroll-margin-top: 80px; }
.vd-block {
  background: #fff;
  border: 1px solid var(--mw-border);
  border-radius: var(--mw-radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.75rem;
}
.vd-block-title {
  font-family: var(--mw-font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--mw-heading);
  margin: 0 0 1.25rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.vd-block-title i { color: var(--mw-primary); font-size: 1rem; }
.vd-acc-chevron { display: none; }

/* About / overview */
.vd-overview-row {
  overflow: hidden;
  margin-bottom: 1.75rem;
}
.vd-description {
  font-size: var(--mw-fs-base);
  line-height: 1.8;
  color: var(--mw-text);
}
.vd-description p:last-child { margin-bottom: 0; }

.vd-why-box {
  float: right;
  width: 350px;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  background: var(--mw-surface);
  border: 1px solid var(--mw-border);
  border-radius: var(--mw-radius-md);
  padding: 1rem;
}
.vd-why-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: var(--mw-fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--mw-primary);
  margin-bottom: .75rem;
}
.vd-why-item {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: var(--mw-fs-sm);
  color: var(--mw-text);
  margin-bottom: .5rem;
}
.vd-why-item i { color: var(--mw-primary); margin-top: .2rem; flex-shrink: 0; }
.vd-why-item span { min-width: 0; overflow-wrap: break-word; }

/* Tags */
.vd-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.vd-tag {
  padding: .35rem .8rem;
  border: 1px solid var(--mw-border);
  border-radius: 999px;
  font-size: var(--mw-fs-sm);
  color: var(--mw-text);
  background: var(--mw-surface);
}
.vd-tag-sm { padding: .2rem .55rem; font-size: .7rem; }
.vd-tag--link { text-decoration: none; cursor: pointer; transition: background var(--mw-transition), color var(--mw-transition), border-color var(--mw-transition); }
.vd-tag--link:hover { background: var(--mw-primary); color: #fff; border-color: var(--mw-primary); }

/* Services checklist */
.vd-services-check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: .5rem .75rem;
}
.vd-services-check-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: var(--mw-fs-sm);
  color: var(--mw-text);
}
.vd-services-check-item .fa-check { color: var(--mw-primary); font-size: .75rem; flex-shrink: 0; }

/* Spaces carousel */
.vd-spaces-carousel-wrapper {
  position: relative;
}
.vd-spaces-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 2px 2px .25rem;
}
.vd-spaces-track::-webkit-scrollbar { display: none; }
.vd-space-card2 {
  flex: 0 0 calc(33.333% - .84rem);
  scroll-snap-align: start;
  border: 1px solid var(--mw-border);
  border-radius: var(--mw-radius-md);
  overflow: hidden;
  background: #fff;
}
.vd-space-img { height: 200px; overflow: hidden; background: var(--mw-surface); }
.vd-space-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vd-space-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mw-text-muted);
  font-size: 2rem;
}
.vd-space-body { padding: .9rem; }
.vd-space-name2 { font-size: .95rem; font-weight: 600; color: var(--mw-heading); margin: 0 0 .35rem; }
.vd-space-seating2 { font-size: var(--mw-fs-sm); color: var(--mw-text-muted); margin: 0; }
.vd-space-seating2 i { color: var(--mw-primary); margin-right: .2rem; }
.vd-spaces-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--mw-border);
  background: #fff;
  color: var(--mw-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: border-color var(--mw-transition), color var(--mw-transition);
}
.vd-spaces-arrow:hover { border-color: var(--mw-primary); color: var(--mw-primary); }
.vd-spaces-arrow--prev { left: -18px; }
.vd-spaces-arrow--next { right: -18px; }

/* Gallery */
.vd-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: .5rem;
}
.vd-gallery-item {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--mw-radius-sm);
  background: var(--mw-surface);
}
.vd-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}
.vd-gallery-item:hover img { transform: scale(1.05); }
.vd-gallery-more {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
}

/* Video / virtual tour */
.vd-video-wrap {
  position: relative;
  padding-top: 56.25%;
  border-radius: var(--mw-radius-md);
  overflow: hidden;
}
.vd-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Map */
.vd-map-embed { border-radius: var(--mw-radius-md); overflow: hidden; margin-bottom: 1rem; }
.vd-map-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: var(--mw-fs-sm);
  color: var(--mw-primary);
  text-decoration: none;
  font-weight: 500;
}
.vd-map-link:hover { text-decoration: underline; }

/* Share */
.vd-share-links { display: flex; gap: .6rem; flex-wrap: wrap; }
.vd-share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--mw-border);
  background: #fff;
  color: var(--mw-text);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: .9rem;
  cursor: pointer;
  transition: border-color var(--mw-transition), color var(--mw-transition), background var(--mw-transition);
}
.vd-share-btn:hover { border-color: var(--mw-primary); color: var(--mw-primary); }

/* Related carousel */
.vd-related-wrapper { position: relative; }
.vd-related-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.vd-related-track::-webkit-scrollbar { display: none; }
.vd-related-item {
  flex: 0 0 calc((100% - 3rem) / 4);
  text-decoration: none;
}
.vd-related-item .vendor-image { height: auto; aspect-ratio: 3/4; }
@media (max-width: 767px) {
  .vd-related-item { flex: 0 0 calc((100% - 1rem) / 2); }
}

/* Sidebar */
.vd-sidebar { position: sticky; top: 100px; }
.vd-sidebar-box {
  background: #fff;
  border: 1px solid var(--mw-border);
  border-radius: var(--mw-radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.vd-sidebar-title {
  font-family: var(--mw-font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--mw-heading);
  margin: 0 0 1.1rem;
  display: flex;
  align-items: center;
  gap: .45rem;
}
.vd-sidebar-title i { color: var(--mw-primary); }

/* Inquiry form */
.vd-inquiry-form { display: flex; flex-direction: column; gap: .75rem; }
.vd-field {
  position: relative;
  display: flex;
  align-items: center;
}
.vd-field > i {
  position: absolute;
  left: .85rem;
  color: var(--mw-text-muted);
  font-size: .8rem;
  pointer-events: none;
}
.vd-field input,
.vd-field textarea {
  width: 100%;
  padding: .55rem .85rem .55rem 2.25rem;
  border: 1.5px solid var(--mw-border);
  border-radius: var(--mw-radius-md);
  font-size: var(--mw-fs-sm);
  color: var(--mw-text);
  background: var(--mw-surface);
  transition: border-color var(--mw-transition);
  font-family: inherit;
}
.vd-field input:focus,
.vd-field textarea:focus {
  border-color: var(--mw-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(196,137,106,.12);
}
.vd-field-area { align-items: flex-start; }
.vd-field-area i { top: .65rem; }
.vd-field textarea { resize: vertical; min-height: 80px; }
.vd-inquiry-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .65rem 1rem;
  background: var(--mw-primary);
  color: #fff;
  border: none;
  border-radius: var(--mw-radius-md);
  font-size: var(--mw-fs-sm);
  font-weight: 600;
  cursor: pointer;
  transition: background var(--mw-transition), opacity var(--mw-transition);
}
.vd-inquiry-btn:hover { background: var(--mw-primary-dark, #b5745c); }
.vd-inquiry-btn:disabled { opacity: .65; cursor: not-allowed; }
.vd-inquiry-error {
  font-size: var(--mw-fs-sm);
  color: #dc3545;
  margin: 0;
}

/* Vendor info list */
.vd-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.vd-info-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: var(--mw-fs-sm);
  color: var(--mw-text);
}
.vd-info-list li i { color: var(--mw-primary); margin-top: .15rem; flex-shrink: 0; }
.vd-info-list a { color: inherit; text-decoration: none; }
.vd-info-list a:hover { color: var(--mw-primary); }
.vd-info-label {
  font-size: var(--mw-fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--mw-text-muted);
  margin: .75rem 0 .5rem;
}
.vd-divider {
  height: 1px;
  background: var(--mw-border);
  margin: 1rem 0 .75rem;
}

/* Social links */
.vd-social-links { display: flex; gap: .5rem; flex-wrap: wrap; }
.vd-social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--mw-border);
  background: #fff;
  color: var(--mw-text);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: .85rem;
  transition: border-color var(--mw-transition), color var(--mw-transition);
}
.vd-social-icon-btn:hover { border-color: var(--mw-primary); color: var(--mw-primary); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1199px) {
  .vd-body { grid-template-columns: minmax(0, 1fr); }
  .vd-sidebar { position: static; }
  .vd-space-card2 { flex: 0 0 calc(50% - .63rem); }
}
@media (max-width: 768px) {
  .vd-hero { height: 320px; }
  .vd-name { font-size: 1.5rem; }
  .vd-container { padding: 1.25rem 2rem 3rem; }
  .vd-block { padding: 1.25rem; }
  .vd-gallery { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
  .vd-spaces-track { gap: .75rem; padding-bottom: .5rem; }
  .vd-space-card2 { flex: 0 0 100%; }
  .vd-space-img { height: 170px; }
  .vd-spaces-carousel-wrapper { padding: 0 44px; }
  .vd-spaces-arrow--prev { left: 0; }
  .vd-spaces-arrow--next { right: 0; }
  .vd-overview-row { display: flex; flex-direction: column; }
  .vd-description { order: 1; }
  .vd-why-box { float: none; width: 100%; margin-left: 0; order: 2; }

  /* ── Accordion ── */
  .vd-tabs { display: none; }
  .vd-block-title {
    cursor: pointer;
    user-select: none;
    justify-content: space-between;
    position: relative;
    margin-bottom: 0;
  }
  .vd-block-title .vd-acc-chevron {
    display: inline-block;
    font-size: 1rem;
    color: var(--mw-text-muted);
    transition: transform .25s ease;
    flex-shrink: 0;
  }
  .vd-block.vd-acc-open .vd-block-title .vd-acc-chevron {
    transform: rotate(180deg);
  }
  .vd-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
  }
  .vd-block.vd-acc-open .vd-acc-body {
    max-height: 9999px;
    overflow: visible;
    padding-top: 1rem;
  }
}

/* ── Planning & Inspiration listing grid ── */
.pi-listing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 1199px) {
  .pi-listing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .pi-listing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .pi-listing-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.pi-listing-excerpt {
  font-size: var(--mw-fs-sm);
  color: var(--mw-text-muted);
  margin: 0 0 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/* ── Planning single page ── */
.pi-card-cat {
  display: inline-block;
  background: var(--mw-primary);
  color: #fff;
  font-size: var(--mw-fs-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: var(--mw-radius-sm);
}

.pi-single-body {
  padding: var(--mw-space-2xl) 0 var(--mw-space-3xl);
  background: var(--mw-bg);
}
.pi-single-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 991px) {
  .pi-single-layout { grid-template-columns: 1fr; }
}

/* Article */
.pi-article-title {
  font-family: var(--mw-font-heading);
  font-size: var(--mw-fs-4xl);
  font-weight: 700;
  color: var(--mw-secondary);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}
@media (max-width: 575px) {
  .pi-article-title { font-size: var(--mw-fs-2xl); }
}
.pi-article-date {
  font-size: var(--mw-fs-sm);
  color: var(--mw-text-muted);
  margin: 0 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.pi-article-featured-img {
  border-radius: var(--mw-radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
}
.pi-article-featured-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* Article body content */
.pi-single-content {
  font-size: var(--mw-fs-md);
  line-height: 1.85;
  color: var(--mw-text);
}
.pi-single-content p { margin-bottom: 1.25rem; }
.pi-single-content h2,
.pi-single-content h3,
.pi-single-content h4 {
  font-family: var(--mw-font-heading);
  color: var(--mw-secondary);
  margin: 2rem 0 0.75rem;
}
.pi-single-content ul,
.pi-single-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.pi-single-content img {
  max-width: 100%;
  border-radius: var(--mw-radius-md);
  height: auto;
}
.pi-single-content a { color: var(--mw-primary); }
.pi-single-content a:hover { color: var(--mw-primary-dark); }
.pi-single-content blockquote {
  border-left: 3px solid var(--mw-primary);
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  background: var(--mw-primary-light);
  border-radius: 0 var(--mw-radius-sm) var(--mw-radius-sm) 0;
  font-style: italic;
  color: var(--mw-text-muted);
}

/* Tags */
.pi-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--mw-border);
}
.pi-tag-chip {
  display: inline-block;
  font-size: var(--mw-fs-xs);
  font-weight: 600;
  color: var(--mw-primary-dark);
  background: var(--mw-primary-light);
  padding: 0.3rem 0.75rem;
  border-radius: var(--mw-radius-pill);
  text-decoration: none;
  transition: background var(--mw-transition), color var(--mw-transition);
}
.pi-tag-chip:hover {
  background: var(--mw-primary);
  color: #fff;
}

/* Share */
.pi-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--mw-border);
}
.pi-share-label {
  font-size: var(--mw-fs-sm);
  font-weight: 600;
  color: var(--mw-text-muted);
  margin-right: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.pi-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--mw-border);
  background: var(--mw-surface);
  color: var(--mw-text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--mw-transition);
}
.pi-share-btn:hover {
  background: var(--mw-primary);
  border-color: var(--mw-primary);
  color: #fff;
}

/* Sidebar */
.pi-single-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.pi-widget {
  background: var(--mw-surface);
  border: 1px solid var(--mw-border);
  border-radius: var(--mw-radius-lg);
  padding: 1.25rem;
}
.pi-widget-title {
  font-family: var(--mw-font-heading);
  font-size: var(--mw-fs-lg);
  font-weight: 700;
  color: var(--mw-secondary);
  margin: 0 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--mw-primary-light);
}
.pi-widget-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pi-widget-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0;
  font-size: var(--mw-fs-sm);
  color: var(--mw-text);
  text-decoration: none;
  border-bottom: 1px solid var(--mw-border);
  transition: color var(--mw-transition);
}
.pi-widget-list li:last-child a { border-bottom: none; }
.pi-widget-list li a:hover,
.pi-widget-list li a.is-active { color: var(--mw-primary); }
.pi-widget-count {
  font-size: var(--mw-fs-xs);
  background: var(--mw-primary-light);
  color: var(--mw-primary-dark);
  font-weight: 700;
  padding: 0.1rem 0.5rem;
  border-radius: var(--mw-radius-pill);
}

/* Recent / Popular list */
.pi-recent-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.pi-recent-item {
  display: flex;
  gap: 0.75rem;
  text-decoration: none;
  align-items: flex-start;
}
.pi-recent-img {
  flex-shrink: 0;
  width: 68px;
  height: 52px;
  border-radius: var(--mw-radius-sm);
  overflow: hidden;
  background: var(--mw-primary-light);
}
.pi-recent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.pi-recent-item:hover .pi-recent-img img { transform: scale(1.06); }
.pi-recent-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mw-primary);
  font-size: 1.1rem;
}
.pi-recent-info { flex: 1; min-width: 0; }
.pi-recent-title {
  font-size: var(--mw-fs-sm);
  font-weight: 600;
  color: var(--mw-secondary);
  margin: 0 0 0.2rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--mw-transition);
}
.pi-recent-item:hover .pi-recent-title { color: var(--mw-primary); }
.pi-recent-date {
  font-size: var(--mw-fs-xs);
  color: var(--mw-text-muted);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.pi-recent-views-badge {
  background: var(--mw-primary-light);
  color: var(--mw-primary-dark);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.1rem 0.45rem;
  border-radius: var(--mw-radius-pill);
}

/* Vendor finder widget */
.pi-vf-banner {
  margin-bottom: 1rem;
  /* border-radius: var(--mw-radius-md); */
  overflow: hidden;
  aspect-ratio: 21 / 9;
}
.pi-vf-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pi-vf-dropdown { position: relative; }
.pi-vf-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1rem;
  background: var(--mw-primary);
  color: #fff;
  border: none;
  border-radius: var(--mw-radius-md);
  font-size: var(--mw-fs-sm);
  font-weight: 600;
  cursor: pointer;
  transition: background var(--mw-transition);
}
.pi-vf-btn:hover { background: var(--mw-primary-dark); }
.pi-vf-chevron {
  font-size: 0.7rem;
  transition: transform var(--mw-transition);
}
.pi-vf-dropdown.is-open .pi-vf-chevron { transform: rotate(180deg); }
.pi-vf-menu {
  list-style: none;
  padding: 0.4rem 0;
  margin: 0.4rem 0 0;
  background: var(--mw-surface);
  border: 1px solid var(--mw-border);
  border-radius: var(--mw-radius-md);
  box-shadow: var(--mw-shadow-md);
}
.pi-vf-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1rem;
  font-size: var(--mw-fs-sm);
  color: var(--mw-text);
  text-decoration: none;
  transition: background var(--mw-transition), color var(--mw-transition);
}
.pi-vf-item:hover {
  background: var(--mw-primary-light);
  color: var(--mw-primary-dark);
}
.pi-vf-icon-placeholder {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mw-primary);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Not found */
.pi-not-found {
  text-align: center;
  padding: 5rem 1rem;
  color: var(--mw-text-muted);
}
.pi-not-found a {
  color: var(--mw-primary);
  font-weight: 600;
}
