/* =============================================
   Riley England — Shared Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@400;500;600;700&display=swap');

/* ===== Variables ===== */
:root {
  --navy:       #0D1B2A;
  --navy-lt:    #162336;
  --gold:       #C4A44A;
  --gold-lt:    #D4B86A;
  --ivory:      #F8F4ED;
  --surface:    #FFFFFF;
  --silver:     #9A9A9A;
  --text:       #1A1618;
  --text-muted: #6B6570;
  --divider:    #E4DFD8;
  --error:      #B23A3A;
  --max-w:      1080px;   /* content column — Apple locks ~1068px */
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body   { font-family: 'Inter', sans-serif; color: var(--text); background: var(--ivory); -webkit-font-smoothing: antialiased; }
a      { text-decoration: none; color: inherit; }
img    { max-width: 100%; display: block; }
button { font-family: 'Inter', sans-serif; cursor: pointer; }
input, select, textarea { font-family: 'Inter', sans-serif; }

/* ===== Layout ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 16px; width: 100%; }

/* ===== Announce Bar ===== */
.announce {
  background: var(--navy);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 16px;
  text-transform: uppercase;
  position: sticky;
  top: 0;
  z-index: 101;
}
.announce svg { flex-shrink: 0; }

/* ===== Header ===== */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--divider);
  position: sticky;
  top: var(--announce-h, 34px);
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 16px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin: -6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform 0.2s, opacity 0.2s;
}
.logo-link { text-align: center; }
.logo-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: var(--navy); letter-spacing: 0.02em; line-height: 1; }
.logo-est  { font-size: 8px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--silver); margin-top: 3px; }
.logo-img  { display: inline-block; height: 34px; width: auto; vertical-align: middle; }
.drawer-logo-img { display: block; height: 32px; width: auto; }
.header-icons { display: flex; gap: 12px; align-items: center; }

/* Lead-gen call button (specificity beats `.header-icons a`) */
.header-icons a.header-call {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(180deg, #D8BD6E 0%, #BF9F46 100%); color: var(--navy);
  padding: 6px 15px 6px 6px; border-radius: 10px; white-space: nowrap;
  box-shadow: 0 2px 10px rgba(196,164,74,0.35);
  transition: box-shadow 0.15s, transform 0.12s;
}
.header-icons a.header-call:hover { box-shadow: 0 6px 18px rgba(196,164,74,0.5); transform: translateY(-1px); }
.header-call .call-ic { width: 30px; height: 30px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.header-call .call-ic svg { width: 15px; height: 15px; fill: var(--gold); stroke: none; }
.header-call .call-txt { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.12; }
.header-call .call-label { font-size: 8px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: rgba(13,27,42,0.58); }
.header-call .num { font-size: 13.5px; font-weight: 700; }
@media (max-width: 767px) {
  .header-icons a.header-call { padding: 0; background: none; box-shadow: none; gap: 0; }
  .header-icons a.header-call:hover { box-shadow: none; transform: none; }
  .header-call .call-txt { display: none; }
  .header-call .call-ic { width: 38px; height: 38px; box-shadow: 0 2px 9px rgba(13,27,42,0.25); }
}
.header-icons a, .header-icons button { display: flex; align-items: center; background: none; border: none; padding: 0; }
.header-icons svg { width: 20px; height: 20px; stroke: var(--navy); fill: none; stroke-width: 1.5; }

/* Desktop nav (hidden on mobile) */
.desktop-nav { display: none; }
.nav-item { position: relative; }
.nav-item > a {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--navy); border-bottom: 1.5px solid transparent;
  transition: border-color 0.15s; white-space: nowrap;
}
.nav-item.has-sub > a::after {
  content: ''; width: 5px; height: 5px; margin-top: -3px;
  border-right: 1.4px solid currentColor; border-bottom: 1.4px solid currentColor;
  transform: rotate(45deg); opacity: 0.55; transition: transform 0.18s;
}
.nav-item > a:hover { border-bottom-color: var(--gold); }
.nav-item > a[aria-current="page"] { border-bottom-color: var(--gold); }

/* Desktop dropdown */
.nav-sub {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 190px; background: var(--surface);
  border: 1px solid var(--divider); border-top: 2px solid var(--gold);
  border-radius: 0 0 5px 5px; box-shadow: 0 16px 36px rgba(13,27,42,0.15);
  padding: 8px 0; display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transition: opacity 0.16s, transform 0.16s; z-index: 120;
}
.nav-item.has-sub:hover .nav-sub { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-item.has-sub:hover > a::after { transform: rotate(225deg); }
.nav-sub a {
  padding: 9px 22px; font-size: 11.5px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--text); text-transform: none; white-space: nowrap; transition: background 0.12s, color 0.12s;
}
.nav-sub a:hover { background: var(--ivory); color: var(--navy); }

@media (min-width: 1024px) {
  .hamburger    { display: none; }
  .desktop-nav  { display: flex; gap: 30px; align-self: stretch; align-items: stretch; }
  .nav-item     { display: flex; align-items: center; }
  /* Logo left, nav + basket grouped on the right (no centred overlap) */
  .logo-link    { text-align: left; margin-right: auto; }
  .header-icons { margin-left: 28px; }
  .logo-img     { height: 40px; }
}

/* ===== Nav Drawer ===== */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,27,42,0.5);
  z-index: 200;
  backdrop-filter: blur(2px);
}
.nav-overlay.visible { display: block; }

.nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  background: var(--surface);
  z-index: 300;
  transform: translateX(-100%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.nav-drawer.open { transform: translateX(0); }

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--divider);
}
.drawer-logo { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; color: var(--navy); }
.drawer-close {
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 20px;
}

.drawer-nav { padding: 4px 0; flex: 1; overflow-y: auto; }
.drawer-group { border-bottom: 1px solid var(--divider); }
.drawer-parent {
  width: 100%; text-align: left; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 20px; font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 600; color: var(--navy); cursor: pointer;
}
.drawer-parent::after {
  content: ''; width: 7px; height: 7px; margin-right: 2px;
  border-right: 1.6px solid var(--silver); border-bottom: 1.6px solid var(--silver);
  transform: rotate(45deg); transition: transform 0.2s;
}
.drawer-group.open .drawer-parent::after { transform: rotate(225deg); }
.drawer-sub { display: none; padding: 2px 0 10px; background: var(--ivory); }
.drawer-group.open .drawer-sub { display: block; }
.drawer-sub a { display: block; padding: 10px 20px 10px 34px; font-size: 13.5px; font-weight: 500; color: var(--text-muted); }
.drawer-sub a[aria-current="page"] { color: var(--gold); }
.drawer-link {
  display: flex; align-items: center; padding: 15px 20px;
  font-size: 15px; font-weight: 600; color: var(--navy);
  border-bottom: 1px solid var(--divider);
}
.drawer-link:last-child { border-bottom: none; }
.drawer-link[aria-current="page"] { color: var(--gold); }

.drawer-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--divider);
  font-size: 11px;
  color: var(--silver);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  padding: 40px 16px 24px;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: #fff; }
.footer-est  { font-size: 9px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin: 4px 0 28px; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 28px; }
.footer-col h4 { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.footer-col a  { display: block; color: rgba(255,255,255,0.5); margin-bottom: 10px; font-size: 13px; transition: color 0.15s; }
.footer-col a:hover { color: rgba(255,255,255,0.85); }
.footer-legal { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 16px; font-size: 11px; color: rgba(255,255,255,0.3); line-height: 1.7; }

@media (min-width: 768px) {
  .footer-cols { grid-template-columns: repeat(4, 1fr); }
}

/* ===== Trust Strip ===== */
.trust-strip {
  display: flex;
  background: var(--surface);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  overflow-x: auto;
}
.trust-item {
  flex: 1;
  min-width: 80px;
  padding: 16px 8px;
  text-align: center;
  border-right: 1px solid var(--divider);
}
.trust-item:last-child { border-right: none; }
.trust-item svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; display: block; margin: 0 auto 6px; }
.trust-label { font-size: 9.5px; font-weight: 600; color: var(--navy); letter-spacing: 0.06em; text-transform: uppercase; line-height: 1.5; }

/* ===== Buttons ===== */
.btn { display: inline-block; font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 14px 24px; border-radius: 6px; border: none; cursor: pointer; text-align: center; transition: opacity 0.15s, background 0.15s; }
.btn:hover { opacity: 0.88; }
.btn-full { display: block; width: 100%; }

