/* =========================================================
   ELITE HOSTELS — DESIGN SYSTEM v2
   Gold #dfca56 / Crimson #ce1e47 / Black plinth / Warm paper
   Typeface: Golos Text (single family, multiple weights)
   No icon library — numbered chips, index badges, typographic marks
   ========================================================= */

:root{
  --gold: #dfca56;
  --gold-deep: #c7ab2c;
  --gold-tint: #faf3d9;
  --crimson: #ce1e47;
  --crimson-deep: #a71638;
  --ink: #1f1b16;
  --ink-soft: #4a4438;
  --muted: #79705f;
  --paper: #fffdf7;
  --paper-alt: #faf6ea;
  --white: #ffffff;
  --black: #121212;
  --black-soft: #201d18;
  --line: #e9e1c8;

  --font: "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-lg: 14px;
  --radius-md: 10px;
  --radius-sm: 6px;

  --shadow-card: 0 18px 40px -18px rgba(31,27,22,0.22);
  --shadow-soft: 0 10px 24px -14px rgba(31,27,22,0.18);

  --container: 1220px;
}

/* ---------- Reset ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; overflow-x:hidden; }
body{
  margin:0;
  font-family:var(--font);
  color:var(--ink);
  background:var(--paper);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4,h5{ font-family:var(--font); font-weight:700; line-height:1.14; margin:0 0 .5em; color:var(--ink); letter-spacing:-0.01em; }
p{ margin:0 0 1em; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; }
input,textarea,select{ font-family:inherit; font-size:1rem; }

:focus-visible{ outline:3px solid var(--crimson); outline-offset:2px; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
}

/* ---------- Layout helpers ---------- */
.container{ max-width:var(--container); margin:0 auto; padding:0 28px; }
.section{ padding:100px 0; }
.section--tight{ padding:64px 0; }
.section--alt{ background:var(--paper-alt); }
.section--black{ background:var(--black); color:var(--white); }
.section--black h1,.section--black h2,.section--black h3{ color:var(--white); }

.eyebrow{
  font-family:var(--font);
  font-size:0.78rem;
  font-weight:700;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--crimson);
  display:inline-flex;
  align-items:baseline;
  gap:10px;
  margin-bottom:16px;
}
.eyebrow .num{ font-weight:800; color:var(--ink); opacity:.35; font-size:1rem; }

.section-head{ max-width:640px; margin-bottom:52px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(1.8rem,3vw,2.6rem); }
.section-head p{ color:var(--muted); font-size:1.05rem; }

.grid{ display:grid; gap:28px; }
.grid-2{ grid-template-columns:repeat(2,1fr); }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-4{ grid-template-columns:repeat(4,1fr); }
.grid-5{ grid-template-columns:repeat(5,1fr); }

@media (max-width:1000px){
  .grid-3,.grid-4,.grid-5{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:640px){
  .grid-2,.grid-3,.grid-4,.grid-5{ grid-template-columns:1fr; }
  .section{ padding:64px 0; }
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:15px 30px;
  border-radius:8px;
  font-weight:700; font-size:0.95rem;
  border:1px solid transparent;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-2px); }
.btn-primary{ background:var(--crimson); color:var(--white); box-shadow:var(--shadow-soft); }
.btn-primary:hover{ background:var(--crimson-deep); color:var(--white); }
.btn-gold{ background:var(--gold); color:var(--ink); box-shadow:var(--shadow-soft); }
.btn-gold:hover{ background:var(--gold-deep); }
.btn-outline{ border-color:var(--ink); color:var(--ink); background:transparent; }
.btn-outline:hover{ background:var(--ink); color:var(--white); }
.btn-outline-light{ border-color:rgba(255,255,255,.5); color:var(--white); background:transparent; }
.btn-outline-light:hover{ background:var(--white); color:var(--ink); }
.btn-sm{ padding:10px 20px; font-size:0.85rem; }
.btn-arrow::after{ content:"→"; }

/* ---------- Index chips / numbered badges (icon replacement) ---------- */
.chip{
  display:inline-flex; align-items:center; justify-content:center;
  min-width:34px; height:34px; padding:0 8px;
  border-radius:9px; background:var(--black); color:var(--gold);
  font-weight:800; font-size:.8rem; flex:none;
}
.chip-outline{ background:transparent; border:1.5px solid var(--ink); color:var(--ink); }
.chip-gold{ background:var(--gold); color:var(--ink); }
.chip-crimson{ background:var(--crimson); color:var(--white); }
.chip-lg{ min-width:52px; height:52px; border-radius:14px; font-size:1.1rem; }

.badge-tag{
  display:inline-flex; align-items:center; gap:6px; background:var(--gold-tint); color:var(--crimson);
  font-size:.78rem; font-weight:700; padding:7px 15px; border-radius:8px;
}
.badge-tag.dark{ background:var(--black); color:var(--gold); }

/* status dot (not an icon — a plain indicator) */
.status-dot{ width:9px; height:9px; border-radius:50%; background:var(--crimson); display:inline-block; flex:none; }
.status-dot.gold{ background:var(--gold); }

/* ---------- Black plinth / logo frame (signature motif) ---------- */
.logo-lockup{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:var(--black);
  padding:10px 16px;
  border-radius:12px;
}
.logo-lockup img{ height:34px; width:auto; display:block; }
.logo-lockup .logo-text{
  font-family:var(--font);
  font-size:1.15rem;
  font-weight:800;
  color:var(--white);
  letter-spacing:-0.01em;
}
.logo-lockup .logo-text span{ color:var(--gold); }

/* ---------- Header ---------- */
/* z-index must stay above .nav-scrim's (205): .main-nav is nested inside
   .site-header, so .main-nav's own z-index is scoped WITHIN .site-header's
   stacking context — if .site-header's z-index were lower than the scrim's,
   the scrim would visually and interactively sit on top of the whole open
   mobile menu regardless of .main-nav's own z-index, silently blocking taps. */
