/* ============================================================
   Ireland Health Shop — Premium Design System
   v2.0 | Deep green, gold accents, Playfair Display + Inter
   ============================================================ */



/* ── Tokens ── */
:root {
  --forest:    #1a5c35;
  --forest-dk: #0f3d22;
  --forest-md: #2a7a4d;
  --forest-lt: #e8f4ee;
  --gold:      #c8a96e;
  --gold-lt:   #f5edd8;
  --ink:       #1a2420;
  --ink-mid:   #3c4a44;
  --ink-soft:  #6b7a72;
  --cream:     #f9f7f2;
  --white:     #ffffff;
  --line:      #e2ddd5;
  --red:       #c0392b;
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,.06);
  --shadow:    0 4px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.12);
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: .2s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--forest); }

/* ── Layout ── */
.wrap        { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width:  780px; margin: 0 auto; padding: 0 24px; }
.wrap-wide   { max-width: 1320px; margin: 0 auto; padding: 0 24px; }

/* ── Navigation ── */
header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(8px);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}
.logo {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--forest);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -.3px;
  flex-shrink: 0;
}
.logo:hover { color: var(--forest-dk); }
.logo-leaf { font-size: 26px; }
.nav-links { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mid);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { background: var(--forest-lt); color: var(--forest); }
.nav-cta {
  background: var(--forest) !important;
  color: var(--white) !important;
  border-radius: var(--radius-sm) !important;
}
.nav-cta:hover { background: var(--forest-dk) !important; }

/* ── Hero (homepage) ── */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--forest-dk) 0%, var(--forest) 60%, #2d8a52 100%);
  color: var(--white);
  overflow: hidden;
  padding: 96px 0 80px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(200,169,110,.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.5px;
  margin-bottom: 20px;
  max-width: 760px;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.65;
  color: rgba(255,255,255,.88);
  max-width: 580px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ── Trust bar ── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mid);
  white-space: nowrap;
}
.trust-item .icon { font-size: 18px; }
.trust-item strong { color: var(--forest); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--forest);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-sans);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  line-height: 1;
}
.btn:hover { background: var(--forest-dk); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,92,53,.3); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: #b8954f; box-shadow: 0 6px 20px rgba(200,169,110,.4); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: var(--white); transform: translateY(-1px); box-shadow: none; color: var(--white); }
.btn-outline-green {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
  font-weight: 600;
}
.btn-outline-green:hover { background: var(--forest); color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(26,92,53,.25); }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 18px 36px; font-size: 17px; }

/* ── Section headings ── */
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -.3px;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 17px;
  color: var(--ink-mid);
  line-height: 1.7;
  max-width: 600px;
}
.section-header { margin-bottom: 40px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ── Category cards ── */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  text-decoration: none;
  color: var(--ink);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--forest-lt); }
.card-icon { font-size: 32px; margin-bottom: 14px; }
.card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}
.card p { font-size: 15px; color: var(--ink-mid); line-height: 1.65; flex-grow: 1; margin-bottom: 16px; }
.card .card-link { font-size: 14px; font-weight: 600; color: var(--forest); display: flex; align-items: center; gap: 4px; }
.card .card-link::after { content: '→'; transition: transform var(--transition); }
.card:hover .card-link::after { transform: translateX(4px); }

/* Featured card */
.card-featured {
  background: linear-gradient(135deg, var(--forest-dk), var(--forest-md));
  border-color: transparent;
  color: var(--white);
}
.card-featured h3, .card-featured p { color: var(--white); }
.card-featured p { color: rgba(255,255,255,.82); }
.card-featured .card-link { color: var(--gold); }
.card-featured:hover { border-color: transparent; }

/* ── Blog cards ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--forest-lt), #c8e6d4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.blog-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,.1));
}
.blog-card-body { padding: 22px 24px 24px; flex-grow: 1; display: flex; flex-direction: column; }
.blog-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 8px;
}
.blog-card h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 10px;
}
.blog-card p { font-size: 14px; color: var(--ink-mid); line-height: 1.6; flex-grow: 1; margin-bottom: 16px; }
.blog-read { font-size: 13px; font-weight: 600; color: var(--forest); }

/* ── Pat profile section ── */
.pat-section {
  background: var(--gold-lt);
  border-radius: var(--radius-lg);
  padding: 52px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
}
.pat-avatar {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--forest), var(--forest-md));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  flex-shrink: 0;
  border: 4px solid var(--white);
  box-shadow: var(--shadow);
}
.pat-section blockquote {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 16px;
}
.pat-section cite { font-size: 14px; font-weight: 600; color: var(--forest); font-style: normal; }

