/* ─── PAGE BODY ──────────────────────────────────────────────── */
.props-page-body {
  padding-top: var(--nav-h);
}
.props-page-body #navbar { color: var(--ink); }

/* ─── PAGE HEADER ────────────────────────────────────────────── */
.collection-header {
  background: #0e0d0b;
  padding: 5.5rem 3rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Decorative rings */
.collection-header::before,
.collection-header::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,.1);
  pointer-events: none;
}
.collection-header::before {
  width: 600px; height: 600px;
  top: -40%; left: -8%;
}
.collection-header::after {
  width: 380px; height: 380px;
  bottom: -60%; right: 5%;
  border-color: rgba(201,169,110,.07);
}

.collection-header-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.collection-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 2.4rem;
}
.collection-breadcrumb a {
  color: rgba(255,255,255,.3);
  transition: color var(--transition);
}
.collection-breadcrumb a:hover { color: var(--gold); }
.collection-breadcrumb span[aria-hidden] { opacity: .3; }

.collection-eyebrow {
  color: var(--gold) !important;
  margin-bottom: 1.2rem;
}

.collection-title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  line-height: 1.1;
  color: rgba(255,255,255,.88);
  margin-bottom: 1.8rem;
}
.collection-title em {
  font-style: italic;
  color: var(--gold-lt);
}

.collection-rule {
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: .55;
  margin: 0 auto 1.8rem;
}

.collection-sub {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  line-height: 1.75;
  letter-spacing: .03em;
  max-width: 520px;
  margin: 0 auto;
}

/* ─── MAIN AREA ──────────────────────────────────────────────── */
.collection-main {
  background: var(--sand);
  padding: 4rem 3rem 7rem;
}

body.dark .collection-main { background: var(--sand); }

/* ─── EDITORIAL GRID ─────────────────────────────────────────── */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* ─── CARD COLUMN SPANS ──────────────────────────────────────── */
.card-hero  { grid-column: 1 / -1; }
.card-wide  { grid-column: span 7; }
.card-tall  { grid-column: span 5; }
.card-small { grid-column: span 4; }

/* ─── BASE CARD ──────────────────────────────────────────────── */
.collection-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}

.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 80px rgba(0,0,0,.14);
}

/* ─── IMAGE WRAP ─────────────────────────────────────────────── */
.cc-img-wrap {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  background: var(--sand);
}

/* Gold line that draws across image bottom on hover */
.cc-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width .65s cubic-bezier(.4,0,.2,1);
  z-index: 4;
}
.collection-card:hover .cc-img-wrap::after { width: 100%; }

/* ─── IMAGE ASPECT RATIOS PER VARIANT ────────────────────────── */
.card-hero .cc-img-wrap  { aspect-ratio: 21/9; min-height: 440px; }
.card-wide .cc-img-wrap  { aspect-ratio: 3/2; }
.card-tall .cc-img-wrap  { aspect-ratio: 3/4; }
.card-small .cc-img-wrap { aspect-ratio: 4/3; }

.cc-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.4,0,.2,1);
  display: block;
}
.collection-card:hover .cc-img-wrap img { transform: scale(1.05); }

/* ─── HERO GRADIENT OVERLAY ──────────────────────────────────── */
.card-hero .cc-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,7,5,.88) 0%,
    rgba(8,7,5,.35) 38%,
    transparent 62%
  );
  z-index: 2;
  pointer-events: none;
  transition: opacity var(--transition);
}

/* ─── AVAILABILITY TAG ───────────────────────────────────────── */
.cc-tag {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: var(--gold);
  color: var(--white);
  font-size: .55rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  z-index: 5;
}

/* ─── CARD BODY ──────────────────────────────────────────────── */
.cc-body {
  padding: 1.8rem 2rem;
  background: var(--white);
}

/* Hero body is overlaid on the image */
.card-hero .cc-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  padding: 2.8rem 3.5rem;
  background: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.cc-body-left { flex: 1; }
.cc-body-right { flex-shrink: 0; text-align: right; }