.site-header{
  position:sticky; top:0; z-index:220;
  background:rgba(255,253,247,0.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
  transition:background-color .25s ease, border-color .25s ease;
}
.site-header.is-scrolled{
  background:var(--black);
  border-bottom-color:rgba(255,255,255,.1);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding-top:14px; padding-bottom:14px;
}
.main-nav ul{ display:flex; align-items:center; gap:8px; }
.main-nav a{
  display:inline-block; padding:10px 16px; border-radius:8px;
  font-weight:600; font-size:0.93rem; color:var(--ink-soft);
  transition:background .15s ease, color .15s ease;
}
.main-nav a:hover, .main-nav .current-menu-item > a{ background:var(--gold-tint); color:var(--ink); }
.site-header.is-scrolled .main-nav a{ color:rgba(255,255,255,.78); }
.site-header.is-scrolled .main-nav a:hover, .site-header.is-scrolled .main-nav .current-menu-item > a{
  background:rgba(255,255,255,.1); color:var(--gold);
}
.main-nav .menu-item-has-children{ position:relative; }
.main-nav .sub-menu{
  position:absolute; top:100%; left:0; min-width:200px;
  background:var(--white); border-radius:14px; box-shadow:var(--shadow-card);
  padding:8px; opacity:0; visibility:hidden; transform:translateY(8px);
  transition:all .18s ease;
}
.main-nav .menu-item-has-children:hover .sub-menu{ opacity:1; visibility:visible; transform:translateY(4px); }
.main-nav .sub-menu a{ display:block; }

.header-actions{ display:flex; align-items:center; gap:12px; }
.nav-toggle{
  display:none; background:var(--black); color:var(--gold); border-radius:8px;
  padding:11px 20px; font-weight:700; font-size:.85rem; letter-spacing:.02em;
}

/* Cart link — the one deliberate icon exception in the theme, at the person's request */
.header-cart{
  position:relative; display:inline-flex; align-items:center; justify-content:center;
  width:44px; height:44px; border-radius:8px; background:var(--black); color:var(--gold);
  flex:none; transition:background .15s ease;
}
.header-cart:hover{ background:var(--black-soft); }
.site-header.is-scrolled .header-cart{ background:rgba(255,255,255,.1); }
.header-cart .cart-count{
  position:absolute; top:-6px; right:-6px; min-width:19px; height:19px; padding:0 4px;
  border-radius:100px; background:var(--crimson); color:var(--white);
  font-size:.68rem; font-weight:800; display:flex; align-items:center; justify-content:center;
  line-height:1; border:2px solid var(--paper);
}
.site-header.is-scrolled .header-cart .cart-count{ border-color:var(--black); }

@media (max-width:960px){
  .main-nav{
    position:fixed; inset:0 0 0 auto; width:min(320px,86vw); height:100vh;
    background:var(--black); padding:100px 28px 28px; transform:translateX(100%);
    transition:transform .28s ease; z-index:210; overflow-y:auto;
  }
  .main-nav.is-open{ transform:translateX(0); }
  .main-nav ul{ flex-direction:column; align-items:flex-start; gap:2px; }
  .main-nav a{ color:var(--white); width:100%; }
  .main-nav a:hover{ background:rgba(223,202,86,.14); color:var(--gold); }
  .main-nav .sub-menu{ position:static; opacity:1; visibility:visible; transform:none; background:transparent; box-shadow:none; display:none; margin-left:14px; }
  .main-nav .menu-item-has-children.is-expanded .sub-menu{ display:block; }
  .nav-toggle{ display:inline-flex; }
  .header-cta{ display:none; }
}

.nav-scrim{
  position:fixed; inset:0; background:rgba(18,18,18,.5); z-index:205;
  opacity:0; visibility:hidden; transition:opacity .25s ease;
}
.nav-scrim.is-open{ opacity:1; visibility:visible; }

/* ---------- Device-frame chrome (used for the closing gallery mockup) ---------- */
.device-frame{
  background:var(--black);
  border-radius:16px;
  padding:14px;
  box-shadow:0 40px 80px -30px rgba(18,18,18,.45);
  position:relative;
}
.device-chrome{ display:flex; align-items:center; justify-content:space-between; padding:10px 16px 16px; }
.device-dots{ display:flex; gap:6px; }
.device-dots span{ width:9px; height:9px; border-radius:50%; background:rgba(255,255,255,.25); }
.device-url{
  font-size:.78rem; color:rgba(255,255,255,.55); background:rgba(255,255,255,.06);
  padding:6px 16px; border-radius:8px; font-weight:600;
}
.device-tabs{ display:flex; gap:8px; }
.device-tabs span{ font-size:.72rem; font-weight:700; color:rgba(255,255,255,.5); padding:5px 12px; border-radius:8px; }
.device-tabs span.is-active{ background:var(--gold); color:var(--ink); }

/* ---------- Generic slider base (JS targets .slider > .slider-track > .slide) ---------- */
.slider{ position:relative; overflow:hidden; }
.slider .slider-track{ position:relative; height:100%; }
.slider .slide{
  position:absolute; inset:0; height:100%;
  opacity:0; visibility:hidden; transition:opacity .9s ease;
  z-index:1;
}
.slider .slide.is-active{ opacity:1; visibility:visible; z-index:2; }

.slider-arrows{ position:absolute; bottom:20px; right:20px; display:flex; gap:8px; z-index:3; }
.slider-arrows button{
  width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,.14); color:var(--white);
  font-weight:700; font-size:1rem; backdrop-filter:blur(6px);
}
.slider-arrows button:hover{ background:var(--gold); color:var(--ink); }
.slider-dots{ position:absolute; bottom:26px; left:24px; display:flex; gap:7px; z-index:3; }
.slider-dots button{ width:22px; height:4px; border-radius:4px; background:rgba(255,255,255,.35); }
.slider-dots button.is-active{ background:var(--gold); width:34px; }

/* ---------- Hero (fullwidth slider — image + text slide together) ---------- */
.hero-slider-section{ position:relative; background:var(--black); overflow:hidden; }
.hero-slider{ height:88vh; min-height:560px; max-height:820px; }
.hero-slide img{ width:100%; height:100%; object-fit:cover; }
.hero-slide::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(90deg, rgba(18,18,18,.82) 0%, rgba(18,18,18,.55) 42%, rgba(18,18,18,.15) 75%);
}
.hero-slide-content{
  position:absolute; inset:0; display:flex; flex-direction:column; justify-content:center;
  z-index:2; color:var(--white); padding-top:60px;
}
.hero-slide-content .inner{
  box-sizing:border-box;
  width:50%;
  min-width:380px;
  max-width:640px;
  padding-left:max(28px, calc(50vw - 610px + 28px));
  padding-right:40px;
  overflow-wrap:break-word;
  word-break:break-word;
}
.hero-slide-content .badge-row{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:22px; }
.hero-slide-content h1{ color:var(--white); font-size:clamp(2.1rem,4.6vw,3.7rem); text-align:left; overflow-wrap:break-word; }
.hero-slide-content h1 em{ font-style:normal; color:var(--gold); }
.hero-slide-content p.lead{ color:rgba(255,255,255,.82); font-size:1.12rem; text-align:left; overflow-wrap:break-word; }
.hero-slide-content .hero-cta{ display:flex; gap:14px; margin-top:26px; flex-wrap:wrap; justify-content:flex-start; max-width:100%; }

.hero-slider .slider-arrows{ bottom:auto; top:50%; right:36px; transform:translateY(-50%); flex-direction:column; }
.hero-slider .slider-dots{ left:auto; right:36px; bottom:36px; flex-direction:column; align-items:flex-end; }
.hero-slider .slider-dots button{ width:4px; height:22px; }
.hero-slider .slider-dots button.is-active{ height:34px; width:4px; }

