/* Hoteles.mx — design tokens & base */

:root {
  --red: #DC0807;
  --red-deep: #B30606;
  --red-soft: #FDECEC;
  --paper: #F6F1E8;
  --paper-2: #FBF7EE;
  --paper-3: #EFE7D5;
  --ink: #181410;
  --ink-2: #3D362F;
  --mute: #8B847B;
  --line: #E4DBC9;
  --line-2: #D6CAB1;
  --green: #1F4D3F;
  --whatsapp: #25D366;
  --whatsapp-deep: #128C7E;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper-2);
  color: var(--ink);
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

/* Typography utilities */
.display {
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.96;
  text-wrap: balance;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--mute);
}
.serif-italic {
  font-style: italic;
  font-family: 'Manrope', serif;
}

/* Layout */
.shell { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.shell-wide { max-width: 1440px; margin: 0 auto; padding: 0 32px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform .12s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-deep); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: #000; }
.btn-ghost { background: transparent; border: 1.5px solid var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-paper { background: var(--paper-3); color: var(--ink); }
.btn-paper:hover { background: var(--line-2); }
.btn-wa { background: var(--whatsapp); color: #0d3b2c; }
.btn-wa:hover { background: var(--whatsapp-deep); color: #fff; }
.btn-lg { padding: 18px 28px; font-size: 16px; }
.btn-block { width: 100%; }

/* Chip */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--paper-3);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
}
.chip-outline {
  background: transparent;
  border: 1px solid var(--line-2);
}
.chip-red { background: var(--red-soft); color: var(--red); }
.chip-ink { background: var(--ink); color: var(--paper-2); }

/* Placeholder image */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg,
      rgba(24,20,16,0.06) 0 1px,
      transparent 1px 9px),
    var(--paper-3);
  color: var(--ink-2);
  overflow: hidden;
  border-radius: var(--radius);
}
.ph::after {
  content: attr(data-label);
  position: absolute;
  inset: auto 12px 12px 12px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  background: var(--paper-2);
  padding: 4px 8px;
  border-radius: 4px;
  width: max-content;
  max-width: calc(100% - 24px);
  opacity: 0.88;
}
.ph-flat { background: var(--paper-3); border-radius: var(--radius); }

/* ───────────────────────────────────────────────
   Typographic placeholder (pre-imagery)
   Used on .dest-tile and .hcard while real
   photography is being collected. Replace by
   adding `background-image: url(...)` and the
   class `ph-typo--filled` on the same element.
   ─────────────────────────────────────────────── */