/* ── Source / info boxes ── */
.src-box {
  background: var(--forest-lt);
  border-left: 4px solid var(--forest);
  padding: 18px 22px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 15px;
  line-height: 1.65;
  margin: 28px 0;
}
.src-box a { color: var(--forest); font-weight: 500; }
.warn-box {
  background: #fef9e7;
  border-left: 4px solid var(--gold);
  padding: 18px 22px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 15px;
  margin: 28px 0;
}
.info-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 28px 0;
}

/* ── CTA section ── */
.cta-section {
  background: linear-gradient(135deg, var(--forest-dk), var(--forest));
  border-radius: var(--radius-lg);
  padding: 64px 52px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  margin: 48px 0;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(200,169,110,.2), transparent 70%);
  border-radius: 50%;
}
.cta-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  margin-bottom: 14px;
  position: relative;
}
.cta-section p { font-size: 18px; color: rgba(255,255,255,.85); margin-bottom: 32px; position: relative; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── Standalone inline CTA link (matches site-header-shop gold button) ── */
a.cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #c8a96e;
  color: #1a1a1a !important;
  padding: 13px 24px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background .15s, transform .15s, box-shadow .15s;
}
a.cta:hover {
  background: #b8954f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,169,110,.4);
}

/* ── Inline page CTA box ── */
.cta-box {
  background: var(--forest-lt);
  border: 1px solid rgba(26,92,53,.15);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin: 40px 0;
}
.cta-box p { font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 18px; }
.cta-box .cta-actions { justify-content: center; }

/* ── Disclaimer ── */
.disclaimer {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  margin-top: 24px;
}

/* ── Footer ── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 64px 0 32px;
  margin-top: 80px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 12px; display: inline-flex; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; color: rgba(255,255,255,.55); }
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  padding: 4px 0;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color var(--transition);
  font-size: 14px;
}
.footer-col a:hover { color: var(--white); }
.footer-col .footer-phone { color: var(--gold); font-weight: 600; font-size: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }
.iahs-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  color: rgba(255,255,255,.6);
}

/* ── Content page ── */
.page { padding: 48px 0 64px; }
.page-hero {
  background: linear-gradient(135deg, var(--forest-dk) 0%, var(--forest-md) 100%);
  color: var(--white);
  padding: 52px 0;
  margin-bottom: 48px;
}
.page-hero .section-label { color: var(--gold); }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 5vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -.3px;
}
.page-hero p { font-size: 18px; color: rgba(255,255,255,.85); max-width: 640px; }
.page h1 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -.3px;
}
.page h2 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--forest);
  margin: 40px 0 14px;
  line-height: 1.25;
}
.page h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  margin: 28px 0 10px;
}
.page p { margin-bottom: 18px; line-height: 1.8; color: var(--ink-mid); }
.page p:first-of-type { font-size: 18px; color: var(--ink); line-height: 1.75; }
.page ul, .page ol { padding-left: 22px; margin-bottom: 18px; }
.page li { margin-bottom: 8px; color: var(--ink-mid); line-height: 1.7; }
.page a { color: var(--forest); text-decoration: underline; text-underline-offset: 3px; }
.page a:hover { color: var(--forest-dk); }
.page blockquote {
  border-left: 4px solid var(--gold);
  margin: 28px 0;
  padding: 16px 24px;
  background: var(--gold-lt);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.6;
}
.page strong { color: var(--ink); font-weight: 600; }