.hero-stats-strip{ background:var(--black-soft); border-top:1px solid rgba(255,255,255,.08); }
.hero-stats-strip .stats-inner{ display:grid; grid-template-columns:repeat(4,1fr); }
.hero-stats-strip .stat-col{ padding:26px 28px; border-left:1px solid rgba(255,255,255,.08); }
.hero-stats-strip .stat-col:first-child{ border-left:none; }
.hero-stats-strip .stat-col b{ display:block; font-size:1.7rem; color:var(--gold); font-weight:800; }
.hero-stats-strip .stat-col span{ font-size:.78rem; color:rgba(255,255,255,.55); font-weight:600; }

@media (max-width:800px){
  .hero-slider{ height:640px; max-height:none; }
  .hero-slide-content{ padding-top:100px; padding-bottom:50px; }
  .hero-slide-content .inner{
    width:100%; min-width:0; max-width:100%;
    padding-left:20px; padding-right:20px;
  }
  .hero-slider .slider-arrows{ display:none; }
  .hero-slider .slider-dots{ right:20px; }
  .hero-stats-strip .stats-inner{ grid-template-columns:repeat(2,1fr); }
  .hero-stats-strip .stat-col:nth-child(3){ border-left:none; }
}
@media (max-width:420px){
  .hero-slider{ height:600px; }
  .hero-slide-content h1{ font-size:1.9rem; }
}

/* ---------- Balanced room grid (flex-centers an incomplete last row, e.g. 5 rooms) ---------- */
.room-grid{ display:flex; flex-wrap:wrap; gap:28px; justify-content:flex-start; }
.room-grid > *{ flex:1 1 320px; max-width:calc(33.333% - 19px); }
@media (max-width:980px){ .room-grid > *{ max-width:480px; width:100%; } }

/* ---------- Stat pills / overview ---------- */
.stat-row{ display:flex; gap:20px; flex-wrap:wrap; }
.stat-pill{
  flex:1; min-width:150px; background:var(--white); border:1px solid var(--line);
  border-radius:var(--radius-md); padding:22px; box-shadow:var(--shadow-soft);
}
.stat-pill b{ font-size:1.9rem; display:block; font-weight:800; }
.stat-pill span{ font-size:.85rem; color:var(--muted); }

/* ---------- Meta row (About-project style: Location / Category / Founded) ---------- */
.meta-row{ display:flex; gap:44px; flex-wrap:wrap; padding-top:26px; margin-top:26px; border-top:1px solid var(--line); }
.meta-row div b{ display:block; font-size:1rem; font-weight:800; }
.meta-row div span{ font-size:.78rem; color:var(--muted); text-transform:uppercase; letter-spacing:.06em; font-weight:700; }

/* ---------- Cards: rooms, features, blog ---------- */
.card{
  background:var(--white); border-radius:var(--radius-md); overflow:hidden;
  border:1px solid var(--line); box-shadow:var(--shadow-soft);
  transition:transform .2s ease, box-shadow .2s ease;
}
.card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-card); }

.room-card .room-media{ display:block; position:relative; aspect-ratio:4/3; overflow:hidden; }
.room-card .room-media img{ width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
.room-card:hover .room-media img{ transform:scale(1.06); }
.room-card .room-price{
  position:absolute; top:14px; right:14px; background:var(--black); color:var(--gold);
  font-size:.85rem; font-weight:700; padding:8px 14px; border-radius:8px;
}
.room-card .room-body{ padding:22px; }
.room-card h3{ font-size:1.2rem; margin-bottom:8px; }
.room-card .room-meta{ display:flex; gap:16px; font-size:.82rem; color:var(--muted); margin-bottom:14px; font-weight:600; }
.room-card .room-desc{ color:var(--muted); font-size:.9rem; margin:0 0 14px; }
.room-card .room-price-row{ color:var(--crimson); font-weight:800; font-size:1.05rem; margin-bottom:16px; }
.room-card .room-price-row del{ color:var(--muted); font-weight:500; font-size:.85rem; margin-right:8px; }
.room-card .room-price-row ins{ text-decoration:none; }
.room-card .room-actions{ display:flex; gap:10px; flex-wrap:wrap; }
.room-card .room-actions .btn{ flex:1; min-width:120px; justify-content:center; }

.feature-card{ padding:30px 26px; }
.feature-card .chip{ margin-bottom:18px; }
.feature-card h3{ font-size:1.1rem; }
.feature-card p{ color:var(--muted); font-size:.94rem; margin:0; }

.offer-card{
  text-align:left; padding:28px 26px; border-radius:var(--radius-md);
  background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1);
  transition:transform .2s ease, border-color .2s ease, background .2s ease;
}
.offer-card:hover{ transform:translateY(-4px); border-color:var(--gold); background:rgba(255,255,255,.08); }
.offer-card .chip{ margin-bottom:20px; }
.offer-card h4{ font-size:1.05rem; margin-bottom:8px; color:var(--white); }
.offer-card p{ font-size:.88rem; color:rgba(255,255,255,.6); margin:0; }

/* ---------- Process steps (numbered — legitimate real sequence) ---------- */
.process-row{ display:flex; align-items:flex-start; gap:0; counter-reset:step; }
.process-step{ flex:1; position:relative; padding:0 18px; }
.process-step:first-child{ padding-left:0; }
.process-step:last-child{ padding-right:0; }
.process-step .step-num{ font-size:2.4rem; font-weight:800; color:var(--gold-deep); opacity:.5; line-height:1; margin-bottom:14px; }
.process-step h4{ font-size:1.02rem; margin-bottom:8px; }
.process-step p{ font-size:.88rem; color:var(--muted); }
.process-connector{ position:absolute; top:22px; right:-6px; width:12px; height:1px; background:var(--line); display:none; }
@media (min-width:800px){ .process-step:not(:last-child) .process-connector{ display:block; } }
@media (max-width:800px){ .process-row{ flex-direction:column; gap:36px; } .process-step{ padding:0; } }

/* ---------- Testimonials / persona cards ---------- */
.testi-track{ display:flex; gap:24px; overflow-x:auto; scroll-snap-type:x mandatory; padding-bottom:12px; }
.testi-track::-webkit-scrollbar{ height:6px; }
.testi-track::-webkit-scrollbar-thumb{ background:var(--gold); border-radius:10px; }
.testi-card{
  scroll-snap-align:start; min-width:340px; max-width:340px; background:var(--white);
  border-radius:var(--radius-md); padding:28px; border:1px solid var(--line); box-shadow:var(--shadow-soft);
}
.testi-mark{ font-size:2.6rem; line-height:1; color:var(--gold-deep); font-weight:800; margin-bottom:6px; }
.testi-card p{ color:var(--ink-soft); font-size:.98rem; }
.testi-person{ display:flex; align-items:center; gap:12px; margin-top:16px; }
.initials-avatar{
  width:42px; height:42px; border-radius:50%; background:var(--black); color:var(--gold);
  display:flex; align-items:center; justify-content:center; font-weight:800; font-size:.85rem; flex:none;
}
.testi-person strong{ display:block; font-size:.92rem; }
.testi-person span{ font-size:.8rem; color:var(--muted); }