.ph-typo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background-color: var(--ph-bg, #181410);
  background-size: cover;
  background-position: center;
  color: #fff;
  isolation: isolate;
}
.ph-typo-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 900;
  font-size: 200px;
  letter-spacing: -0.05em;
  line-height: 0.82;
  color: var(--ph-accent, #fff);
  opacity: 0.42;
  transform: rotate(-18deg) translate(-2%, -8%);
  white-space: nowrap;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.ph-typo-text--stacked {
  flex-direction: column;
  align-items: center;
  white-space: normal;
}
.ph-typo-text--stacked > span {
  display: block;
  white-space: nowrap;
}
.ph-typo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.78) 0%,
    rgba(0,0,0,0.55) 22%,
    rgba(0,0,0,0.10) 50%,
    rgba(0,0,0,0) 65%
  );
  pointer-events: none;
  z-index: 1;
}
/* When a real photo gets dropped in, neutralize the typographic chrome */
.ph-typo--filled .ph-typo-text { display: none; }
.ph-typo--filled .ph-typo-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 55%);
}
/* Editorial markers sit above the gradient */
.ph-typo .ph-marker,
.ph-typo .ph-monogram {
  position: absolute;
  z-index: 2;
}
.ph-typo .ph-marker {
  top: 14px;
  left: 14px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
}
.ph-typo .ph-marker::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--ph-accent, #fff);
  flex-shrink: 0;
}
.ph-typo .ph-monogram {
  top: 14px;
  right: 14px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ph-accent, #fff);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 6px;
  padding: 5px 9px;
  background: rgba(0,0,0,0.18);
  backdrop-filter: blur(4px);
}
/* Compact variant for hotel cards (4:3, ~200–260px tall) */
.ph-typo--compact .ph-typo-text { font-size: 120px; }
.ph-typo--compact .ph-marker { top: 12px; left: 12px; font-size: 9.5px; }
.ph-typo--compact .ph-monogram { top: 12px; right: 12px; font-size: 12px; padding: 4px 8px; }
/* Wide variant for hero / 3:2 destination cards */
.ph-typo--wide .ph-typo-text { font-size: 240px; }
/* Hero variant — fills parent absolutely (destination hero, 21:9) */
.ph-typo--hero {
  position: absolute;
  inset: 0;
  border-radius: 0;          /* parent .dest-hero clips corners */
}
.ph-typo--hero .ph-typo-text {
  font-size: clamp(200px, 22vw, 380px);
  opacity: 0.28;             /* more subtle behind the hero overlay + h1 */
}
/* Gallery variant — single panoramic banner (hotel detail, no photo yet) */
.ph-typo--gallery {
  height: 520px;
  border-radius: var(--radius-lg);
}
.ph-typo--gallery .ph-typo-text {
  font-size: clamp(140px, 16vw, 260px);
}
.ph-typo--gallery .ph-marker  { top: 18px; left: 18px; font-size: 11px; }
.ph-typo--gallery .ph-monogram {
  top: 18px; right: 18px;
  font-size: 14px; padding: 6px 12px;
}
/* Intensity levels (driven by body[data-ph-intensity]) */
[data-ph-intensity="subtle"] .ph-typo-text { opacity: 0.20; }
[data-ph-intensity="medium"] .ph-typo-text { opacity: 0.32; }
[data-ph-intensity="bold"]   .ph-typo-text { opacity: 0.42; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}
.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.logo .dot { color: var(--red); }
.logo .tld { color: var(--red); font-weight: 700; }
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
}
.nav a:hover, .nav a.active { color: var(--red); }
.nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -22px;
  height: 2px;
  background: var(--red);
}

/* Footer */
.footer {
  background: var(--ink);
  color: var(--paper-2);
  padding: 72px 0 32px;
  margin-top: 80px;
}
.footer h4 {
  margin: 0 0 16px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-3);
  font-weight: 600;
}
.footer a { color: var(--paper-2); opacity: 0.75; font-size: 14px; }
.footer a:hover { opacity: 1; color: var(--red); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 48px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--mute);
}

/* Hotel card */
.hcard { cursor: pointer; transition: transform .18s ease; }
.hcard:hover { transform: translateY(-3px); }
.hcard .ph { aspect-ratio: 4/3; }
/* Typographic placeholder variant */
.hcard .hcard-img-ph { border-radius: var(--radius) var(--radius) 0 0; }
.hcard .hcard-meta { padding: 14px 4px 0; }
.hcard .hcard-row1 {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
}
.hcard .hcard-title {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.hcard .hcard-dest {
  font-size: 13px;
  color: var(--mute);
  margin-top: 2px;
}
.hcard .hcard-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}
.hcard .hcard-price small { font-weight: 500; color: var(--mute); }
.hcard .hcard-tags { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }

