/* ------------------------------------------------------------------ *
 * cottages.com replica - demo styling for the Salesforce Personalization
 * behaviour-capture surface. Re-skin/inspiration build (no copied assets).
 *
 * All brand tokens are CSS variables (house standard). Brand palette and
 * font are taken from the replication spec (cottages.com served CSS).
 * ------------------------------------------------------------------ */
:root {
  /* --- Brand tokens (configurable) --- */
  --brand-yellow: #ffdd00;   /* signature cottages.com yellow - primary CTAs */
  --brand-yellow-dk: #f5cf00; /* hover shade for yellow */
  --brand-green: #78be3a;    /* trust ticks, included markers, success */
  --brand-green-dk: #63a52d;
  --ink: #111111;            /* headings + primary text (near-black) */
  --muted: #666666;          /* secondary text, meta, placeholders */
  --bg: #fdfdfd;             /* near-white app background */
  --surface: #ffffff;        /* cards, header, drawers */
  --link-blue: #007aff;      /* occasional system/link blue - used sparingly */
  --line: #e7e7e7;           /* hairline borders */
  --line-2: #f0f0f0;
  /* --- Layout tokens --- */
  --radius: 14px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.12);
  --maxw: 1180px;
  --font: "DM Sans", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3 { line-height: 1.14; letter-spacing: -0.025em; margin: 0; }

/* Browser surfaces themed from the brand palette (not left to UA defaults) */
::selection { background: var(--brand-yellow); color: var(--ink); }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; border-radius: 4px; }
html { caret-color: var(--ink); accent-color: var(--brand-green); scrollbar-color: #cfcfcf transparent; }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-thumb { background: #d0d0d0; border: 3px solid var(--bg); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: #b7b7b7; }

/* ------------------------------------------------------------------ *
 * Header + footer chrome
 * ------------------------------------------------------------------ */
.c-hd {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 32px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
}
.c-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.c-logo img {
  height: 30px;
  width: auto;
  display: block;
}
.c-nav { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.c-nav a { font-weight: 500; font-size: 15px; color: var(--ink); transition: color 0.15s; }
.c-nav a:hover { color: var(--brand-green-dk); }
.c-nav .c-phone { color: var(--muted); font-weight: 600; }
.c-signin {
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  font-family: var(--font);
  font-size: 15px;
  transition: background 0.15s, color 0.15s;
}
.c-signin:hover { background: var(--ink); color: #fff; }
.c-basket-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}
.c-basket-count {
  background: var(--brand-yellow);
  color: var(--ink);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.c-main { max-width: var(--maxw); margin: 0 auto; padding: 32px 24px 64px; }

.c-ft {
  background: #fafafa;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  padding: 40px 24px 48px;
}
.c-ft-inner { max-width: var(--maxw); margin: 0 auto; }
.c-ft-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
  margin-bottom: 28px;
}
.c-ft-cols h4 { font-size: 15px; color: var(--ink); margin-bottom: 12px; }
.c-ft-cols a { display: block; padding: 4px 0; }
.c-ft-cols a:hover { color: var(--ink); text-decoration: underline; }
.c-ft-legal {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.c-ft-awaze { font-weight: 600; color: var(--ink); }
.c-ft-awaze .mark { color: var(--brand-green-dk); }

/* ------------------------------------------------------------------ *
 * Icons + ticks (drawn SVG, one consistent stroke)
 * ------------------------------------------------------------------ */
.ic { flex: none; vertical-align: -3px; }
.tick { color: var(--brand-green-dk); display: inline-flex; align-items: center; }
.tick .ic { vertical-align: middle; }

/* ------------------------------------------------------------------ *
 * Buttons
 * ------------------------------------------------------------------ */
.btn {
  display: inline-block;
  background: var(--brand-yellow);
  color: var(--ink); /* black text on yellow - the signature combo */
  font-weight: 700;
  font-size: 16px;
  font-family: var(--font);
  padding: 14px 28px;
  border: 0;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-align: center;
  transition: transform 0.12s, box-shadow 0.15s, background 0.15s;
  box-shadow: var(--shadow-sm);
}
.btn:hover { background: var(--brand-yellow-dk); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn.block { display: block; width: 100%; }
.btn-secondary {
  background: var(--surface);
  color: var(--ink);
  border: 1.5px solid var(--ink);
  box-shadow: none;
}
.btn-secondary:hover { background: var(--ink); color: #fff; }

/* ------------------------------------------------------------------ *
 * Hero + search widget
 * ------------------------------------------------------------------ */
/* Hero: the background lives on a ::before layer so the hero box itself
 * never has overflow:hidden. That is what previously clipped the search
 * widget (it was absolutely positioned below the hero's bottom edge) and
 * caused the "image scrolls up" jump when an input inside the clipped
 * container took focus. The widget now sits in normal flow inside the hero,
 * fully visible, and the guests panel can drop below it without being cut. */
.hero {
  position: relative;
  isolation: isolate;
  border-radius: var(--radius);
  color: #fff;
  padding: clamp(44px, 7vw, 88px) clamp(24px, 4vw, 52px) clamp(28px, 4vw, 44px);
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: min(72vh, 560px);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background-image:
    linear-gradient(180deg, rgba(20,28,20,0.12) 0%, rgba(20,28,20,0.18) 44%, rgba(20,28,20,0.66) 100%),
    url("images/hero-cottage.jpg");
  background-size: cover;
  background-position: center 58%;
}
.hero h1 { font-size: clamp(32px, 5vw, 52px); max-width: 20ch; margin-bottom: 12px; text-shadow: 0 2px 20px rgba(0,0,0,0.34); }
.hero p { font-size: clamp(16px, 2.1vw, 20px); max-width: 48ch; margin-bottom: clamp(22px, 3vw, 34px); text-shadow: 0 1px 14px rgba(0,0,0,0.32); }

/* Search widget - a white bar seated in the lower third of the hero */
.search-widget {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 0 20px 54px rgba(0,0,0,0.24), 0 2px 6px rgba(0,0,0,0.08);
  padding: 12px;
  color: var(--ink);
  width: 100%;
}
.hero .search-widget { align-self: stretch; }
.sw-row {
  display: grid;
  grid-template-columns: 2fr 1.4fr 1.6fr auto;
  gap: 10px;
  align-items: stretch;
}
.sw-field { display: flex; flex-direction: column; gap: 5px; position: relative; justify-content: center; padding: 6px 6px 6px 14px; border-left: 1px solid var(--line-2); }
.sw-field:first-child { border-left: 0; }
.sw-field label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); }
.sw-field input,
.sw-field select,
.sw-guests-toggle {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  padding: 6px 2px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  width: 100%;
  cursor: pointer;
}
.sw-field input::placeholder { color: var(--muted); font-weight: 400; }
.sw-field input:focus,
.sw-field select:focus { outline: 2px solid var(--brand-yellow); outline-offset: 3px; border-radius: 6px; }
.sw-go { justify-content: center; padding: 4px; border-left: 0; }
.sw-field .btn { padding: 16px 32px; width: 100%; }
.sw-guests-toggle { text-align: left; padding-left: 0; }
.sw-guests-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 8px 16px;
  z-index: 20;
  display: none;
  min-width: 260px;
}
.sw-guests-panel.open { display: block; }
.stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-2);
}
.stepper:last-of-type { border-bottom: 0; }
.stepper-l strong { display: block; font-size: 15px; }
.stepper-l span { font-size: 13px; color: var(--muted); }
.stepper-ctrls { display: flex; align-items: center; gap: 12px; }
.step-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--surface);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
  color: var(--ink);
  transition: border-color 0.15s;
}
.step-btn:hover:not(:disabled) { border-color: var(--ink); }
.step-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.step-val { min-width: 20px; text-align: center; font-weight: 700; }