/* persona-style card (quote block + two structured lists) */
.persona-card{ background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-soft); }
.persona-quote{ background:var(--gold-tint); padding:26px 28px; }
.persona-quote p{ margin:0; font-size:1.08rem; font-weight:700; color:var(--ink); }
.persona-body{ padding:26px 28px; }
.persona-lists{ display:grid; grid-template-columns:1fr 1fr; gap:24px; margin:20px 0; }
.persona-lists h5{ font-size:.76rem; text-transform:uppercase; letter-spacing:.06em; color:var(--muted); margin-bottom:12px; font-weight:800; }
.persona-lists ul{ display:flex; flex-direction:column; gap:9px; }
.persona-lists li{ font-size:.88rem; padding-left:16px; position:relative; }
.persona-lists li::before{ content:"–"; position:absolute; left:0; color:var(--crimson); font-weight:800; }
.persona-foot{ display:flex; align-items:center; gap:12px; padding-top:18px; margin-top:4px; border-top:1px solid var(--line); }
.persona-foot strong{ display:block; font-size:.95rem; }
.persona-foot span{ font-size:.8rem; color:var(--muted); }
@media (max-width:640px){ .persona-lists{ grid-template-columns:1fr; } }

/* ---------- Phone mockup (device motif) — now shows a live chat, not a receipt ---------- */
.phone-frame{
  background:var(--black); border-radius:38px; padding:14px; width:280px; margin:0 auto;
  box-shadow:0 30px 60px -20px rgba(0,0,0,.45);
}
.phone-screen{ background:var(--paper); border-radius:26px; overflow:hidden; padding:16px; display:flex; flex-direction:column; height:480px; }
.phone-screen .ps-head{ display:flex; align-items:center; gap:10px; margin-bottom:14px; padding-bottom:14px; border-bottom:1px solid var(--line); }
.phone-screen .ps-head .initials-avatar{ width:34px; height:34px; font-size:.7rem; }
.phone-screen .ps-head b{ display:block; font-size:.85rem; }
.phone-screen .ps-head span{ font-size:.72rem; color:var(--muted); display:flex; align-items:center; gap:5px; }
.phone-screen .ps-thread{ flex:1; display:flex; flex-direction:column; gap:10px; overflow:hidden; }
.chat-bubble{ max-width:82%; padding:10px 14px; border-radius:14px; font-size:.8rem; line-height:1.4; }
.chat-bubble.in{ align-self:flex-start; background:var(--white); border:1px solid var(--line); border-bottom-left-radius:4px; }
.chat-bubble.out{ align-self:flex-end; background:var(--black); color:var(--gold); border-bottom-right-radius:4px; }
.phone-screen .ps-input{
  margin-top:12px; display:flex; align-items:center; gap:8px; background:var(--white);
  border:1px solid var(--line); border-radius:12px; padding:10px 8px 10px 16px;
}
.phone-screen .ps-input span{ font-size:.78rem; color:var(--muted); flex:1; }
.phone-screen .ps-input .send{ background:var(--crimson); color:var(--white); font-size:.72rem; font-weight:700; padding:7px 14px; border-radius:8px; }

/* ---------- Pricing ---------- */
.price-card{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:34px 28px; position:relative;
}
.price-card.is-featured{ background:var(--black); color:var(--white); border-color:var(--black); }
.price-card.is-featured .price-amount, .price-card.is-featured h3{ color:var(--gold); }
.price-card.is-featured .price-list li{ color:rgba(255,255,255,.82); }
.price-tag{
  position:absolute; top:-14px; right:24px; background:var(--crimson); color:var(--white);
  font-size:.72rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
  padding:6px 14px; border-radius:8px;
}
.price-amount{ font-size:2.6rem; color:var(--ink); margin:10px 0 4px; font-weight:800; }
.price-amount span{ font-size:.9rem; color:var(--muted); font-weight:600; }
.price-card.is-featured .price-amount span{ color:rgba(255,255,255,.6); }
.price-list{ margin:24px 0 28px; display:flex; flex-direction:column; gap:12px; }
.price-list li{ display:flex; align-items:flex-start; gap:10px; font-size:.92rem; color:var(--ink-soft); padding-left:2px; }
.price-list li::before{ content:"–"; font-weight:800; color:var(--crimson); }

/* ---------- FAQ accordion ---------- */
.faq-list{ display:flex; flex-direction:column; gap:14px; max-width:840px; }
.faq-item{ background:var(--white); border:1px solid var(--line); border-radius:var(--radius-md); overflow:hidden; }
.faq-q{
  width:100%; text-align:left; background:none; padding:20px 24px;
  display:flex; justify-content:space-between; align-items:center; gap:16px;
  font-family:var(--font); font-weight:700; font-size:1rem; color:var(--ink);
}
.faq-q .plus{
  flex:none; width:30px; height:30px; border-radius:50%; background:var(--gold-tint);
  color:var(--crimson); display:flex; align-items:center; justify-content:center;
  transition:transform .25s ease, background .25s ease; font-weight:800; font-size:1.1rem;
}
.faq-item.is-open .faq-q .plus{ transform:rotate(45deg); background:var(--crimson); color:var(--white); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .28s ease; }
.faq-a-inner{ padding:0 24px 22px; color:var(--muted); font-size:.95rem; }

/* ---------- Gallery ---------- */
.gallery-filters{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:34px; }
.gallery-filters button{
  background:var(--white); border:1px solid var(--line); border-radius:8px; padding:9px 18px;
  font-size:.85rem; font-weight:600; color:var(--ink-soft);
}
.gallery-filters button.is-active{ background:var(--black); border-color:var(--black); color:var(--gold); }
.gallery-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.gallery-grid .g-item{ border-radius:var(--radius-sm); overflow:hidden; aspect-ratio:1/1; position:relative; cursor:pointer; }
.gallery-grid .g-item img{ width:100%; height:100%; object-fit:cover; transition:transform .35s ease; }
.gallery-grid .g-item:hover img{ transform:scale(1.08); }
.gallery-grid .g-item.tall{ grid-row:span 2; aspect-ratio:1/2; }
@media (max-width:960px){ .gallery-grid{ grid-template-columns:repeat(2,1fr); } }