/* Non-hero cards: body is a normal block below the image */
.card-wide .cc-body,
.card-tall .cc-body,
.card-small .cc-body {
  position: static;
  display: block;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
.cc-location {
  font-size: .6rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .45rem;
}

.cc-name {
  font-family: var(--f-display);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: .75rem;
}

.cc-desc {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Hide desc on tall/small cards to keep them tight */
.card-tall .cc-desc,
.card-small .cc-desc { display: none; }

.cc-meta {
  display: flex;
  gap: 1.3rem;
  font-size: .7rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.cc-meta span {
  display: flex;
  align-items: center;
  gap: .4rem;
}
.cc-meta svg { flex-shrink: 0; opacity: .65; }

/* ─── CARD FOOTER ────────────────────────────────────────────── */
.cc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
}

/* Hero footer is part of the two-column body layout */
.card-hero .cc-footer {
  border-top: none;
  padding-top: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: .6rem;
}

.cc-price {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
}
.cc-price small {
  display: block;
  font-family: var(--f-body);
  font-size: .58rem;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.cc-price small.cc-price-from {
  margin-bottom: .1rem;
}

.cc-cta {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  transition: gap var(--transition), color var(--transition);
}
.cc-cta svg {
  transition: transform var(--transition);
  flex-shrink: 0;
}
.collection-card:hover .cc-cta { gap: .7rem; }
.collection-card:hover .cc-cta svg { transform: translateX(3px); }

/* ─── HERO CARD — WHITE TEXT OVERRIDES ───────────────────────── */
.card-hero .cc-name {
  font-size: clamp(2rem, 2.8vw, 3.2rem);
  color: var(--white);
  margin-bottom: .6rem;
}
.card-hero .cc-location { color: var(--gold); }
.card-hero .cc-desc { color: rgba(255,255,255,.65); margin-bottom: .8rem; }
.card-hero .cc-meta { color: rgba(255,255,255,.55); }
.card-hero .cc-meta svg { opacity: .45; }
.card-hero .cc-price { color: var(--white); }
.card-hero .cc-price small { color: rgba(255,255,255,.5); }
.card-hero .cc-cta { color: rgba(255,255,255,.75); }
.card-hero:hover .cc-cta { color: var(--white); }

/* ─── DARK MODE CARD BODY ────────────────────────────────────── */
body.dark .collection-card:not(.card-hero) { background: #1a1917; }
body.dark .card-wide .cc-body,
body.dark .card-tall .cc-body,
body.dark .card-small .cc-body { background: #1a1917; }

body.dark .collection-card:hover {
  box-shadow: 0 28px 80px rgba(0,0,0,.4);
}

/* ─── COLLECTION TOOLBAR ─────────────────────────────────────── */
.collection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto 2rem;
}

.collection-count {
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

.filter-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  position: relative;
  overflow: hidden;
  font-family: var(--f-body);
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  border: 1px solid var(--gold);
  padding: .72rem 1.6rem;
  cursor: pointer;
  transition: color .4s ease, transform .25s ease, box-shadow .3s ease;
}
/* Wipe-fill hover (matches site .btn pattern) */
.filter-toggle-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  z-index: 0;
}
.filter-toggle-btn:hover::before { transform: translateX(0); }
.filter-toggle-btn:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,169,110,.2);
}
.filter-toggle-btn svg,
.filter-toggle-btn span { position: relative; z-index: 1; }

/* Active state: filter is applied */
.filter-toggle-btn.filter-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.filter-toggle-btn.filter-active::before { display: none; }
.filter-toggle-btn.filter-active:hover {
  background: #b8904d;
  border-color: #b8904d;
  box-shadow: 0 8px 28px rgba(201,169,110,.35);
}

/* Dot indicator shown only when filter is active */
.filter-dot {
  display: none;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--white);
  flex-shrink: 0;
}
.filter-toggle-btn.filter-active .filter-dot { display: block; }

/* ─── EMPTY STATE ────────────────────────────────────────────── */
.collection-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 6rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
}