/* Destination tile */
.dest-tile { cursor: pointer; position: relative; overflow: hidden; border-radius: var(--radius); transition: transform .2s ease; }
.dest-tile:hover { transform: translateY(-3px); }
.dest-tile .ph { aspect-ratio: 3/4; border-radius: var(--radius); }
/* Typographic placeholder variant — same sizing role as .ph */
.dest-tile .dest-tile-ph { aspect-ratio: 3/4; border-radius: 0; } /* outer .dest-tile clips corners */
.dest-tile .dest-tile-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(24,20,16,0.7) 70%, rgba(24,20,16,0.9) 100%);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.dest-tile h3 {
  margin: 0;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.dest-tile .dest-tile-count {
  font-size: 12px;
  opacity: 0.85;
  margin-top: 4px;
}

/* Search bar */
.searchbar {
  display: flex;
  align-items: stretch;
  background: var(--paper-2);
  border-radius: 999px;
  padding: 8px;
  box-shadow: 0 18px 40px -16px rgba(24,20,16,0.25);
  border: 1px solid var(--line);
}
.searchbar .sb-field {
  flex: 1;
  padding: 10px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  cursor: pointer;
  border-radius: 999px;
  transition: background .15s ease;
}
.searchbar .sb-field:hover { background: var(--paper-3); }
.searchbar .sb-field + .sb-field { border-left: 1px solid var(--line); }
.searchbar .sb-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--mute);
}
.searchbar .sb-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.searchbar .sb-value.placeholder { color: var(--mute); font-weight: 500; }
.searchbar .sb-btn {
  align-self: center;
  margin-left: 8px;
}

/* Section helpers */
.section { padding: 64px 0; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 28px; }
.section-head h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1;
}
.section-head .section-sub {
  margin: 8px 0 0;
  color: var(--mute);
  font-size: 15px;
  max-width: 480px;
}
.section-head .link {
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
}
.section-head .link::after { content: ' →'; }

/* Grid utilities */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* Hero */
.hero {
  position: relative;
  padding: 32px 0 0;
}
.hero-canvas {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/8;
  background: var(--paper-3);
}
.hero-canvas .ph {
  position: absolute;
  inset: 0;
  border-radius: 0;
}
.hero-canvas::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24,20,16,0.1) 0%, rgba(24,20,16,0.55) 100%);
  z-index: 1;
}
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px;
  color: #fff;
}
.hero-headline {
  font-size: 76px;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  max-width: 800px;
  text-wrap: balance;
}
.hero-headline .accent { color: var(--red); }
.hero-headline em {
  font-style: italic;
  font-weight: 500;
}
.hero-stripe {
  background: var(--ink);
  color: var(--paper-2);
  display: flex;
  align-items: center;
  padding: 14px 0;
  overflow: hidden;
  font-size: 13px;
  letter-spacing: 0.12em;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 32px;
  border-radius: 999px;
}
.hero-stripe span { display: inline-flex; align-items: center; gap: 24px; padding: 0 12px; white-space: nowrap; }
.hero-stripe .dot { width: 6px; height: 6px; background: var(--red); border-radius: 999px; }

/* Differentiator strip */
.diff-strip {
  background: var(--ink);
  color: var(--paper-2);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.diff-strip h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.diff-strip h2 .accent { color: var(--red); }
.diff-item { display: flex; flex-direction: column; gap: 8px; }
.diff-item .diff-num {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--red);
  font-weight: 700;
}
.diff-item h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.diff-item p {
  margin: 0;
  font-size: 14px;
  color: var(--mute);
  line-height: 1.55;
}

/* Filters */
.filter-rail {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 24px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  align-self: start;
}
.filter-rail h4 {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--mute);
}
.filter-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  cursor: pointer;
}
.filter-group label input { accent-color: var(--red); }
.range-row { display: flex; gap: 8px; }
.range-row input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  background: var(--paper-2);
}

/* Destination editorial block */
.dest-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding: 64px 0;
  align-items: start;
}
.dest-editorial .ed-kicker {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 18px;
}
.dest-editorial h1 {
  font-size: 88px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin: 0 0 24px;
}
.dest-editorial .ed-body {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 460px;
}
.dest-editorial .ed-body p { margin: 0 0 16px; }
.dest-editorial .ed-body p:first-letter {
  font-size: 56px;
  font-weight: 800;
  float: left;
  line-height: 0.85;
  margin: 6px 10px 0 0;
  color: var(--red);
}
.dest-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 28px;
}
.dest-meta-grid > div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.dest-meta-grid > div:nth-child(odd) { padding-right: 16px; }
.dest-meta-grid > div:nth-child(even) { padding-left: 16px; border-left: 1px solid var(--line); }
.dest-meta-grid .dm-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--mute);
  margin-bottom: 4px;
}
.dest-meta-grid .dm-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