.lightbox{
  position:fixed; inset:0; background:rgba(18,18,18,.92); z-index:400;
  display:flex; align-items:center; justify-content:center; opacity:0; visibility:hidden; transition:opacity .25s ease;
}
.lightbox.is-open{ opacity:1; visibility:visible; }
.lightbox img{ max-width:88vw; max-height:78vh; border-radius:14px; }
.lightbox-close{
  position:absolute; top:24px; right:28px; background:var(--gold); color:var(--ink);
  padding:10px 20px; border-radius:8px; font-weight:700; font-size:.85rem;
}

/* ---------- Forms ---------- */
.form-field{ margin-bottom:18px; }
.form-field label{ display:block; font-size:.85rem; font-weight:700; margin-bottom:8px; }
.form-field input, .form-field textarea, .form-field select{
  width:100%; padding:14px 16px; border-radius:12px; border:1px solid var(--line);
  background:var(--white); color:var(--ink);
}
.form-field input:focus, .form-field textarea:focus{ border-color:var(--gold-deep); }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
@media (max-width:640px){ .form-row{ grid-template-columns:1fr; } }

/* ---------- Contact (structured list, no icons) ---------- */
.contact-row{ display:flex; align-items:center; gap:16px; padding:20px 0; border-bottom:1px solid var(--line); }
.contact-row:last-child{ border-bottom:none; }
.contact-row .chip{ font-size:.72rem; }
.contact-row h4{ font-size:.78rem; text-transform:uppercase; letter-spacing:.06em; color:var(--muted); margin:0 0 4px; font-weight:700; }
.contact-row p{ margin:0; font-size:1rem; font-weight:600; }
.map-frame{ border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--line); }
.map-frame iframe{ width:100%; height:100%; min-height:320px; border:0; display:block; }

/* ---------- Breadcrumb / page header ---------- */
.page-header{ background:var(--black); color:var(--white); padding:70px 0 56px; text-align:center; position:relative; overflow:hidden; }
.page-header h1{ color:var(--white); position:relative; font-size:clamp(2rem,4vw,2.9rem); }
.page-header .crumbs{ position:relative; font-size:.82rem; color:var(--gold); margin-top:12px; font-weight:600; }
.page-header .crumbs a{ color:rgba(255,255,255,.7); }

/* ---------- CTA band ---------- */
.cta-band{
  background:var(--gold); border-radius:var(--radius-lg); padding:56px 48px;
  display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap;
}
.cta-band h2{ font-size:clamp(1.6rem,2.6vw,2.2rem); margin-bottom:8px; }
.cta-band p{ margin:0; color:var(--ink-soft); }
@media (max-width:640px){ .cta-band{ padding:36px 26px; } }

/* ---------- Footer ---------- */
.site-footer{ background:var(--black); color:rgba(255,255,255,.72); padding:76px 0 0; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:56px; border-bottom:1px solid rgba(255,255,255,.1); }
.footer-grid h4{ color:var(--white); font-size:.95rem; margin-bottom:18px; font-weight:800; letter-spacing:.02em; }
.footer-grid ul{ display:flex; flex-direction:column; gap:10px; }
.footer-grid a{ font-size:.92rem; color:rgba(255,255,255,.68); }
.footer-grid a:hover{ color:var(--gold); }
.footer-about p{ font-size:.92rem; color:rgba(255,255,255,.6); margin:18px 0 20px; }
.social-row{ display:flex; gap:10px; }
.social-row a{
  min-width:38px; height:38px; padding:0 14px; border-radius:8px; background:rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center; font-size:.78rem; font-weight:700;
}
.social-row a:hover{ background:var(--gold); color:var(--black); }
.footer-bottom{ padding:22px 0; display:flex; justify-content:space-between; font-size:.82rem; color:rgba(255,255,255,.5); flex-wrap:wrap; gap:10px; }
@media (max-width:960px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:640px){ .footer-grid{ grid-template-columns:1fr; } }