.btn-navy    { background: var(--navy); color: #fff; }
.btn-gold    { background: var(--gold); color: var(--navy); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); padding: 13px 24px; }
.btn-ghost   { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.35); padding: 13px 24px; }

/* ===== Badges ===== */
.badge { font-size: 9.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; display: inline-block; }
/* Category / key-feature badges */
.badge-snooker  { background: var(--navy);  color: #fff; }
.badge-pool     { background: #123A2C; color: #86E0BC; }
.badge-american { background: #1A2F4A; color: #8BBFEF; }
.badge-outdoor  { background: #234B2E; color: #A8E6B4; }
.badge-diner    { background: #4A3A12; color: #F0D488; }
.badge-refurb   { background: #3D2E0E; color: #E8C76A; }
.badge-sale     { background: var(--error); color: #fff; }
.badge-sold     { background: #4B4F55; color: #fff; }
.badge-made     { border: 1px solid var(--gold); color: var(--gold); background: transparent; }
/* legacy alias */
.badge-slate    { background: var(--navy);  color: #fff; }

/* A second badge pinned to the top-right (e.g. SALE alongside a category) */
.card-img .badge.badge-corner { left: auto; right: 10px; }

/* ===== Product Cards ===== */
.card {
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 4px 20px rgba(13,27,42,0.12); }

.card-img {
  height: 180px;
  background: linear-gradient(135deg, #162336, #081320);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-img .badge { position: absolute; top: 10px; left: 10px; }
.card-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-wishlist svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.7); fill: none; stroke-width: 1.5; }

.card-body { padding: 14px; flex: 1; }
.card-title { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-weight: 600; color: var(--navy); line-height: 1.25; margin-bottom: 6px; }
.card-sizes { font-size: 11px; color: var(--silver); margin-bottom: 8px; }
.card-from  { font-size: 9.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--silver); }
.card-price { font-size: 17px; font-weight: 700; color: var(--navy); line-height: 1.1; }
.card-rrp   { font-size: 12px; color: var(--silver); text-decoration: line-through; font-weight: 400; margin-left: 4px; }

/* On-sale: make the price pop */
.card-price.sale { color: var(--error); font-size: 19px; }
.card-save {
  display: inline-block; margin-top: 7px;
  background: var(--error); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 2px;
}

/* Sold out */
.card.sold-out { pointer-events: none; }
.card.sold-out .card-img img { filter: grayscale(0.75); opacity: 0.45; }
.card.sold-out .card-title,
.card.sold-out .card-price { color: var(--silver); }
.card-waitlist {
  display: inline-block; margin-top: 6px; pointer-events: auto;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--navy); border-bottom: 1px solid var(--gold); padding-bottom: 1px;
}

/* ===== Product Grid ===== */
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

@media (min-width: 768px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ===== Variant Chips ===== */
.opt-chip {
  font-size: 13px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 2px;
  border: 1.5px solid var(--divider);
  color: var(--text);
  background: var(--surface);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.opt-chip.active  { border-color: var(--navy); background: var(--navy); color: #fff; }
.opt-chip.disabled { opacity: 0.35; cursor: not-allowed; }

/* ===== Form Elements ===== */
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--divider);
  border-radius: 2px;
  font-size: 14px;
  color: var(--text);
  background: var(--surface);
  outline: none;
  transition: border-color 0.15s;
  appearance: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--navy); }
.field textarea { min-height: 100px; resize: vertical; }
.field-hint { font-size: 11px; color: var(--silver); margin-top: 5px; }

/* ===== Accordions ===== */
.acc-group { border-top: 1px solid var(--divider); }
details.acc { border-bottom: 1px solid var(--divider); }
details.acc summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
details.acc summary::-webkit-details-marker { display: none; }
details.acc summary::after { content: '+'; font-size: 20px; color: var(--silver); font-weight: 300; line-height: 1; }
details.acc[open] summary::after { content: '−'; }
.acc-body { padding: 0 16px 18px; font-size: 13.5px; line-height: 1.7; color: var(--text-muted); }
.acc-body p { margin-bottom: 10px; }
.acc-body p:last-child { margin-bottom: 0; }

.spec-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--divider); font-size: 13px; }
.spec-row:last-child { border-bottom: none; }
.spec-row span:first-child { color: var(--silver); }
.spec-row span:last-child  { font-weight: 600; color: var(--navy); }

/* ===== Gold Rule ===== */
.gold-rule { border: none; border-top: 1px solid var(--gold); width: 48px; }
.gold-rule-faded { border: none; border-top: 1px solid rgba(196,164,74,0.4); width: 48px; }

/* =============================================================
   PAGE STRUCTURE — Apple-style content column
   -------------------------------------------------------------
   Content locks at --max-w (~1080px) and centres; it does NOT keep
   growing on large monitors — the extra width becomes margin, so line
   lengths stay premium. The page background is continuous (ivory);
   coloured bands (announce, header, hero, heritage, footer) break out
   to full viewport width while their inner content stays centred.
   `overflow-x: clip` stops the 100vw bleed from adding a scrollbar
   without breaking the sticky header (as `overflow: hidden` would).
   ============================================================= */
html { overflow-x: clip; background: var(--ivory); }
body { max-width: var(--max-w); margin-inline: auto; }

.announce,
.site-header,
.hero,
.cat-hero,
.heritage,
.site-footer {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* --- Tablet (768px+): tighten spacing, minor scale-up --- */
@media (min-width: 768px) {
  .header-inner { padding: 0 32px; }
  .announce { font-size: 12px; padding: 10px 32px; }
  .trust-item { padding: 20px 16px; }
  .trust-label { font-size: 11px; }
}

/* --- Desktop (1024px+): full improvements ---
   Use `body .classname` prefix for specificity 0,1,1 which beats
   the page-level inline-style specificity 0,1,0 on same selectors. */
@media (min-width: 1024px) {

  /* Header */
  .header-inner { height: 60px; padding: 0 40px; }
  .logo-name    { font-size: 26px; }
  .desktop-nav  { gap: 36px; }
  .desktop-nav a { font-size: 13px; letter-spacing: 0.1em; }

  /* Stats strip */
  .stat      { padding: 26px 24px; }
  .stat-num  { font-size: 36px; }
  .stat-label { font-size: 10px; }

  /* Trust strip — items fill the column evenly (no side gaps) */
  .trust-item    { padding: 24px 24px; flex: 1; }
  .trust-item svg { width: 22px; height: 22px; margin-bottom: 10px; }
  .trust-label   { font-size: 12px; }

  /* Product cards */
  .card-img   { height: 220px; }
  .card-title { font-size: 17px; }
  .card-price { font-size: 18px; }

  /* Accordions */
  details.acc summary { padding: 20px 24px; font-size: 15px; }
  .acc-body { padding: 0 24px 22px; font-size: 14px; line-height: 1.75; }
  .spec-row { font-size: 14px; }

  /* Footer */
  .site-footer  { padding: 60px 0 36px; }
  .footer-inner { padding: 0 40px; }
  .footer-logo  { font-size: 26px; }
  .footer-cols  { gap: 40px; margin-bottom: 36px; }
  .footer-col a { font-size: 14px; }

  /* ── Homepage sections ── */

  body .hero    { min-height: 54vh; padding: 68px 40px; }
  body .hero h1 { font-size: 64px; }
  body .hero p  { font-size: 17px; max-width: 580px; }

  body .cat-section  { padding: 56px 40px 0; }
  body .cat-tile-img { height: 140px; }
  body .section-eyebrow { font-size: 11px; margin-bottom: 16px; }

  body .featured-section  { padding: 56px 40px; }
  body .section-head h2   { font-size: 34px; }

  body .heritage          { padding: 80px 40px; }
  body .heritage h2       { font-size: 42px; }
  body .heritage-eyebrow  { font-size: 11px; }
  body .heritage p        { max-width: 640px; font-size: 15px; }
  body .champion strong   { font-size: 16px; }
  body .champion span     { font-size: 11px; }

  body .guides-section    { padding: 56px 40px; }

  body .ugc-section   { padding: 56px 40px 24px; }
  body .ugc-head h2   { font-size: 34px; }
  body .ugc-grid      { grid-auto-rows: 150px; }

  body .socials-section { padding: 0 40px 64px; }
  body .socials-box     { padding: 48px 40px; }
  body .socials-box h3  { font-size: 28px; }
  body .socials-row     { justify-content: center; gap: 16px; }
  body .social-btn      { max-width: 240px; }

  /* ── PLP sections ── */

  /* Hero background stays full-bleed; its content aligns to the content column */
  body .cat-hero         { padding: 60px 0 52px; }
  body .cat-hero-content { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
  body .cat-hero h1 { font-size: 52px; }
  body .cat-hero p  { font-size: 15px; max-width: 560px; }

  body .filter-bar     { padding: 14px 40px; }
  body .results-meta   { padding: 14px 40px 0; font-size: 12px; }
  body .grid-wrap      { padding: 20px 40px 0; }
  body .load-more-wrap { padding: 24px 40px 48px; }
  body .load-more-wrap button { max-width: 400px; margin: 0 auto; display: block; }

  body .size-tabs-wrap .size-tab { padding: 16px 24px; font-size: 13px; }

  /* ── PDP sections ── */

  body .pdp-info      { padding: 32px 32px 0; }
  body .pdp-info h1   { font-size: 36px; }
  body .price-main    { font-size: 34px; }
  body .feature-chips { padding: 16px 32px 0; overflow: visible; flex-wrap: wrap; }
  body .benefits      { padding: 20px 32px; }
  body .buybox        { padding: 24px 32px; }
  body .trust-micro   { padding: 16px 32px; }
  body .desktop-buy   { padding: 24px 32px 32px; }

  body .feature-block      { padding: 56px 40px; }
  body .feature-block-img  { width: 420px; height: 280px; }
  body .feature-block h3   { font-size: 26px; }
  body .feature-block p    { font-size: 14px; }

  body .related    { padding: 40px 0 40px 40px; }
  body .related h2 { font-size: 28px; }
  body .rel-card   { flex: 0 0 200px; }
  body .rel-img    { height: 140px; }
}

/* ===== UGC (customer photos) section ===== */
.ugc-section { padding: 36px 16px 8px; }
.ugc-head    { text-align: center; margin-bottom: 18px; }
.ugc-eyebrow { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.ugc-head h2 { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 700; color: var(--navy); line-height: 1.15; margin-bottom: 6px; }
.ugc-head p  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.ugc-tag     { color: var(--navy); font-weight: 600; }

/* 2-tier manual (infinite) horizontal scroll */
.ugc-scroll { overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; scrollbar-width: none; cursor: grab; }
.ugc-scroll::-webkit-scrollbar { display: none; }
.ugc-scroll:active { cursor: grabbing; }
.ugc-strip { display: grid; grid-template-rows: 1fr 1fr; grid-auto-flow: column; grid-auto-columns: 200px; gap: 8px; width: max-content; }
.ugc-strip img { width: 200px; height: 138px; object-fit: cover; border-radius: 6px; background: var(--navy-lt); display: block; }
.ugc-cta { text-align: center; margin-top: 22px; }

/* Case studies */
.cases-section { padding: 40px 16px; }
.cases-eyebrow { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.cases-grid { display: grid; grid-template-columns: minmax(0,1fr); gap: 16px; }
.case-card { display: block; background: var(--surface); border: 1px solid var(--divider); border-radius: 4px; overflow: hidden; text-decoration: none; transition: box-shadow 0.2s, transform 0.2s; }
.case-card:hover { box-shadow: 0 10px 26px rgba(13,27,42,0.13); transform: translateY(-3px); }
.case-img { aspect-ratio: 16 / 10; overflow: hidden; }
.case-img img { width: 100%; height: 100%; object-fit: cover; }
.case-body { padding: 16px 18px 18px; }
.case-meta { font-size: 9.5px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.case-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 600; color: var(--navy); line-height: 1.2; margin-bottom: 8px; }
.case-body p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.case-link { font-size: 12px; font-weight: 600; color: var(--navy); border-bottom: 1px solid var(--gold); padding-bottom: 2px; }
.case-card:hover .case-link { color: var(--gold); }

@media (min-width: 768px) {
  .ugc-section { padding: 48px 32px 16px; }
  .ugc-head h2 { font-size: 32px; }
  .ugc-strip   { grid-auto-columns: 260px; gap: 10px; }
  .ugc-strip img { width: 260px; height: 176px; }
}
@media (min-width: 700px) { .cases-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; } }
@media (min-width: 1024px) { .cases-section { padding: 60px 40px; } }

/* ===== Social media section ===== */
.socials-section { padding: 0 16px 36px; }
.socials-box     { background: var(--navy); border-radius: 8px; padding: 28px 22px; text-align: center; }
.s-eyebrow       { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.socials-box h3  { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.socials-box p   { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 20px; max-width: 360px; margin-left: auto; margin-right: auto; }
.socials-row     { display: flex; gap: 12px; }
.social-btn      { flex: 1; display: flex; align-items: center; justify-content: center; gap: 10px; border: none; border-radius: 6px; padding: 14px; text-decoration: none; color: #fff; font-size: 13px; font-weight: 600; cursor: pointer; }
.social-btn svg  { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }
.social-ig       { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-tt       { background: #000; }
.social-handle   { display: block; font-size: 10px; font-weight: 500; color: rgba(255,255,255,0.8); margin-top: 2px; text-transform: none; letter-spacing: 0; }

@media (min-width: 768px) {
  .socials-section { padding: 0 32px 48px; }
  .socials-box     { padding: 40px 32px; }
  .socials-row     { justify-content: center; }
  .social-btn      { max-width: 220px; }
}

/* =============================================================
   Footer — link columns + bottom bar (logo, location, socials)
   ============================================================= */
.footer-cols { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 28px 24px; margin-bottom: 32px; }

/* Opening-times column (left-aligned on mobile, spread on desktop) */
.hours-row { display: flex; justify-content: flex-start; gap: 14px; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.hours-row span:first-child { color: rgba(255,255,255,0.75); min-width: 66px; }
.hours-tz { font-size: 11px; color: rgba(255,255,255,0.38); line-height: 1.5; margin-top: 12px; max-width: 200px; }

/* Bottom bar */
.footer-bottom {
  display: flex; flex-direction: column; gap: 18px; align-items: flex-start;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-brand-line { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-logo-img { height: 36px; width: auto; filter: brightness(0) invert(1); }
.footer-addr { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.7; min-width: 0; }
.footer-addr .addr-line, .footer-addr .addr-contact { display: block; }
.footer-addr a { color: rgba(255,255,255,0.6); }
.footer-addr a:hover { color: #fff; }
.footer-socials { display: flex; gap: 16px; }
.footer-socials a { display: flex; align-items: center; justify-content: center; }
.footer-socials svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.7); transition: fill 0.15s; }
.footer-socials a:hover svg { fill: #fff; }

.site-footer .footer-legal { border-top: none; padding-top: 18px; margin-top: 4px; }

@media (min-width: 768px) {
  .footer-cols   { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 40px; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
  .hours-row     { justify-content: space-between; max-width: 200px; gap: 16px; }
}

/* =============================================================
   Experience a Riley Table — venue finder
   ============================================================= */
.venues-section { padding: 44px 16px; }
.venues-head { text-align: center; max-width: 620px; margin: 0 auto 26px; }
.venues-eyebrow { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.venues-head h2 { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 700; color: var(--navy); line-height: 1.12; margin-bottom: 12px; }
.venues-head p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.venues-grid { display: grid; grid-template-columns: minmax(0,1fr); gap: 12px; }
.venue-card { background: var(--surface); border: 1px solid var(--divider); border-radius: 4px; padding: 18px 18px 16px; transition: box-shadow 0.2s, transform 0.2s; }
.venue-card:hover { box-shadow: 0 6px 20px rgba(13,27,42,0.1); transform: translateY(-2px); }
.venue-region { font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.venue-name { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 600; color: var(--navy); line-height: 1.2; margin-bottom: 8px; }
.venue-loc { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text); margin-bottom: 8px; }
.venue-loc svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 1.6; flex-shrink: 0; }
.venue-tables { font-size: 11.5px; color: var(--silver); letter-spacing: 0.02em; }
.venues-foot { text-align: center; margin-top: 26px; }
.venues-foot .btn-outline { min-width: 240px; }
.venues-note { font-size: 13px; color: var(--text-muted); margin-top: 14px; }
.venues-note a { font-weight: 600; color: var(--navy); border-bottom: 1px solid var(--gold); padding-bottom: 1px; }

/* Only show the first 3 venues on mobile; the rest live on the venues page */
@media (max-width: 599px) { .venue-card.venue-more { display: none; } }
@media (min-width: 600px) { .venues-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; } }
@media (min-width: 900px) {
  .venues-section { padding: 60px 40px; }
  .venues-head h2 { font-size: 38px; }
  .venues-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
}

/* =============================================================
   Collections row (homepage category tiles)
   ============================================================= */
.collections-section { padding: 40px 16px 8px; }
.collections-title { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.collections-grid { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 8px; -webkit-overflow-scrolling: touch; scrollbar-width: none; scroll-snap-type: x proximity; }
.collections-grid::-webkit-scrollbar { display: none; }
.coll-tile { display: block; text-decoration: none; flex: 0 0 150px; scroll-snap-align: start; }
.coll-card {
  position: relative; overflow: hidden; aspect-ratio: 4 / 5;
  background: linear-gradient(162deg, #17293d 0%, #0b1725 100%);
  border: 1px solid rgba(196,164,74,0.28); border-radius: 6px;
  display: flex; flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.coll-tile:hover .coll-card { box-shadow: 0 12px 30px rgba(13,27,42,0.30); transform: translateY(-3px); border-color: rgba(196,164,74,0.55); }
.coll-top { padding: 17px 12px 4px; text-align: center; }
.coll-name { display: block; font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; color: #fff; line-height: 1.05; }
.coll-sub { display: block; font-size: 8.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-top: 6px; }
.coll-symbol { flex: 1; display: flex; align-items: center; justify-content: center; padding: 14px 14px 20px; }
.coll-symbol svg { width: 52%; max-width: 96px; height: auto; fill: none; stroke: #F2EEE4; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.coll-symbol svg text { fill: #F2EEE4; stroke: none; }
.coll-cta { display: block; margin-top: 12px; font-size: 12.5px; font-weight: 600; color: var(--navy); }
.coll-cta em { font-style: normal; color: var(--gold); margin-left: 2px; }
.coll-tile:hover .coll-cta { color: var(--gold); }

@media (min-width: 768px) {
  .collections-section { padding: 56px 40px 8px; }
  .collections-title   { font-size: 40px; margin-bottom: 26px; }
  .collections-grid    { gap: 20px; overflow-x: visible; }
  .coll-tile           { flex: 1 1 0; min-width: 0; }
}

/* =============================================================
   Live-chat floating button + placeholder bubble
   ============================================================= */
.chat-fab {
  position: fixed; bottom: 20px; right: 20px; z-index: 350;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--navy); border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(13,27,42,0.35); cursor: pointer;
  transition: transform 0.15s;
}
.chat-fab:hover { transform: translateY(-2px); }
.chat-fab svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.7; }
.chat-bubble {
  position: fixed; bottom: 88px; right: 20px; z-index: 350;
  width: 280px; max-width: calc(100vw - 40px);
  background: var(--surface); border: 1px solid var(--divider); border-radius: 10px;
  padding: 18px; box-shadow: 0 12px 40px rgba(13,27,42,0.22);
  display: none;
}
.chat-bubble.open { display: block; }
.chat-bubble h4 { font-family: 'Cormorant Garamond', serif; font-size: 19px; color: var(--navy); margin-bottom: 6px; }
.chat-bubble p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.chat-bubble .chat-soon { display: inline-block; font-size: 9.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }

/* =============================================================
   Desktop typography — larger, more legible body copy
   ============================================================= */
@media (min-width: 1024px) {
  body            { font-size: 16px; }
  .card-title     { font-size: 18px; }
  .card-sizes     { font-size: 12.5px; }
  .card-from      { font-size: 10px; }
  .card-price     { font-size: 19px; }
  .card-price.sale { font-size: 21px; }
  .cat-tile-desc  { font-size: 12px; }
  .guide-card-home-body p { font-size: 14.5px; }
  .footer-col a   { font-size: 14px; }
  .footer-contact a, .footer-contact address { font-size: 14px; }
}