/* ------------------------------------------------------------------ *
 * Trust strip
 * ------------------------------------------------------------------ */
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 36px;
  justify-content: center;
  padding: 8px 0 40px;
}
.trust span { font-size: 14px; font-weight: 600; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; }
.trust .tick { color: var(--brand-green-dk); font-weight: 800; }

/* ------------------------------------------------------------------ *
 * Section headings
 * ------------------------------------------------------------------ */
.sec-head { display: flex; align-items: baseline; justify-content: space-between; margin: 40px 0 18px; }
.sec-head h2 { font-size: 26px; }
.sec-head a { font-weight: 700; color: var(--ink); border-bottom: 2px solid var(--brand-yellow); padding-bottom: 2px; }
.sec-head a:hover { color: var(--brand-green-dk); }

/* ------------------------------------------------------------------ *
 * Property card grid
 * ------------------------------------------------------------------ */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s, box-shadow 0.15s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.card:hover .card-media img { transform: scale(1.05); }
.card-badges { position: absolute; top: 10px; left: 10px; display: flex; gap: 6px; flex-wrap: wrap; }
.badge {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.badge.green { background: var(--brand-green); color: #fff; }
.badge.yellow { background: var(--brand-yellow); color: var(--ink); }
.card-body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-loc { font-size: 13px; color: var(--muted); font-weight: 600; }
.card-body h3 { font-size: 19px; }
.card-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: #f4f4f4;
  color: var(--ink);
}
.chip.pet { background: rgba(120,190,58,0.15); color: var(--brand-green-dk); }
.spec-row { display: flex; flex-wrap: wrap; gap: 14px; font-size: 13px; color: var(--muted); font-weight: 600; }
.spec-row .spec { display: inline-flex; align-items: center; gap: 5px; }
.card-foot { display: flex; align-items: flex-end; justify-content: space-between; margin-top: auto; padding-top: 8px; }
.rating { font-size: 13px; font-weight: 700; display: inline-flex; align-items: center; gap: 4px; }
.rating .star { color: var(--brand-yellow); }
.price { font-weight: 700; }
.price .amt { font-size: 22px; }
.price .per { font-size: 12px; color: var(--muted); font-weight: 600; display: block; }
.card .btn-secondary { align-self: stretch; margin-top: 4px; }

/* ------------------------------------------------------------------ *
 * Search / listing page layout
 * ------------------------------------------------------------------ */
.listing { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }
.facets {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  position: sticky;
  top: 84px;
}
.facets h3 { font-size: 18px; margin-bottom: 6px; }
.facet-group { padding: 16px 0; border-bottom: 1px solid var(--line-2); }
.facet-group:last-child { border-bottom: 0; }
.facet-group > h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); margin-bottom: 10px; }
.facet-check { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 15px; cursor: pointer; }
.facet-check input { width: 18px; height: 18px; accent-color: var(--brand-green); cursor: pointer; }
.facet-group select,
.facet-group input[type="range"] { width: 100%; font-family: var(--font); }
.facet-group select { padding: 10px 12px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); font-size: 15px; }
.facet-price-val { font-weight: 700; font-size: 15px; margin-top: 6px; }
.facet-reset { background: none; border: 0; color: var(--link-blue); font-weight: 600; cursor: pointer; font-family: var(--font); font-size: 14px; padding: 12px 0 0; }
.facet-reset:hover { text-decoration: underline; }