/* ---------- Misc ---------- */
.two-col{ display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
@media (max-width:900px){ .two-col{ grid-template-columns:1fr; gap:36px; } }
.check-list{ display:flex; flex-direction:column; gap:14px; margin:22px 0; }
.check-list li{ display:flex; align-items:center; gap:12px; font-size:.98rem; }
.wp-pagination{ display:flex; gap:8px; justify-content:center; margin-top:40px; }
.wp-pagination a, .wp-pagination span{ width:40px; height:40px; display:flex; align-items:center; justify-content:center; border-radius:8px; background:var(--white); border:1px solid var(--line); font-size:.85rem; }
.wp-pagination .current{ background:var(--black); color:var(--gold); border-color:var(--black); }

.blog-card .b-media{ display:block; aspect-ratio:16/10; overflow:hidden; }
.blog-card .b-media img{ width:100%; height:100%; object-fit:cover; }
.blog-card .b-body{ padding:22px; }
.blog-card .b-meta{ font-size:.75rem; color:var(--crimson); margin-bottom:10px; text-transform:uppercase; letter-spacing:.06em; font-weight:700; }
.blog-card h3{ font-size:1.1rem; margin-bottom:10px; }
.blog-card p{ color:var(--muted); font-size:.9rem; }

.single-content{ max-width:760px; margin:0 auto; }
.single-content h2{ margin-top:1.4em; }
.single-content img{ border-radius:var(--radius-md); margin:1.2em 0; }
.single-content blockquote{ border-left:3px solid var(--crimson); margin:1.6em 0; padding:4px 0 4px 22px; font-size:1.15rem; font-weight:600; color:var(--ink-soft); }

.skip-link{ position:absolute; left:-999px; top:auto; background:var(--gold); color:var(--ink); padding:12px 20px; z-index:999; }
.skip-link:focus{ left:16px; top:16px; }

/* ---------- Reusable photo utilities (used across inner pages) ---------- */
.hero-photo{ border-radius:var(--radius-lg); overflow:hidden; position:relative; box-shadow:var(--shadow-card); }
.hero-photo img{ width:100%; height:100%; object-fit:cover; }
.hero-visual{ position:relative; }
.hero-float-card{
  position:absolute; left:-20px; bottom:24px; background:var(--white); color:var(--ink);
  border-radius:var(--radius-md); padding:16px 18px; box-shadow:var(--shadow-card);
  display:flex; align-items:center; gap:14px; max-width:240px;
}
.hero-float-card strong{ display:block; font-size:.9rem; }
.hero-float-card span{ font-size:.78rem; color:var(--muted); }
.dot{ width:11px; height:11px; border-radius:50%; background:var(--crimson); flex:none; }
@media (max-width:900px){ .hero-float-card{ left:12px; } }

/* ---------- Qwetu-inspired hero additions: price badge + secondary link + T&Cs note ---------- */
.hero-price-badge{
  display:inline-flex; align-items:baseline; gap:6px; background:var(--gold); color:var(--ink);
  padding:10px 18px; border-radius:8px; font-weight:800; margin-bottom:20px; font-size:1.05rem;
}
.hero-price-badge span{ font-weight:600; font-size:.78rem; opacity:.75; }
.hero-slide-content .hero-cta a.link-cta{
  display:inline-flex; align-items:center; gap:6px; color:var(--white); font-weight:700;
  font-size:.92rem; text-decoration:underline; text-underline-offset:4px; padding:15px 4px;
}
.hero-slide-content .tc-note{ font-size:.72rem; color:rgba(255,255,255,.5); margin-top:14px; }

/* ---------- Amenities checklist (Qwetu's plain "exactly what you need" list style) ---------- */
.amenity-list{ display:grid; grid-template-columns:1fr 1fr; gap:12px 40px; margin:26px 0; }
.amenity-list div{ display:flex; align-items:flex-start; gap:12px; padding:14px 0; border-bottom:1px solid var(--line); font-size:.98rem; font-weight:600; }
.amenity-list div::before{ content:"–"; color:var(--crimson); font-weight:800; }
@media (max-width:640px){ .amenity-list{ grid-template-columns:1fr; } }

/* ---------- Rate table (Qwetu's Room Type / Monthly Rent / Deposit format) ---------- */
.rate-table-wrap{ overflow-x:auto; border-radius:var(--radius-md); border:1px solid var(--line); }
.rate-note{ margin-top:16px; font-size:.85rem; color:var(--muted); text-align:center; }
.rate-table{ width:100%; border-collapse:collapse; background:var(--white); min-width:520px; }
.rate-table thead th{
  background:var(--black); color:var(--gold); text-align:left; padding:16px 22px;
  font-size:.76rem; text-transform:uppercase; letter-spacing:.06em; font-weight:800;
}
.rate-table tbody td{ padding:18px 22px; border-bottom:1px solid var(--line); font-size:.98rem; }
.rate-table tbody tr:last-child td{ border-bottom:none; }
.rate-table tbody tr:hover{ background:var(--paper-alt); }
.rate-table td.price{ font-weight:800; color:var(--crimson); }
.rate-table td.room-name{ font-weight:700; }

/* =========================================================
   WOOCOMMERCE INTEGRATION
   Default WC stylesheet is disabled (functions.php); every rule below is
   the theme's own, so it never fights core WooCommerce markup.
   ========================================================= */

.shop-section{ padding-top:56px; }

/* ---------- Product loop (shop archive + our Rooms template) ---------- */
.woocommerce ul.products{
  display:flex; flex-wrap:wrap; gap:28px; justify-content:flex-start;
  list-style:none; margin:0; padding:0;
}
.woocommerce ul.products li.product{
  flex:1 1 320px; max-width:calc(33.333% - 19px); list-style:none;
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius-md);
  overflow:hidden; box-shadow:var(--shadow-soft); transition:transform .2s ease, box-shadow .2s ease;
}
.woocommerce ul.products li.product:hover{ transform:translateY(-6px); box-shadow:var(--shadow-card); }
@media (max-width:980px){ .woocommerce ul.products li.product{ max-width:480px; width:100%; } }

.woocommerce ul.products li.product a.woocommerce-LoopProduct-link{ display:block; color:inherit; }
.woocommerce ul.products li.product img{
  width:100%; aspect-ratio:4/3; object-fit:cover; display:block;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title{
  padding:20px 20px 6px; font-size:1.15rem; font-weight:700; color:var(--ink); margin:0;
}
.woocommerce ul.products li.product .price{
  display:block; padding:0 20px; color:var(--crimson); font-weight:800; font-size:1rem;
}
.woocommerce ul.products li.product .price del{ color:var(--muted); font-weight:500; margin-right:8px; }
.woocommerce ul.products li.product .price ins{ text-decoration:none; }
.woocommerce ul.products li.product .button{
  display:inline-flex; margin:16px 20px 20px; padding:10px 20px; border-radius:8px;
  background:transparent; border:1px solid var(--ink); color:var(--ink); font-weight:700; font-size:.85rem;
}
.woocommerce ul.products li.product .button:hover{ background:var(--ink); color:var(--white); }
.woocommerce ul.products li.product .onsale{
  position:absolute; margin:14px; background:var(--crimson); color:var(--white);
  font-size:.72rem; font-weight:700; padding:5px 12px; border-radius:100px; text-transform:uppercase;
}
.woocommerce ul.products li.product{ position:relative; }

.woocommerce nav.woocommerce-pagination ul{ display:flex; gap:8px; justify-content:center; margin-top:40px; list-style:none; padding:0; }
.woocommerce nav.woocommerce-pagination ul li{ list-style:none; }
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span{
  display:flex; align-items:center; justify-content:center; width:40px; height:40px;
  border-radius:8px; background:var(--white); border:1px solid var(--line); font-size:.85rem; color:var(--ink);
}
.woocommerce nav.woocommerce-pagination ul li span.current{ background:var(--black); color:var(--gold); border-color:var(--black); }

/* ---------- Homepage: single-column list (image left, content right) ---------- */
.room-list{ display:flex; flex-direction:column; gap:22px; }
.room-list-item{
  display:flex; gap:0; background:var(--white); border:1px solid var(--line);
  border-radius:var(--radius-md); overflow:hidden; box-shadow:var(--shadow-soft);
  transition:transform .2s ease, box-shadow .2s ease;
}
.room-list-item:hover{ transform:translateY(-4px); box-shadow:var(--shadow-card); }
.room-list-item .rli-media{ display:block; width:300px; flex:none; aspect-ratio:4/3; overflow:hidden; }
.room-list-item .rli-media img{ width:100%; height:100%; object-fit:cover; }
.room-list-item .rli-body{ flex:1; padding:28px 30px; display:flex; flex-direction:column; justify-content:center; }
.room-list-item .rli-body h3{ font-size:1.3rem; margin-bottom:8px; }
.room-list-item .rli-price{ color:var(--crimson); font-weight:800; font-size:1.05rem; margin-bottom:10px; }
.room-list-item .rli-body p{ color:var(--muted); font-size:.92rem; margin:0 0 16px; }
@media (max-width:700px){
  .room-list-item{ flex-direction:column; }
  .room-list-item .rli-media{ width:100%; aspect-ratio:16/10; }
}

/* ---------- Single product: image left, summary right ---------- */
.woocommerce div.product{
  display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1fr); gap:56px; align-items:flex-start;
}