.collection-empty-icon {
  font-family: var(--f-display);
  font-size: 2rem;
  color: var(--border);
  line-height: 1;
  margin-bottom: .4rem;
}

.collection-empty-title {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--ink);
}

.collection-empty-sub {
  font-size: .78rem;
  color: var(--muted);
  max-width: 340px;
  line-height: 1.7;
}

.collection-empty-clear {
  margin-top: .6rem;
  font-family: var(--f-body);
  font-size: .62rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  background: none;
  border: 1px solid var(--gold);
  padding: .65rem 1.6rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.collection-empty-clear:hover {
  background: var(--gold);
  color: var(--white);
}

/* ─── FILTER OVERLAY ─────────────────────────────────────────── */
.filter-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14,14,13,.45);
  backdrop-filter: blur(2px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}
.filter-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ─── FILTER DRAWER ──────────────────────────────────────────── */
.filter-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 360px;
  max-width: 100vw;
  background: var(--white);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  box-shadow: -4px 0 40px rgba(0,0,0,.12);
}
.filter-drawer.open { transform: translateX(0); }

.filter-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.filter-drawer-title {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: .06em;
}

.filter-drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  padding: .3rem;
  display: flex;
  align-items: center;
  transition: color var(--transition);
}
.filter-drawer-close:hover { color: var(--gold); }

.filter-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.filter-drawer-actions {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  flex-shrink: 0;
}

.filter-apply-btn {
  font-family: var(--f-body);
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
  padding: .9rem;
  cursor: pointer;
  transition: background var(--transition), transform .2s;
}
.filter-apply-btn:hover {
  background: #b8904d;
  border-color: #b8904d;
  transform: translateY(-1px);
}

.filter-clear-btn {
  font-family: var(--f-body);
  font-size: .62rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: none;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: .75rem;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
}
.filter-clear-btn:hover { color: var(--gold); border-color: var(--gold); }

/* ─── FILTER SECTION ─────────────────────────────────────────── */
.filter-section { padding-bottom: 2rem; }

.filter-section-label {
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.75rem;
}

/* ─── PRICE DISPLAY ROW ──────────────────────────────────────── */
.price-display-row {
  display: flex;
  align-items: flex-end;
  gap: .75rem;
  margin-bottom: 2rem;
}

.price-display-block { flex: 1; }

.price-display-lbl {
  display: block;
  font-size: .55rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .5rem;
}

.price-display-val-wrap {
  display: flex;
  align-items: baseline;
  gap: .15rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: .35rem;
  transition: border-color var(--transition);
}
.price-display-val-wrap:focus-within { border-color: var(--gold); }

.price-currency {
  font-family: var(--f-display);
  font-size: 1rem;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}

.price-edit {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  background: none;
  border: none;
  outline: none;
  width: 100%;
  min-width: 0;
  line-height: 1;
  padding: 0;
  cursor: text;
}
.price-edit::selection { background: rgba(201,169,110,.25); }

.price-display-sep {
  font-size: 1rem;
  color: var(--border);
  padding-bottom: .4rem;
  flex-shrink: 0;
}

/* ─── DUAL-HANDLE SLIDER ─────────────────────────────────────── */
.price-slider-wrap {
  position: relative;
  height: 20px;
  margin: .5rem 0 .25rem;
}

.price-slider-track {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 2px;
  background: var(--border);
  border-radius: 1px;
  transform: translateY(-50%);
  pointer-events: none;
}

.price-slider-fill {
  position: absolute;
  top: 0;
  height: 100%;
  background: var(--gold);
  border-radius: 1px;
}

.range-thumb {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  pointer-events: none;
  margin: 0;
  padding: 0;
  outline: none;
}