/* Evidence table */
.evidence-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.evidence-table th { background: var(--forest); color: var(--white); padding: 12px 16px; text-align: left; font-weight: 600; }
.evidence-table td { border-bottom: 1px solid var(--line); padding: 11px 16px; vertical-align: top; }
.evidence-table tr:last-child td { border-bottom: none; }
.evidence-table tr:nth-child(even) td { background: var(--cream); }
.badge-strong { background: #d4edda; color: #155724; padding: 3px 10px; border-radius: 100px; font-size: 12px; font-weight: 600; }
.badge-moderate { background: #fff3cd; color: #856404; padding: 3px 10px; border-radius: 100px; font-size: 12px; font-weight: 600; }
.badge-limited { background: #f8d7da; color: #842029; padding: 3px 10px; border-radius: 100px; font-size: 12px; font-weight: 600; }

/* Remedy row (for list pages) */
.remedy-list { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }
.remedy-row {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  text-decoration: none;
  display: flex;
  gap: 20px;
  align-items: start;
  transition: box-shadow var(--transition), transform var(--transition);
}
.remedy-row:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.remedy-icon { font-size: 28px; flex-shrink: 0; }
.remedy-row h3 { font-family: var(--font-serif); font-size: 19px; color: var(--ink); margin-bottom: 6px; font-weight: 700; }
.remedy-row h3 a { color: var(--ink); text-decoration: none; }
.remedy-row h3 a:hover { color: var(--forest); }
.remedy-row p { font-size: 14px; color: var(--ink-mid); line-height: 1.6; margin: 0; }
.evidence-pill { font-size: 12px; font-weight: 600; margin-top: 8px; display: inline-block; }

/* Product card */
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  margin: 20px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}
.product-price { font-size: 26px; font-weight: 700; color: var(--forest); font-family: var(--font-sans); margin-bottom: 4px; }
.product-meta { font-size: 13px; color: var(--ink-soft); }

/* ── Breadcrumb ── */
.breadcrumb { font-size: 13px; color: var(--ink-soft); margin-bottom: 24px; display: flex; gap: 6px; flex-wrap: wrap; }
.breadcrumb a { color: var(--forest); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span::before { content: '/'; margin-right: 6px; }

/* ── Stars ── */
.stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }

/* ── Sections ── */
.section { padding: 72px 0; }
.section-alt { background: var(--white); }
.section-dark { background: var(--ink); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pat-section { grid-template-columns: 1fr; text-align: center; padding: 36px 28px; }
  .pat-avatar { margin: 0 auto; }
}
@media (max-width: 680px) {
  nav { height: auto; padding: 12px 0; flex-wrap: wrap; gap: 8px; }
  .nav-links a { padding: 6px 10px; font-size: 13px; }
  .hero { padding: 56px 0 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-section { padding: 40px 28px; }
  .product-card { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════
   SITE HEADER v3 — Premium dark navigation
   ══════════════════════════════════════════════════════ */
.site-header {
  background: #0f3d22;
  position: sticky;
  top: 0;
  z-index: 300;
  box-shadow: 0 2px 16px rgba(0,0,0,.28);
}
.site-header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 70px;
  gap: 8px;
}
.site-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 20px;
  flex-shrink: 0;
  letter-spacing: -.2px;
  transition: opacity .15s;
}
.site-logo:hover { opacity: .85; }
.site-logo-icon { font-size: 24px; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.site-nav a {
  color: rgba(255,255,255,.78);
  text-decoration: none;
  padding: 9px 13px;
  border-radius: 7px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.site-nav a:hover { background: rgba(255,255,255,.1); color: #fff; }
.site-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.site-header-phone {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  white-space: nowrap;
  transition: color .15s;
}
.site-header-phone:hover { color: rgba(255,255,255,.9); }
.site-header-shop {
  background: #c8a96e;
  color: #1a1a1a !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s, transform .15s, box-shadow .15s;
}
.site-header-shop:hover {
  background: #b8954f;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200,169,110,.4);
}
/* Mobile hamburger */
.site-nav-toggle {
  display: none;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
.site-nav-open { display: flex !important; flex-direction: column; }

/* PAGE BANNER — replaces old .page h1 hero area */
.page-banner {
  background-image: linear-gradient(135deg, rgba(10,40,18,.92) 0%, rgba(15,60,28,.82) 100%);
  background-size: cover;
  background-position: center;
  padding: 52px 24px 44px;
  color: #fff;
}
.page-banner-inner { max-width: 780px; margin: 0 auto; }
.page-banner-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c8a96e;
  margin-bottom: 10px;
}
.page-banner h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(24px,4vw,42px);
  font-weight: 700;
  color: #fff !important;
  margin: 0 0 12px;
  line-height: 1.15;
  letter-spacing: -.3px;
}
.page-banner p {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: rgba(255,255,255,.82) !important;
  line-height: 1.65;
  margin: 0;
}

/* Responsive nav */
@media(max-width: 960px) {
  .site-nav a { padding: 8px 10px; font-size: 13px; }
  .site-header-phone { display: none; }
}
@media(max-width: 768px) {
  .site-nav { display: none; position: absolute; top: 70px; left: 0; right: 0; background: #0f3d22; flex-direction: column; padding: 12px 16px 16px; gap: 4px; box-shadow: 0 8px 24px rgba(0,0,0,.3); border-top: 1px solid rgba(255,255,255,.08); z-index: 299; }
  .site-nav a { padding: 11px 14px; font-size: 15px; border-radius: 8px; }
  .site-nav-toggle { display: flex; }
  .site-header-shop { padding: 9px 14px; font-size: 13px; }
  .site-header { position: relative; }
}