/* Custom gallery (replaces WooCommerce's default Flexslider gallery) */
.eh-gallery{ position:sticky; top:100px; display:flex; flex-direction:column; gap:14px; min-width:0; }
.eh-gallery-main{ border-radius:var(--radius-lg); overflow:hidden; aspect-ratio:4/5; background:var(--paper-alt); }
.eh-gallery-main img{ width:100%; height:100%; object-fit:cover; display:block; }
.eh-gallery-thumbs{ display:flex; gap:10px; overflow-x:auto; padding-bottom:2px; min-width:0; }
.eh-gallery-thumbs button{
  flex:none; width:76px; height:76px; border-radius:10px; overflow:hidden;
  border:2px solid transparent; padding:0; opacity:.65; transition:opacity .15s ease, border-color .15s ease;
}
.eh-gallery-thumbs button:hover{ opacity:1; }
.eh-gallery-thumbs button.is-active{ opacity:1; border-color:var(--gold-deep); }
.eh-gallery-thumbs img{ width:100%; height:100%; object-fit:cover; display:block; }

.woocommerce div.product .summary{ padding-top:8px; }
.woocommerce div.product .summary .product_title{ font-size:clamp(1.8rem,3vw,2.4rem); margin-bottom:12px; }
.woocommerce div.product .summary .price{
  display:block; font-size:1.6rem; font-weight:800; color:var(--crimson); margin-bottom:18px;
}
.woocommerce div.product .summary .price del{ font-size:1.1rem; color:var(--muted); font-weight:500; margin-right:10px; }
.woocommerce div.product .summary .price ins{ text-decoration:none; }
.woocommerce div.product .summary .woocommerce-product-details__short-description{
  color:var(--ink-soft); font-size:1rem; margin-bottom:26px;
}
.woocommerce div.product .summary .woocommerce-product-details__short-description p{ margin:0 0 1em; }

/* Booking dropdowns — Duration / Institution variation selectors */
.woocommerce div.product table.variations{ width:100%; border:none; margin-bottom:22px; }
.woocommerce div.product table.variations tbody, .woocommerce div.product table.variations tr{ display:block; }
.woocommerce div.product table.variations tr{ margin-bottom:16px; }
.woocommerce div.product table.variations th.label{
  display:block; font-size:.82rem; font-weight:800; text-transform:uppercase; letter-spacing:.05em;
  color:var(--muted); margin-bottom:8px; text-align:left; padding:0;
}
.woocommerce div.product table.variations td.value{ display:block; padding:0; }
.woocommerce div.product table.variations select{
  width:100%; padding:14px 16px; border-radius:10px; border:1px solid var(--line);
  background:var(--white); color:var(--ink); font-family:var(--font); font-size:.98rem; font-weight:600;
  appearance:none; -webkit-appearance:none;
  background-image:linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position:calc(100% - 22px) center, calc(100% - 16px) center; background-size:6px 6px; background-repeat:no-repeat;
}
.woocommerce div.product table.variations select:focus{ border-color:var(--gold-deep); outline:none; }
.woocommerce div.product table.variations td.value a.reset_variations{ display:inline-block; margin-top:8px; font-size:.8rem; color:var(--crimson); font-weight:600; }

.woocommerce div.product .woocommerce-variation.single_variation{ margin-bottom:20px; }
.woocommerce div.product .woocommerce-variation-price .price{ font-size:1.4rem; margin-bottom:0; }
.woocommerce div.product .woocommerce-variation-availability{ font-size:.85rem; color:var(--muted); }

.woocommerce div.product form.cart{ display:flex; align-items:center; gap:14px; flex-wrap:wrap; margin-bottom:24px; max-width:100%; box-sizing:border-box; }
.woocommerce div.product .quantity{ display:inline-block; }
.woocommerce div.product .quantity .qty{
  width:80px; padding:14px 12px; border-radius:10px; border:1px solid var(--line);
  background:var(--white); color:var(--ink); font-family:var(--font); font-size:1rem; text-align:center;
}
.woocommerce div.product .single_add_to_cart_button{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:15px 34px; border-radius:8px; font-weight:700; font-size:.95rem;
  background:var(--crimson); color:var(--white); border:none; box-shadow:var(--shadow-soft);
}
.woocommerce div.product .single_add_to_cart_button:hover{ background:var(--crimson-deep); }
.woocommerce div.product .single_add_to_cart_button.disabled{ background:var(--line); color:var(--muted); cursor:not-allowed; }

.woocommerce div.product .whatsapp-cta{
  flex-basis:100%; width:100%; margin-top:2px; display:flex; align-items:center; justify-content:center;
  padding:15px 20px; border-radius:8px; font-weight:700; font-size:.92rem;
  border:1px solid var(--ink); color:var(--ink); background:transparent; box-sizing:border-box; text-align:center;
}
.woocommerce div.product .whatsapp-cta:hover{ background:var(--ink); color:var(--white); }

.woocommerce div.product .product_meta{
  margin-top:24px; padding-top:20px; border-top:1px solid var(--line);
  font-size:.85rem; color:var(--muted); display:flex; flex-direction:column; gap:6px;
}
.woocommerce div.product .product_meta a{ color:var(--crimson); }