/* Hotel detail */
.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gallery > div { border-radius: 0; }
.gallery > div:first-child { grid-row: span 2; }

.hotel-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  padding: 48px 0;
  align-items: start;
}
.booking-card {
  position: sticky;
  top: 96px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 14px 40px -16px rgba(24,20,16,0.18);
}
.booking-card .bc-price {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.booking-card .bc-price small {
  font-size: 14px;
  font-weight: 500;
  color: var(--mute);
}
.booking-card .bc-divider {
  height: 1px;
  background: var(--line);
  margin: 18px 0;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
  margin-top: 16px;
}
.amenity {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-2);
}
.amenity .am-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--paper-3);
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 13px;
  color: var(--red);
}

.review-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
}
.review-card .rv-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.review-card .rv-avatar {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: var(--paper-3);
  display: grid; place-items: center;
  font-weight: 800;
  color: var(--red);
}
.review-card .rv-name { font-weight: 700; font-size: 15px; }
.review-card .rv-meta { font-size: 12px; color: var(--mute); }
.review-card p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--ink-2); }

/* Star rating display */
.stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
}
.stars .star { color: var(--red); }
.stars .num { color: var(--ink); margin-left: 4px; }

/* Map placeholder */
.map-ph {
  aspect-ratio: 21/9;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 60% 50%, var(--red) 0 6px, transparent 7px),
    repeating-linear-gradient(45deg,
      rgba(24,20,16,0.04) 0 1px, transparent 1px 20px),
    repeating-linear-gradient(-45deg,
      rgba(24,20,16,0.04) 0 1px, transparent 1px 20px),
    var(--paper-3);
  position: relative;
}
.map-ph::after {
  content: 'PLACEHOLDER · MAP';
  position: absolute;
  top: 12px; left: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.04em;
  background: var(--paper-2);
  padding: 4px 8px;
  border-radius: 4px;
}

/* Active screen indicator */
.crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--mute);
  margin: 24px 0 16px;
}
.crumbs a { color: var(--mute); }
.crumbs a:hover { color: var(--red); }
.crumbs .sep { opacity: 0.5; }

/* Density tweak hook */
[data-density="compact"] .grid-4 { gap: 16px; }
[data-density="compact"] .grid-3 { gap: 16px; }
[data-density="compact"] .section { padding: 48px 0; }
[data-density="spacious"] .grid-4 { gap: 32px; }
[data-density="spacious"] .grid-3 { gap: 32px; }
[data-density="spacious"] .section { padding: 88px 0; }

/* Card style tweak */
[data-cardstyle="horizontal"] .hcard {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  align-items: center;
}
[data-cardstyle="horizontal"] .hcard .ph {
  aspect-ratio: 1/1;
  border-radius: var(--radius);
}
[data-cardstyle="horizontal"] .hcard .hcard-meta { padding: 0; }
[data-cardstyle="overlay"] .hcard { position: relative; }
[data-cardstyle="overlay"] .hcard .ph {
  aspect-ratio: 3/4;
}
[data-cardstyle="overlay"] .hcard .hcard-meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px;
  color: #fff;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.85) 100%);
  border-radius: 0 0 var(--radius) var(--radius);
}
[data-cardstyle="overlay"] .hcard .hcard-title { color: #fff; }
[data-cardstyle="overlay"] .hcard .hcard-dest { color: rgba(255,255,255,0.75); }
[data-cardstyle="overlay"] .hcard .hcard-price { color: #fff; }
[data-cardstyle="overlay"] .hcard .hcard-price small { color: rgba(255,255,255,0.7); }
[data-cardstyle="overlay"] .hcard .hcard-tags { display: none; }
