/* HappyPets — shared stylesheet */

:root {
  --bg: #FAF6EF;
  --ink: #241F1A;
  --ink-soft: #3A342C;
  --green: #2E6B4F;
  --green-dark: #25563F;
  --green-tint: #F1F6F0;
  --green-border: #D9E4D6;
  --orange: #E0793B;
  --orange-dark: #c96a31;
  --border: #E7DECF;
  --border-strong: #DCD2C0;
  --border-warm: #E0D7C6;
  --border-hair: #F1EADD;
  --border-hair2: #EFE7D8;
  --muted: #6E655B;
  --muted-2: #5E564B;
  --muted-3: #8A8073;
  --muted-4: #4C463D;
  --dark: #241F1A;
  --dark-card: #2E2921;
  --dark-border: #3C3529;
  --cream: #F3EADA;
  --cream-soft: #C8BEAE;
  --cream-mute: #9A9082;
  --white: #fff;
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --container: 1200px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --radius-pill: 999px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body), system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--orange); }
input, select, textarea, button { font-family: inherit; }
button { font: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; }
p { margin: 0; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

@keyframes hpRise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes hpToast { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.rise { animation: hpRise .5s ease both; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--dark);
  color: var(--cream);
  font-size: 13px;
  letter-spacing: .02em;
}
.topbar .container {
  padding-top: 9px;
  padding-bottom: 9px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  align-items: center;
  justify-content: space-between;
}
.topbar-left { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.topbar-left span[aria-hidden] { opacity: .55; }
.topbar-right { display: flex; gap: 18px; align-items: center; }
.topbar-right .hours { opacity: .8; }
.topbar-right a { color: var(--cream); font-weight: 600; }
.topbar-right a:hover { color: var(--orange); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 246, 239, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: inherit;
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  flex: none;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 23px;
  letter-spacing: -.02em;
  color: var(--ink);
}
.main-nav {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-left: auto;
}
.main-nav a {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  display: inline-block;
}
.main-nav a:hover, .main-nav a.active {
  background: #F1EADD;
  color: var(--green);
}
.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  position: relative;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.cart-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--green);
  color: var(--bg);
  border: none;
  cursor: pointer;
  padding: 11px 18px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
}
.cart-btn:hover { background: var(--green-dark); color: var(--bg); }
.cart-count {
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  border-radius: var(--radius-pill);
  background: var(--orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
}
.btn-primary { background: var(--green); color: var(--bg); }
.btn-primary:hover { background: var(--green-dark); color: var(--bg); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid #C9BFAD; }
.btn-outline:hover { border-color: var(--green); color: var(--green); }
.btn-dark { background: var(--ink); color: var(--bg); }
.btn-dark:hover { background: var(--green); color: var(--bg); }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-dark); color: #fff; }
.btn-sm { padding: 12px 24px; font-size: 15px; }
.btn-block { width: 100%; }

/* ---------- Sections / typography helpers ---------- */
.section { padding: 80px 0; }
.section-tight { padding: 52px 0 84px; }
.eyebrow {
  display: inline-block;
  padding: 7px 15px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid var(--green-border);
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.h1-page {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  letter-spacing: -.025em;
  margin: 0;
}
.lead {
  color: var(--muted);
  font-size: 17px;
  margin: 10px 0 0;
  max-width: 660px;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.section-head h2 {
  font-weight: 800;
  font-size: 38px;
  letter-spacing: -.02em;
}
.section-head p { color: var(--muted); font-size: 17px; margin: 10px 0 0; }

/* ---------- Hero ---------- */
.hero {
  padding: 76px 0 84px;
  background: linear-gradient(180deg, #F1F6F0 0%, #FAF6EF 100%);
  border-bottom: 1px solid var(--border);
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-weight: 800;
  font-size: 60px;
  line-height: 1.03;
  letter-spacing: -.03em;
  margin: 22px 0 0;
}
.hero p.hero-copy {
  font-size: 19px;
  line-height: 1.6;
  color: var(--muted-2);
  max-width: 520px;
  margin: 20px 0 0;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.hero-stats {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid var(--border-warm);
}
.hero-stats .stat-value { font-family: var(--font-display); font-weight: 800; font-size: 28px; color: var(--green); }
.hero-stats .stat-label { font-size: 14px; color: var(--muted); margin-top: 2px; }
.hero-media {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 470px;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- USPs ---------- */
.usps {
  padding: 44px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.usps .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.usp { display: flex; gap: 14px; align-items: flex-start; }
.usp-num {
  width: 34px; height: 34px; flex: none;
  border-radius: var(--radius-sm);
  background: var(--green-tint);
  border: 1px solid var(--green-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-weight: 800; font-family: var(--font-display);
}
.usp-title { font-weight: 700; font-size: 15px; }
.usp-desc { font-size: 14px; color: var(--muted); line-height: 1.5; margin-top: 3px; }

/* ---------- Grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }

/* ---------- Category cards ---------- */
.cat-card {
  text-align: left;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  display: block;
  width: 100%;
  color: inherit;
}
.cat-card:hover { border-color: var(--green); color: inherit; }
.cat-card .cat-img { height: 150px; overflow: hidden; }
.cat-card .cat-img img { width: 100%; height: 100%; object-fit: cover; }
.cat-card .cat-body { padding: 20px 22px 24px; }
.cat-card .cat-name { font-family: var(--font-display); font-weight: 800; font-size: 21px; }
.cat-card .cat-desc { font-size: 14.5px; color: var(--muted); line-height: 1.55; margin-top: 6px; }
.cat-card .cat-count { margin-top: 14px; color: var(--green); font-weight: 700; font-size: 14px; }

/* ---------- Product cards ---------- */
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-card .product-img { height: 170px; position: relative; overflow: hidden; }
.product-card .product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--orange); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 5px 10px; border-radius: var(--radius-pill);
}
.product-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.product-cat { font-size: 12px; color: var(--muted-3); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.product-name { font-weight: 700; font-size: 16px; line-height: 1.35; margin-top: 6px; flex: 1; }
.product-desc { font-size: 13.5px; color: var(--muted); line-height: 1.5; margin-top: 7px; }
.product-stock { font-size: 13px; color: var(--green); font-weight: 600; margin-top: 10px; }
.product-price-row { display: flex; align-items: baseline; gap: 8px; margin-top: 12px; }
.product-price { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--green); }
.product-vat { font-size: 12.5px; color: var(--muted-3); }
.product-add {
  margin-top: 14px; padding: 11px 16px; border-radius: 12px;
  background: var(--ink); color: var(--bg); border: none; cursor: pointer;
  font-weight: 700; font-size: 14px; width: 100%;
}
.product-add:hover { background: var(--green); color: var(--bg); }

/* ---------- Featured / shop wrappers ---------- */
.shop-filters { display: flex; gap: 10px; flex-wrap: wrap; margin: 30px 0 14px; }
.filter-btn {
  padding: 10px 18px; border-radius: var(--radius-pill);
  border: 1.5px solid var(--border-strong);
  background: #fff; color: var(--ink);
  cursor: pointer; font-weight: 600; font-size: 14.5px;
}
.filter-btn.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.shown-count { font-size: 14px; color: var(--muted-3); margin-bottom: 26px; }

/* ---------- Loyalty band (home) ---------- */
.loyalty-band { padding: 76px 0; background: var(--dark); color: var(--cream); }
.loyalty-band .container { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.loyalty-band h2 { font-weight: 800; font-size: 40px; letter-spacing: -.02em; line-height: 1.1; color: var(--cream); }
.loyalty-band p { font-size: 17px; line-height: 1.65; color: var(--cream-soft); margin: 18px 0 28px; }
.perks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.perk-card { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: 18px; padding: 22px; }
.perk-value { font-family: var(--font-display); font-weight: 800; font-size: 26px; color: var(--orange); }
.perk-text { font-size: 14px; color: var(--cream-soft); line-height: 1.5; margin-top: 8px; }

/* ---------- Reviews ---------- */
.review-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; }
.review-stars { color: var(--orange); font-size: 15px; letter-spacing: 2px; }
.review-text { font-size: 15.5px; line-height: 1.65; color: var(--ink-soft); margin: 14px 0 18px; }
.review-who { display: flex; align-items: center; gap: 11px; }
.review-avatar {
  width: 38px; height: 38px; border-radius: var(--radius-pill);
  background: var(--green-tint); border: 1px solid var(--green-border);
  display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--green);
}
.review-name { font-weight: 700; font-size: 14.5px; }
.review-city { font-size: 13px; color: var(--muted-3); }

/* ---------- Cards generic ---------- */
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; }
.card-pad-lg { padding: 28px 30px; }

/* ---------- Services ---------- */
.service-card { display: flex; flex-direction: column; }
.service-title { font-family: var(--font-display); font-weight: 800; font-size: 21px; }
.service-desc { font-size: 15px; line-height: 1.6; color: var(--muted-2); margin: 10px 0 16px; flex: 1; }
.service-foot { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid var(--border-hair2); }
.service-time { font-size: 13.5px; color: var(--muted-3); }
.service-price { font-weight: 800; font-family: var(--font-display); font-size: 19px; color: var(--green); }
.cta-band {
  margin-top: 34px; background: var(--green-tint); border: 1px solid var(--green-border);
  border-radius: var(--radius-lg); padding: 28px 30px; display: flex; gap: 24px; align-items: center; flex-wrap: wrap;
}
.cta-band .cta-title { font-family: var(--font-display); font-weight: 800; font-size: 22px; }
.cta-band .cta-text { font-size: 15.5px; color: var(--muted-4); margin: 8px 0 0; }
.cta-band .cta-copy { flex: 1; min-width: 280px; }

/* ---------- About ---------- */
.about-photo { height: 300px; border-radius: 22px; margin: 34px 0; overflow: hidden; border: 1px solid var(--border); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-block h3 { font-weight: 800; font-size: 22px; margin: 0 0 8px; }
.about-block p { font-size: 15.5px; line-height: 1.7; color: var(--muted-2); }
.company-table { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 32px; font-size: 15px; color: var(--ink-soft); line-height: 1.6; }
.company-row { display: flex; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--border-hair); padding-bottom: 8px; }
.company-row .k { color: var(--muted-3); }
.company-row .v { font-weight: 600; text-align: right; }

/* ---------- Blog ---------- */
.blog-card {
  text-align: left; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; padding: 0; display: flex; flex-direction: column; color: inherit;
}
.blog-card:hover { border-color: var(--green); color: inherit; }
.blog-card .blog-img { height: 160px; overflow: hidden; }
.blog-card .blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .blog-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: 12.5px; color: var(--muted-3); font-weight: 600; }
.blog-title { font-family: var(--font-display); font-weight: 800; font-size: 20px; line-height: 1.25; margin-top: 8px; }
.blog-lead { font-size: 14.5px; color: var(--muted); line-height: 1.6; margin-top: 9px; flex: 1; }
.blog-more { color: var(--green); font-weight: 700; font-size: 14px; margin-top: 14px; }

/* ---------- Article ---------- */
.article-wrap { max-width: 760px; margin: 0 auto; }
.article-back { background: none; border: none; cursor: pointer; color: var(--green); font-weight: 700; font-size: 14.5px; padding: 0; margin-bottom: 20px; display: inline-block; }
.article-meta { font-size: 13px; color: var(--muted-3); font-weight: 600; }
.article-wrap h1 { font-weight: 800; font-size: 42px; line-height: 1.1; letter-spacing: -.025em; margin: 10px 0 0; }
.article-lead { font-size: 19px; line-height: 1.6; color: var(--muted-2); margin: 16px 0 0; }
.article-photo { border-radius: 20px; margin: 30px 0; overflow: hidden; border: 1px solid var(--border); }
.article-photo img { width: 100%; max-height: 420px; object-fit: cover; }
.article-wrap h3 { font-weight: 800; font-size: 23px; margin: 30px 0 10px; }
.article-wrap .p { font-size: 16.5px; line-height: 1.75; color: var(--ink-soft); margin: 0; }
.article-note { margin-top: 40px; background: var(--green-tint); border: 1px solid var(--green-border); border-radius: 18px; padding: 24px 26px; font-size: 14.5px; color: var(--muted-4); line-height: 1.65; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 16px; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 22px 24px; font-weight: 700; font-size: 17px; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .chev { transition: transform .2s ease; flex: none; color: var(--muted-3); }
.faq-item[open] .faq-q .chev { transform: rotate(180deg); }
.faq-a { padding: 0 24px 22px; font-size: 15.5px; line-height: 1.65; color: var(--muted-2); margin: 0; }

/* ---------- Loyalty page ---------- */
.loyalty-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 34px; }
.step-num {
  width: 34px; height: 34px; border-radius: var(--radius-sm);
  background: var(--ink); color: var(--bg); display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-family: var(--font-display);
}
.step-title { font-family: var(--font-display); font-weight: 800; font-size: 20px; margin: 14px 0 8px; }
.step-desc { font-size: 15px; line-height: 1.6; color: var(--muted-2); }
.tier-row { display: flex; gap: 20px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--border-hair); flex-wrap: wrap; }
.tier-row:last-child { border-bottom: none; }
.tier-name { width: 120px; font-weight: 800; font-family: var(--font-display); font-size: 18px; color: var(--green); }
.tier-req { width: 150px; font-size: 14.5px; color: var(--muted-3); }
.tier-perk { flex: 1; font-size: 15px; color: var(--ink-soft); min-width: 200px; }

/* ---------- Cart ---------- */
.cart-empty { background: #fff; border: 1px dashed var(--border-strong); border-radius: 22px; padding: 64px 32px; text-align: center; }
.cart-empty .title { font-family: var(--font-display); font-weight: 800; font-size: 24px; }
.cart-empty p { color: var(--muted); font-size: 16px; margin: 10px 0 24px; }
.cart-grid { display: grid; grid-template-columns: 1.5fr .9fr; gap: 26px; align-items: start; }
.cart-lines { display: flex; flex-direction: column; gap: 14px; }
.cart-line { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 16px; display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.cart-line .thumb { width: 82px; height: 82px; flex: none; border-radius: 13px; overflow: hidden; background: var(--green-tint); }
.cart-line .thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-line .info { flex: 1; min-width: 160px; }
.cart-line .info .cat { font-size: 12px; color: var(--muted-3); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.cart-line .info .name { font-weight: 700; font-size: 16px; margin-top: 4px; }
.cart-line .info .price { font-size: 13.5px; color: var(--muted); margin-top: 3px; }
.qty-ctrl { display: flex; align-items: center; gap: 8px; }
.qty-btn { width: 34px; height: 34px; border-radius: var(--radius-sm); border: 1px solid var(--border-strong); background: var(--bg); cursor: pointer; font-size: 17px; font-weight: 700; }
.qty-val { min-width: 28px; text-align: center; font-weight: 700; }
.line-sum { min-width: 96px; text-align: right; font-family: var(--font-display); font-weight: 800; font-size: 19px; color: var(--green); }
.line-remove { background: none; border: none; cursor: pointer; color: #A2988A; font-size: 13px; font-weight: 600; text-decoration: underline; }
.cart-summary { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; position: sticky; top: 104px; }
.cart-summary .summary-title { font-family: var(--font-display); font-weight: 800; font-size: 21px; margin-bottom: 16px; }
.summary-row { display: flex; justify-content: space-between; font-size: 15px; padding: 8px 0; color: var(--ink-soft); }
.summary-row.vat { font-size: 14px; padding: 8px 0; color: var(--muted-3); border-bottom: 1px solid var(--border-hair2); }
.summary-total { display: flex; justify-content: space-between; align-items: baseline; padding: 16px 0 4px; }
.summary-total .label { font-weight: 700; font-size: 16px; }
.summary-total .value { font-family: var(--font-display); font-weight: 800; font-size: 28px; color: var(--green); }
.ship-note { font-size: 13.5px; color: var(--muted); line-height: 1.5; margin: 10px 0 18px; }
.legal-note { font-size: 12.5px; color: var(--muted-3); line-height: 1.55; margin-top: 12px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.contact-col { display: flex; flex-direction: column; gap: 16px; }
.contact-card-title { font-family: var(--font-display); font-weight: 800; font-size: 20px; margin-bottom: 14px; }
.contact-details { font-size: 15.5px; line-height: 1.75; color: var(--ink-soft); }
.hours-row { display: flex; justify-content: space-between; font-size: 15px; padding: 7px 0; border-bottom: 1px solid var(--border-hair); }
.hours-row:last-child { border-bottom: none; }
.hours-row .d { color: var(--muted); }
.hours-row .t { font-weight: 600; }
.map-embed { height: 220px; border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; background: var(--green-tint); }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Forms ---------- */
.form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; display: flex; flex-direction: column; gap: 14px; }
.form-title { font-family: var(--font-display); font-weight: 800; font-size: 20px; }
.form-hint { font-size: 14.5px; color: var(--muted); margin: 0; line-height: 1.55; }
.field {
  padding: 13px 15px; border-radius: 12px; border: 1px solid var(--border-strong);
  background: var(--bg); font-size: 15px; width: 100%; color: var(--ink);
}
textarea.field { resize: vertical; }
.checkbox-row { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--muted); line-height: 1.55; }
.checkbox-row input { margin-top: 3px; }
.form-msg { font-size: 14px; font-weight: 600; padding: 12px 14px; border-radius: 12px; display: none; }
.form-msg.ok { display: block; background: var(--green-tint); color: var(--green-dark); border: 1px solid var(--green-border); }
.form-msg.err { display: block; background: #FBEAE4; color: #9A3A1B; border: 1px solid #EBC3B0; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Legal pages ---------- */
.legal-wrap { max-width: 820px; margin: 0 auto; }
.legal-wrap h1 { font-weight: 800; font-size: 40px; letter-spacing: -.025em; line-height: 1.12; }
.legal-intro { font-size: 17px; line-height: 1.65; color: var(--muted-2); margin: 14px 0 6px; }
.legal-date { font-size: 13.5px; color: var(--muted-3); margin-bottom: 8px; }
.legal-wrap h2 { font-weight: 800; font-size: 22px; margin: 32px 0 10px; }
.legal-wrap .p { font-size: 16px; line-height: 1.75; color: var(--ink-soft); margin: 0 0 12px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: var(--cream-soft); padding: 64px 0 30px; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.footer-brand .brand-mark { width: 36px; height: 36px; }
.footer-brand .brand-name { color: var(--cream); font-size: 21px; }
.footer-col-title { color: var(--cream); font-weight: 700; font-size: 15px; margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: var(--cream-soft); font-size: 14.5px; text-align: left; background: none; border: none; padding: 0; cursor: pointer; }
.footer-links a:hover { color: var(--orange); }
.footer-address { font-size: 14.5px; line-height: 1.7; margin: 0 0 14px; }
.footer-reg { font-size: 13.5px; line-height: 1.65; margin: 0; color: var(--cream-mute); }
.footer-contact p { font-size: 14.5px; line-height: 1.8; margin: 0; color: var(--cream-soft); }
.footer-contact a { color: var(--cream-soft); }
.footer-authority { font-size: 13.5px; line-height: 1.65; margin-top: 14px; color: var(--cream-mute); }
.footer-bottom {
  margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--dark-border);
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; font-size: 13.5px; color: var(--muted-3);
}

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 34px; transform: translateX(-50%); z-index: 70;
  background: var(--dark); color: var(--cream); padding: 14px 24px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 15px; box-shadow: 0 12px 34px rgba(0,0,0,.24);
  animation: hpToast .25s ease both;
  display: none;
}
.toast.show { display: block; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 24px; right: 24px; bottom: 24px; z-index: 80;
  display: none; justify-content: center;
}
.cookie-banner.show { display: flex; }
.cookie-inner {
  max-width: 900px; width: 100%; background: #fff; border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg); padding: 24px 26px; box-shadow: 0 18px 50px rgba(36,31,26,.18);
  display: flex; gap: 24px; align-items: center; flex-wrap: wrap;
}
.cookie-inner .cookie-copy { flex: 1; min-width: 260px; }
.cookie-inner .cookie-title { font-family: var(--font-display); font-weight: 800; font-size: 18px; margin-bottom: 6px; }
.cookie-inner p { font-size: 14.5px; line-height: 1.6; color: var(--muted-2); margin: 0; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-cookie-reject { padding: 12px 22px; border-radius: 12px; background: transparent; border: 1.5px solid var(--border-strong); cursor: pointer; font-weight: 700; font-size: 14.5px; color: var(--ink); }
.btn-cookie-accept { padding: 12px 22px; border-radius: 12px; background: var(--green); border: none; cursor: pointer; font-weight: 700; font-size: 14.5px; color: var(--bg); }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--bg); padding: 12px 18px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; gap: 34px; }
  .hero-media { height: 340px; order: -1; }
  .hero h1 { font-size: 44px; }
  .usps .grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .loyalty-band .container { grid-template-columns: 1fr; gap: 30px; }
  .perks-grid { grid-template-columns: repeat(3, 1fr); }
  .cart-grid { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px 24px; }
  .loyalty-steps { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); flex-direction: column; gap: 0; padding: 8px 20px 16px; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 6px; border-radius: 0; }
  .nav-toggle { display: flex; }
  .site-header .container { position: relative; }
  .hero h1 { font-size: 34px; }
  .hero p.hero-copy { font-size: 17px; }
  .hero-stats { gap: 20px; }
  .usps .grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .perks-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .h1-page { font-size: 32px; }
  .section-head h2 { font-size: 28px; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
  .tier-row { flex-direction: column; align-items: flex-start; gap: 6px; }
  .tier-name, .tier-req { width: auto; }
}