/* Tabs (description / reviews) */
.woocommerce div.product .woocommerce-tabs{ grid-column:1 / -1; margin-top:50px; border-top:1px solid var(--line); padding-top:30px; }
.woocommerce div.product .woocommerce-tabs ul.tabs{ display:flex; gap:10px; list-style:none; padding:0; margin:0 0 26px; flex-wrap:wrap; }
.woocommerce div.product .woocommerce-tabs ul.tabs li{ list-style:none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a{
  display:inline-block; padding:10px 18px; border-radius:8px; background:var(--paper-alt);
  color:var(--ink-soft); font-weight:700; font-size:.9rem;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a{ background:var(--black); color:var(--gold); }
.woocommerce div.product .woocommerce-tabs .panel{ max-width:760px; color:var(--ink-soft); }

/* Related products */
.woocommerce div.product .related.products{ grid-column:1 / -1; margin-top:50px; border-top:1px solid var(--line); padding-top:40px; }
.woocommerce div.product .related.products > h2{ font-size:1.6rem; margin-bottom:26px; }

@media (max-width:900px){
  .woocommerce div.product{ grid-template-columns:minmax(0,1fr); gap:32px; }
  .woocommerce div.product .eh-gallery{ position:static; }
}

/* ---------- Notices / breadcrumbs ---------- */
.woocommerce-message, .woocommerce-error, .woocommerce-info{
  list-style:none; margin:0 0 24px; padding:16px 20px; border-radius:10px; font-size:.92rem;
  background:var(--gold-tint); color:var(--ink); border:1px solid var(--gold);
}
.woocommerce-error{ background:#fbe4e9; border-color:var(--crimson); color:var(--crimson-deep); }
.woocommerce-breadcrumb{ display:none; } /* our own .page-header crumbs replace this */

/* =========================================================
   WOOCOMMERCE — CART & CHECKOUT
   No default WC stylesheet is loaded, so these are the only rules
   governing the cart, checkout, and order-review tables/forms.
   ========================================================= */

.woocommerce-cart .shop-section,
.woocommerce-checkout .shop-section,
.woocommerce-account .shop-section{ padding-top:20px; }

/* Cart / order-review tables */
.woocommerce table.shop_table{
  width:100%; border-collapse:collapse; background:var(--white);
  border:1px solid var(--line); border-radius:var(--radius-md); overflow:hidden; margin-bottom:24px;
}
.woocommerce table.shop_table th{
  background:var(--black); color:var(--gold); text-align:left; padding:14px 18px;
  font-size:.76rem; text-transform:uppercase; letter-spacing:.05em; font-weight:800;
}
.woocommerce table.shop_table td{ padding:16px 18px; border-bottom:1px solid var(--line); font-size:.95rem; vertical-align:middle; }
.woocommerce table.shop_table tr:last-child td{ border-bottom:none; }
.woocommerce table.shop_table .product-thumbnail img{ width:64px; border-radius:8px; }
.woocommerce table.shop_table .product-name a{ font-weight:700; color:var(--ink); }
.woocommerce table.shop_table .product-name dl{ margin:6px 0 0; font-size:.82rem; color:var(--muted); }
.woocommerce table.shop_table td.fee, .woocommerce table.shop_table tr.fee td{ color:var(--crimson); font-weight:700; }
.woocommerce table.shop_table tr.order-total td, .woocommerce table.shop_table tr.order-total th{
  font-size:1.1rem; font-weight:800; background:var(--gold-tint);
}

.woocommerce .quantity .qty{
  width:70px; padding:10px; border-radius:8px; border:1px solid var(--line);
  background:var(--white); color:var(--ink); font-family:var(--font); text-align:center;
}
.woocommerce .coupon{ display:flex; gap:10px; flex-wrap:wrap; align-items:center; margin-bottom:20px; }
.woocommerce .coupon input[type="text"]{
  padding:14px 16px; border-radius:10px; border:1px solid var(--line); background:var(--white); min-width:180px;
}
.woocommerce a.remove{
  display:inline-flex; align-items:center; justify-content:center; width:26px; height:26px;
  border-radius:50%; background:var(--gold-tint); color:var(--crimson) !important; font-weight:800; text-decoration:none !important;
}
.woocommerce a.remove:hover{ background:var(--crimson); color:var(--white) !important; }

/* Cart page CTA row */
.woocommerce-cart .cart-collaterals{ max-width:480px; margin-left:auto; }
.woocommerce-cart .wc-proceed-to-checkout .checkout-button{
  display:flex; width:100%; align-items:center; justify-content:center;
  padding:16px 30px; border-radius:8px; font-weight:700; font-size:1rem;
  background:var(--crimson); color:var(--white) !important; text-decoration:none !important;
}
.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover{ background:var(--crimson-deep); }

/* Checkout layout: form left, order review right */
.woocommerce-checkout .col2-set{ display:grid; grid-template-columns:1.3fr 1fr; gap:48px; align-items:flex-start; }
.woocommerce-checkout .col-1, .woocommerce-checkout .col-2{ width:100%; }
.woocommerce-checkout h3{ font-size:1.2rem; margin:0 0 20px; }
.woocommerce-checkout .form-row{ margin-bottom:18px; }
.woocommerce-checkout .form-row label{ display:block; font-size:.85rem; font-weight:700; margin-bottom:8px; }
.woocommerce-checkout .form-row .required{ color:var(--crimson); text-decoration:none; }
.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout select{
  width:100%; padding:14px 16px; border-radius:10px; border:1px solid var(--line);
  background:var(--white); color:var(--ink); font-family:var(--font); font-size:.98rem;
}
.woocommerce-checkout input:focus, .woocommerce-checkout select:focus{ border-color:var(--gold-deep); outline:none; }
.woocommerce-checkout .select2-container .select2-selection--single{
  height:auto; padding:14px 16px; border-radius:10px; border:1px solid var(--line);
}
.woocommerce-checkout #order_review{ background:var(--paper-alt); border-radius:var(--radius-lg); padding:28px; }
.woocommerce-checkout #order_review table.shop_table{ background:transparent; border:none; margin-bottom:20px; }
.woocommerce-checkout #payment{ background:var(--white); border:1px solid var(--line); border-radius:var(--radius-md); padding:22px; margin-top:20px; }
.woocommerce-checkout #payment ul.payment_methods{ list-style:none; padding:0; margin:0 0 16px; }
.woocommerce-checkout #payment ul.payment_methods li{ padding:12px 0; border-bottom:1px solid var(--line); font-size:.95rem; }
.woocommerce-checkout #payment ul.payment_methods li:last-child{ border-bottom:none; }
.woocommerce-checkout #payment .payment_box{
  background:var(--gold-tint); border-radius:10px; padding:16px; margin-top:10px; font-size:.88rem; color:var(--ink-soft);
}
.eh-payment-instructions{ display:flex; flex-direction:column; gap:16px; }
.eh-payment-block h5{
  font-size:.76rem; text-transform:uppercase; letter-spacing:.06em; font-weight:800;
  color:var(--crimson); margin:0 0 8px;
}
.eh-payment-block p{ margin:0; line-height:1.6; color:var(--ink); }
.eh-payment-block strong{ color:var(--ink); }
@media (max-width:520px){ .eh-payment-instructions{ gap:14px; } }
.woocommerce-checkout #place_order{
  width:100%; padding:17px 30px; border-radius:8px; font-weight:800; font-size:1.02rem;
  background:var(--crimson); color:var(--white); border:none; box-shadow:var(--shadow-soft);
}
.woocommerce-checkout #place_order:hover{ background:var(--crimson-deep); }

@media (max-width:900px){
  .woocommerce-checkout .col2-set{ grid-template-columns:1fr; }
}

/* Order-received / thank-you page — this template doesn't fire the same
   before/after hooks as cart/checkout/shop, so it never gets our section
   wrapper; give it its own spacing directly instead. */
.woocommerce-order{ max-width:760px; margin:70px auto; padding:0 28px; }
.woocommerce-order .woocommerce-thankyou-order-received{
  display:block; background:var(--gold-tint); color:var(--ink); padding:18px 22px;
  border-radius:var(--radius-md); font-weight:700; margin-bottom:24px;
}
.woocommerce-order ul.woocommerce-order-overview{
  display:flex; flex-wrap:wrap; gap:20px; list-style:none; padding:0; margin:0 0 30px;
}
.woocommerce-order ul.woocommerce-order-overview li{
  background:var(--white); border:1px solid var(--line); border-radius:10px; padding:14px 18px; font-size:.9rem;
}
.woocommerce-order ul.woocommerce-order-overview li strong{ display:block; margin-top:4px; font-size:1.05rem; }