.results-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; flex-wrap: wrap; gap: 12px; }
.results-head h1 { font-size: 26px; }
.results-head .count { color: var(--muted); font-weight: 600; font-size: 15px; }
.results-sort { display: flex; align-items: center; gap: 10px; }
.results-sort select { padding: 10px 12px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); font-family: var(--font); font-size: 14px; }
.no-results { padding: 40px; text-align: center; color: var(--muted); background: var(--surface); border: 1px dashed var(--line); border-radius: var(--radius); }

/* Filter drawer toggle (mobile) */
.facet-toggle { display: none; }

/* ------------------------------------------------------------------ *
 * Recommendation container (SP web-campaign target - kept empty)
 * ------------------------------------------------------------------ */
.reco:empty { display: none; }
.reco {
  background: var(--surface);
  border: 1px dashed var(--brand-green);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 24px 0;
}
.reco h4 { color: var(--brand-green-dk); font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; }

/* ------------------------------------------------------------------ *
 * Property detail page
 * ------------------------------------------------------------------ */
.pdp-gallery { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; gap: 10px; border-radius: var(--radius); overflow: hidden; margin-bottom: 8px; }
.pdp-gallery .g-main { grid-row: 1 / 3; position: relative; }
.pdp-gallery img { width: 100%; height: 100%; object-fit: cover; }
.pdp-gallery .g-main img { min-height: 340px; }
.pdp-gallery .g-thumb { position: relative; min-height: 165px; }
.pdp-photocount { position: absolute; bottom: 12px; right: 12px; background: rgba(0,0,0,0.65); color: #fff; font-size: 13px; font-weight: 600; padding: 6px 12px; border-radius: var(--radius-pill); }

.pdp-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; margin-top: 24px; }
.pdp-title-type { color: var(--muted); font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 0.03em; }
.pdp-layout h1 { font-size: 34px; margin: 6px 0 10px; }
.pdp-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.pdp-specrow { display: flex; flex-wrap: wrap; gap: 28px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: 16px 0 24px; }
.pdp-spec { text-align: center; }
.pdp-spec .n { font-size: 24px; font-weight: 700; }
.pdp-spec .l { font-size: 13px; color: var(--muted); font-weight: 600; }
.pdp-section { margin: 28px 0; }
.pdp-section h2 { font-size: 22px; margin-bottom: 12px; }
.pdp-section p { color: #333; max-width: 68ch; }
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; }
.feature-list li { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.feature-list .tick { color: var(--brand-green-dk); font-weight: 800; }
.goodtoknow { background: #fafafa; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; }
.goodtoknow dl { margin: 0; display: grid; grid-template-columns: 160px 1fr; gap: 12px 20px; }
.goodtoknow dt { font-weight: 700; }
.goodtoknow dd { margin: 0; color: var(--muted); }
.pdp-map { height: 220px; border-radius: var(--radius); background: linear-gradient(120deg, #d7e8dd, #cfe0ec); display: flex; align-items: center; justify-content: center; color: var(--muted); font-weight: 600; border: 1px solid var(--line); }

/* Booking widget (sticky) */
.booking {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 22px;
  position: sticky;
  top: 84px;
}
.booking .b-price { font-size: 15px; color: var(--muted); font-weight: 600; }
.booking .b-price strong { font-size: 28px; color: var(--ink); display: block; }
.booking .b-block { margin: 16px 0; }
.booking label.b-label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); margin-bottom: 8px; }
.duration-opts { display: flex; gap: 8px; }
.duration-opt {
  flex: 1;
  text-align: center;
  padding: 12px 4px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 700;
  background: var(--surface);
  font-family: var(--font);
  font-size: 15px;
  transition: border-color 0.15s, background 0.15s;
}
.duration-opt small { display: block; font-weight: 600; color: var(--muted); font-size: 11px; }
.duration-opt.active { border-color: var(--ink); background: #fffbe0; }
.booking input[type="date"] { width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); font-family: var(--font); font-size: 15px; }
.b-summary { font-size: 14px; color: var(--muted); margin: 4px 0 0; }
.b-lowdep { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--brand-green-dk); margin-top: 10px; }

/* ------------------------------------------------------------------ *
 * Basket + checkout + confirmation
 * ------------------------------------------------------------------ */
.flow-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.summary-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.summary-card .sc-media { aspect-ratio: 16 / 9; }
.summary-card .sc-media img { width: 100%; height: 100%; object-fit: cover; }
.summary-card .sc-body { padding: 20px 22px; }
.summary-card h2 { font-size: 22px; margin-bottom: 4px; }
.summary-card .sc-loc { color: var(--muted); font-weight: 600; margin-bottom: 14px; }
.sc-detail { display: flex; flex-wrap: wrap; gap: 10px 28px; padding: 14px 0; border-top: 1px solid var(--line-2); }
.sc-detail div { font-size: 14px; }
.sc-detail .k { color: var(--muted); font-weight: 600; }
.sc-detail .v { font-weight: 700; }

.price-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  position: sticky;
  top: 84px;
}
.price-panel h3 { font-size: 20px; margin-bottom: 14px; }
.price-line { display: flex; justify-content: space-between; padding: 10px 0; font-size: 15px; }
.price-line.total { border-top: 2px solid var(--ink); margin-top: 8px; padding-top: 14px; font-size: 20px; font-weight: 700; }
.price-line .lbl { color: var(--muted); }
.reassure { font-size: 13px; color: var(--brand-green-dk); font-weight: 600; margin-top: 14px; display: inline-flex; gap: 6px; }