/* Webkit thumb */
.range-thumb::-webkit-slider-runnable-track {
  background: transparent;
  height: 2px;
}
.range-thumb::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  cursor: grab;
  box-shadow: 0 2px 8px rgba(0,0,0,.14);
  transition: transform .18s, box-shadow .18s;
  margin-top: -8px;
}
.range-thumb::-webkit-slider-thumb:hover {
  box-shadow: 0 4px 16px rgba(201,169,110,.35);
  transform: scale(1.12);
}
.range-thumb:active::-webkit-slider-thumb {
  cursor: grabbing;
  transform: scale(1.15);
}

/* Firefox thumb */
.range-thumb::-moz-range-track { background: transparent; height: 2px; }
.range-thumb::-moz-range-thumb {
  pointer-events: all;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  cursor: grab;
  box-shadow: 0 2px 8px rgba(0,0,0,.14);
}

/* ─── DATE PICKER BUTTONS ─────────────────────────────────────── */
.date-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  margin-bottom: 1rem;
}

.date-picker-wrap { position: relative; }

/* Invisible input overlay — sits on top of the button so a direct click
   opens the native date picker without needing showPicker() */
.date-native-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
  border: none;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  background: transparent;
  color: transparent;
}
.date-native-overlay::-webkit-calendar-picker-indicator {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.date-luxury-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
  width: 100%;
  background: none;
  border: 1px solid var(--border);
  padding: 1rem 1.1rem;
  cursor: pointer;
  text-align: left;
  transition: border-color var(--transition), background var(--transition);
}
.date-picker-wrap:hover .date-luxury-btn {
  border-color: var(--gold);
  background: rgba(201,169,110,.04);
}
.date-luxury-btn.date-set {
  border-color: rgba(201,169,110,.45);
}
.date-picker-wrap:hover .date-luxury-btn.date-set {
  border-color: var(--gold);
}

.date-luxury-inner {
  display: flex;
  flex-direction: column;
  gap: .32rem;
  min-width: 0;
}

.date-luxury-lbl {
  font-size: .5rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.date-luxury-val {
  font-family: var(--f-display);
  font-size: .95rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
  font-style: italic;
}
.date-luxury-btn.date-set .date-luxury-val {
  color: var(--gold);
  font-style: normal;
}

.date-luxury-icon {
  color: var(--border);
  flex-shrink: 0;
  transition: color var(--transition);
}
.date-picker-wrap:hover .date-luxury-icon,
.date-luxury-btn.date-set .date-luxury-icon {
  color: var(--gold);
}

/* ─── FLEXIBLE TOGGLE ─────────────────────────────────────────── */
.flexible-row {
  display: flex;
  align-items: center;
  gap: .7rem;
  cursor: pointer;
  margin-bottom: .75rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.flexible-row.visible { opacity: 1; pointer-events: all; }

.flt-switch { position: relative; flex-shrink: 0; }
.flt-switch input { position: absolute; opacity: 0; width: 0; height: 0; }
.flt-track {
  display: block;
  width: 34px;
  height: 19px;
  background: var(--border);
  border-radius: 10px;
  position: relative;
  transition: background var(--transition);
}
.flt-thumb {
  position: absolute;
  top: 2px; left: 2px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,.18);
  transition: transform var(--transition);
}
.flt-switch input:checked ~ .flt-track { background: var(--gold); }
.flt-switch input:checked ~ .flt-track .flt-thumb { transform: translateX(15px); }
.flt-label {
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  user-select: none;
}

/* ─── INLINE CALENDAR ─────────────────────────────────────────── */
.cal-inline {
  margin-top: .5rem;
  border: 1px solid var(--border);
  padding: 1rem;
  background: var(--white);
  transition: border-color var(--transition);
}
.cal-inline:focus-within { border-color: rgba(201,169,110,.4); }

.cal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cal-heading {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: .04em;
}
.cal-nav {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  padding: .4rem .55rem;
  display: flex;
  align-items: center;
  transition: color var(--transition);
  border-radius: 0;
}
.cal-nav:hover { color: var(--gold); }

.cal-wdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: .35rem;
}
.cal-wday {
  text-align: center;
  font-size: .5rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: .4rem;
}

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

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  cursor: pointer;
  color: var(--ink);
  position: relative;
  transition: background .15s, color .15s;
  user-select: none;
  z-index: 0;
}
.cal-day:hover:not(.past):not(.empty) { background: rgba(201,169,110,.15); }
.cal-day.empty  { cursor: default; }
.cal-day.past   { color: var(--border); cursor: not-allowed; }