.empty-state { text-align: center; padding: 60px 20px; }
.empty-state h1 { font-size: 28px; margin-bottom: 12px; }
.empty-state p { color: var(--muted); margin-bottom: 24px; }

/* Checkout form */
.checkout-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checkout-form .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 700; }
.field input {
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 15px;
}
.field input:focus { outline: 2px solid var(--brand-yellow); border-color: var(--brand-yellow); }

/* Confirmation */
.conf-hero { text-align: center; padding: 40px 20px; }
.conf-tick {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--brand-green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 10px 26px rgba(120,190,58,0.4);
}
.conf-tick .ic { width: 40px; height: 40px; vertical-align: 0; }
.conf-ref {
  display: inline-block;
  background: var(--brand-yellow);
  color: var(--ink);
  font-weight: 700;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  margin: 8px 0 24px;
  letter-spacing: 0.06em;
}

/* ------------------------------------------------------------------ *
 * Responsive
 * ------------------------------------------------------------------ */
@media (max-width: 960px) {
  .pdp-layout, .flow-layout { grid-template-columns: 1fr; }
  .booking, .price-panel, .facets { position: static; }
}
@media (max-width: 820px) {
  .listing { grid-template-columns: 1fr; }
  .facet-toggle {
    display: block;
    width: 100%;
    margin-bottom: 16px;
  }
  .facets { display: none; }
  .facets.open { display: block; }
  .sw-row { grid-template-columns: 1fr; gap: 2px; }
  .sw-field { border-left: 0; border-top: 1px solid var(--line-2); padding: 10px 6px; }
  .sw-field:first-child { border-top: 0; }
  .sw-field:last-child { padding-top: 12px; }
  .sw-field:last-child label { display: none; }
  .sw-field .btn { width: 100%; height: auto; }
  .hero { min-height: 0; padding-bottom: clamp(20px, 5vw, 32px); }
}
@media (max-width: 640px) {
  .c-hd { padding: 12px 16px; gap: 12px; flex-wrap: wrap; }
  .c-nav { gap: 14px; }
  .c-nav .c-phone, .c-nav .nav-hide { display: none; }
  .c-main { padding: 20px 16px 48px; }
  .pdp-gallery { grid-template-columns: 1fr; }
  .pdp-gallery .g-main { grid-row: auto; }
  .pdp-gallery .g-thumb { display: none; }
  .checkout-form { grid-template-columns: 1fr; }
}