/* Today marker */
.cal-day.today::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
}

/* Range background (between start and end) */
.cal-day.in-range {
  background: rgba(201,169,110,.18);
  border-radius: 0;
}

/* Start / end circles */
.cal-day.range-start,
.cal-day.range-end {
  background: var(--gold);
  color: #fff;
  font-weight: 500;
}
.cal-day.range-start { border-radius: 2px 0 0 2px; }
.cal-day.range-end   { border-radius: 0 2px 2px 0; }
.cal-day.range-start.range-end { border-radius: 2px; }

/* Hover preview */
.cal-day.hover-range { background: rgba(201,169,110,.09); }
.cal-day.hover-end   { background: rgba(201,169,110,.28); color: var(--ink); border-radius: 0 2px 2px 0; }

.cal-hint {
  margin-top: .85rem;
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  min-height: 1em;
}

/* ─── FILTER DIVIDER ─────────────────────────────────────────── */
.filter-divider {
  height: 1px;
  background: var(--border);
  margin: 0 0 2rem;
}

/* ─── GUESTS COUNTER ─────────────────────────────────────────── */
.guests-counter-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
}

.guests-counter {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}
.guests-counter:focus-within { border-color: var(--gold); }

.guests-btn {
  width: 48px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
}
.guests-btn:hover:not(:disabled) {
  background: var(--gold);
  color: var(--white);
}
.guests-btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.guests-input {
  width: 72px;
  height: 50px;
  text-align: center;
  font-family: var(--f-display);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--ink);
  background: none;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  outline: none;
  padding: 0;
  transition: background var(--transition);
}
.guests-input:focus { background: rgba(201,169,110,.05); }
.guests-input::selection { background: rgba(201,169,110,.25); }

.guests-hint {
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  min-height: 1em;
  transition: color var(--transition);
}
.guests-hint.hint-active { color: var(--gold); }

/* Dark mode drawer */
body.dark .filter-drawer { background: #1a1917; }
body.dark .filter-apply-btn { color: #0e0e0d; }

/* ─── TABLET (≤ 900px) ───────────────────────────────────────── */
@media (max-width: 900px) {
  .collection-header { padding: 4rem 1.5rem 3.5rem; }
  .collection-main   { padding: 3rem 1.5rem 5rem; }

  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .card-hero  { grid-column: 1 / -1; }
  .card-wide,
  .card-tall,
  .card-small { grid-column: span 1; }

  .card-hero .cc-img-wrap  { aspect-ratio: 4/3; min-height: auto; }
  .card-tall .cc-img-wrap  { aspect-ratio: 4/3; }

  .card-hero .cc-body {
    flex-direction: column;
    align-items: flex-start;
    gap: .4rem;
    padding: 2rem;
  }
  .card-hero .cc-name { font-size: 1.8rem; }
  .card-hero .cc-footer { flex-direction: row; align-items: center; }

  /* Show desc on tall at tablet */
  .card-tall .cc-desc { display: -webkit-box; }

  /* Drawer from bottom on tablet */
  .filter-drawer {
    top: auto;
    width: 100%;
    max-height: 85vh;
    transform: translateY(100%);
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -4px 40px rgba(0,0,0,.18);
  }
  .filter-drawer.open { transform: translateY(0); }
}

/* ─── MOBILE (≤ 560px) ───────────────────────────────────────── */
@media (max-width: 560px) {
  .collection-grid { grid-template-columns: 1fr; }

  .card-hero,
  .card-wide,
  .card-tall,
  .card-small { grid-column: 1; }

  .card-hero .cc-name { font-size: 1.6rem; }
  .card-wide .cc-desc,
  .card-tall .cc-desc { display: -webkit-box; }
}
