/* Contes Poner — contesponer.shop | design system */

*, *::before, *::after { box-sizing: border-box; }

/* Several components below set an explicit `display` (flex/grid) at the
   same specificity as the UA [hidden] rule; without !important here the
   author rule would win and the element would stay visible while hidden. */
[hidden] { display: none !important; }

:root {
  --teal: #14708f;
  --teal-dark: #0f5568;
  --teal-tint: #eef7fa;
  --teal-tint-2: #dff1f6;
  --green: #3f9f74;
  --green-dark: #348762;
  --green-tint: #f4faf7;
  --green-tint-2: #ddf1e6;
  --navy: #14364a;
  --navy-2: #14708f;
  --footer-bg: #10303f;
  --ink: #17282f;
  --ink-2: #2c4652;
  --body: #435964;
  --body-2: #4a616c;
  --body-3: #5b7280;
  --muted: #6d8590;
  --muted-2: #7c9299;
  --border: #e6f0f3;
  --border-2: #eaf3f6;
  --border-3: #eef4f6;
  --border-4: #d7e6eb;
  --border-5: #dbeae4;
  --bg-tint: #f2fafc;
  --shot-a: #eef6f9;
  --shot-b: #f8fcfd;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  font-family: Karla, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: Nunito, Helvetica, Arial, sans-serif;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--navy);
}

p { margin: 0; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--teal);
  color: #dff1f6;
  font-size: 13px;
  padding: 8px 20px;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  text-align: center;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-2);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 12px;
  background: var(--teal); display: grid; place-items: center;
  color: #fff; font-family: Nunito; font-weight: 800; font-size: 17px;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: Nunito; font-size: 18px; color: var(--ink); }
.brand-text span { font-size: 11px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; flex-wrap: wrap; }
.nav-link {
  padding: 9px 12px; border-radius: 9px; color: var(--ink-2);
  font-weight: 500; font-size: 15px;
}
.nav-link:hover, .nav-link.is-active { background: var(--teal-tint); color: var(--teal); text-decoration: none; }
.nav-cart {
  margin-left: 8px; padding: 10px 16px; border-radius: 999px;
  background: var(--green); color: #fff; font-weight: 700; font-size: 15px;
  display: flex; align-items: center; gap: 8px; border: none;
}
.nav-cart:hover { background: var(--green-dark); color: #fff; text-decoration: none; }
.cart-badge {
  min-width: 22px; height: 22px; padding: 0 6px; border-radius: 999px;
  background: rgba(255,255,255,0.22); display: grid; place-items: center; font-size: 13px;
}
.nav-toggle {
  display: none; margin-left: auto; border: none; background: none;
  width: 40px; height: 40px; border-radius: 10px; align-items: center; justify-content: center;
}
.nav-toggle:hover { background: var(--teal-tint); }
.nav-toggle svg { width: 22px; height: 22px; }

.flash-bar {
  background: var(--green-tint); color: #2c6e51; text-align: center;
  font-size: 14px; padding: 8px 20px; border-top: 1px solid #d6ecdf;
  animation: cpFade 0.2s ease both;
}

@keyframes cpFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; cursor: pointer; font-weight: 700; border-radius: 999px;
  padding: 15px 26px; font-size: 16px; text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); color: #fff; }
.btn-secondary { background: #fff; color: var(--teal); border: 1.5px solid #bcd9e2; }
.btn-secondary:hover { background: var(--teal-tint); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); color: #fff; }
.btn-sm { padding: 10px 14px; border-radius: 999px; font-size: 14px; background: var(--teal-tint); color: var(--teal); }
.btn-sm:hover { background: var(--teal); color: #fff; }
.btn-pill-outline {
  padding: 10px 18px; border-radius: 999px; border: 1.5px solid var(--border-4);
  background: #fff; color: var(--teal); font-weight: 700;
}
.btn-pill-outline.is-active { background: var(--teal); color: #fff; border-color: var(--teal); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--bg-tint) 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border-2);
}
.hero-grid {
  max-width: 1180px; margin: 0 auto; padding: 64px 20px 72px;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
}
.hero-copy { display: flex; flex-direction: column; gap: 22px; }
.badge {
  align-self: start; padding: 7px 14px; border-radius: 999px;
  background: var(--teal-tint-2); color: var(--teal); font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
}
.hero-copy h1 { font-size: 52px; line-height: 1.06; font-weight: 800; }
.lede { font-size: 19px; line-height: 1.6; color: var(--body-2); max-width: 540px; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.stat-row { display: flex; gap: 32px; flex-wrap: wrap; padding-top: 8px; }
.stat { display: flex; flex-direction: column; }
.stat strong { font-family: Nunito; font-size: 26px; color: var(--green); }
.stat span { font-size: 14px; color: var(--muted); }
.hero-media {
  border-radius: var(--radius-xl); overflow: hidden; border: 1px solid #dce9ee;
  aspect-ratio: 4 / 3.4;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Sections ---------- */
.section { max-width: 1180px; margin: 0 auto; padding: 56px 20px; }
.section-tight { padding-top: 8px; }
.section-head {
  display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 24px; flex-wrap: wrap;
}
.section-head h2 { font-size: 32px; }
.section-head p { font-size: 16px; color: var(--body-3); }
.section-head .more { font-weight: 700; white-space: nowrap; }

/* ---------- Feature grid ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card {
  border: 1px solid var(--border); border-radius: 18px; padding: 22px; background: #fbfdfe;
  display: flex; flex-direction: column; gap: 8px;
}
.feature-icon { width: 34px; height: 34px; border-radius: 10px; background: var(--teal-tint-2); }
.feature-icon.green { background: var(--green-tint-2); }
.feature-card strong { font-family: Nunito; font-size: 17px; color: var(--navy); }
.feature-card p { font-size: 14.5px; line-height: 1.55; color: var(--body-3); }

/* ---------- Product grid / cards ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: #fff;
  display: flex; flex-direction: column;
}
.product-shot {
  display: block; aspect-ratio: 1 / 0.82; background: var(--shot-a); overflow: hidden;
}
.product-shot img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.cat-label { font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); font-weight: 700; }
.product-body a.title, .product-title {
  font-family: Nunito; font-weight: 700; font-size: 16.5px; color: var(--navy); line-height: 1.3; text-decoration: none;
}
.product-body a.title:hover, .product-title:hover { text-decoration: underline; }
.product-short { font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.product-foot {
  margin-top: auto; padding-top: 12px; display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.price { font-family: Nunito; font-size: 19px; color: var(--navy); }

/* ---------- Calculator ---------- */
.calc-section { background: var(--green-tint); border-top: 1px solid #e4f0ea; border-bottom: 1px solid #e4f0ea; }
.calc-grid { max-width: 1180px; margin: 0 auto; padding: 56px 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.calc-copy { display: flex; flex-direction: column; gap: 14px; }
.calc-copy h2 { font-size: 30px; }
.calc-copy > p { font-size: 16px; line-height: 1.6; color: var(--body-2); }
.calc-field { display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: var(--body-2); font-weight: 500; }
.calc-field input[type=range] { width: 100%; accent-color: var(--green); }
.calc-field select {
  padding: 11px 14px; border-radius: 12px; border: 1.5px solid var(--border-4); background: #fff; color: var(--ink);
}
.calc-result {
  background: #fff; border: 1px solid var(--border-5); border-radius: 22px; padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
}
.calc-result .eyebrow { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.calc-result .big { font-family: Nunito; font-size: 56px; line-height: 1; color: var(--green); }
.calc-result p { font-size: 15px; line-height: 1.6; color: var(--body-3); }
.hr { height: 1px; background: var(--border-3); }

/* ---------- Article cards ---------- */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.article-card { display: flex; flex-direction: column; gap: 12px; }
.article-card.boxed { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: #fff; }
.article-card.boxed .article-copy { padding: 4px 18px 20px; display: flex; flex-direction: column; gap: 10px; }
.article-shot {
  display: grid; place-items: center; aspect-ratio: 3 / 2; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--border); background: var(--shot-a);
}
.article-card.boxed .article-shot { border-radius: 0; border: none; }
.article-shot img { width: 100%; height: 100%; object-fit: cover; }
.meta { font-size: 12px; color: var(--muted); }
.article-title { font-family: Nunito; font-weight: 700; font-size: 19px; color: var(--navy); line-height: 1.3; text-decoration: none; }
.article-title:hover { text-decoration: underline; }
.article-lead { font-size: 14.5px; line-height: 1.6; color: var(--body-3); }
.read-more { font-weight: 700; font-size: 14.5px; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--navy); color: #dbeaf0; }
.testimonials-grid {
  max-width: 1180px; margin: 0 auto; padding: 56px 20px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.testimonial { display: flex; flex-direction: column; gap: 10px; }
.testimonial .eyebrow { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: #7fb6c9; font-weight: 700; }
.testimonial p { font-size: 16.5px; line-height: 1.65; }
.testimonial strong { font-family: Nunito; font-size: 15px; color: #fff; }

/* ---------- Newsletter ---------- */
.newsletter-box {
  border: 1px solid var(--border-5); border-radius: var(--radius-xl); background: var(--green-tint);
  padding: 40px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 32px; align-items: center;
}
.newsletter-copy { display: flex; flex-direction: column; gap: 10px; }
.newsletter-copy h2 { font-size: 28px; }
.newsletter-copy p { font-size: 16px; line-height: 1.6; color: var(--body-2); }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input[type=email] {
  flex: 1; min-width: 200px; padding: 14px 16px; border-radius: 12px; border: 1.5px solid var(--border-4); background: #fff;
}
.form-note { font-size: 12.5px; color: var(--muted); flex-basis: 100%; }

/* ---------- Generic inputs ---------- */
.field {
  padding: 13px 15px; border-radius: 12px; border: 1.5px solid var(--border-4); width: 100%; background: #fff; color: var(--ink);
}
.field:focus { outline: 2px solid var(--teal); outline-offset: 1px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-stack { display: flex; flex-direction: column; gap: 14px; }
.checkbox-row { display: flex; gap: 10px; align-items: start; font-size: 14px; color: var(--body-3); line-height: 1.5; }
.checkbox-row input { margin-top: 3px; accent-color: var(--green); }

/* ---------- Breadcrumb / page heads ---------- */
.crumb { font-size: 13px; color: var(--muted); }
.page-head { display: flex; flex-direction: column; gap: 12px; }
.page-head h1 { font-size: 40px; }
.page-lede { font-size: 17px; line-height: 1.6; color: var(--body-2); max-width: 760px; }

/* ---------- Shop filters ---------- */
.filter-row { display: flex; gap: 10px; flex-wrap: wrap; padding-top: 8px; }

/* ---------- Product detail ---------- */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; padding-top: 20px; }
.product-detail-media {
  display: grid; place-items: center; aspect-ratio: 1 / 1; border-radius: var(--radius-xl);
  border: 1px solid var(--border); overflow: hidden;
}
.product-detail-media img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-copy { display: flex; flex-direction: column; gap: 16px; }
.product-detail-copy h1 { font-size: 34px; line-height: 1.15; }
.product-detail-copy .desc { font-size: 16.5px; line-height: 1.65; color: var(--body-2); }
.price-row { display: flex; align-items: center; gap: 16px; }
.price-row .price { font-size: 34px; }
.in-stock { font-size: 13.5px; color: var(--green); font-weight: 700; }
.spec-block { border-top: 1px solid var(--border); padding-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.spec-row { display: grid; grid-template-columns: 150px 1fr; gap: 12px; font-size: 14.5px; color: var(--body-3); }
.spec-row span:first-child { color: var(--muted); }
.fine-print { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ---------- Article detail ---------- */
.article-detail { max-width: 760px; margin: 0 auto; padding: 44px 20px 64px; display: flex; flex-direction: column; gap: 20px; }
.article-detail h1 { font-size: 38px; line-height: 1.15; }
.article-hero { display: grid; place-items: center; aspect-ratio: 16 / 8; border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-lead-p { font-size: 19px; line-height: 1.65; color: var(--ink-2); font-weight: 500; }
.article-block { display: flex; flex-direction: column; gap: 10px; }
.article-block h2 { font-size: 23px; padding-top: 8px; }
.article-block p { font-size: 16.5px; line-height: 1.75; color: #435964; }
.vet-note {
  border: 1px solid var(--border-5); background: var(--green-tint); border-radius: 18px; padding: 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.vet-note strong { font-family: Nunito; font-size: 17px; color: var(--navy); }
.vet-note p { font-size: 15.5px; line-height: 1.65; color: var(--body-2); }

/* ---------- Care page ---------- */
.care-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.care-card { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; display: flex; flex-direction: column; gap: 14px; }
.care-card h2 { font-size: 22px; }
.care-row { display: grid; grid-template-columns: 110px 1fr; gap: 14px; padding: 12px 0; border-top: 1px solid var(--border-3); }
.care-row strong { font-family: Nunito; font-size: 15px; color: var(--green); }
.care-row span { font-size: 15px; line-height: 1.55; color: var(--body-3); }
.toxic-row { display: flex; flex-direction: column; gap: 4px; padding: 12px 0; border-top: 1px solid var(--border-3); }
.toxic-row strong { font-family: Nunito; font-size: 15.5px; color: var(--navy); }
.toxic-row span { font-size: 14.5px; line-height: 1.55; color: var(--muted); }
.vaccine-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.vaccine-card { background: #f7fbfc; border-radius: 16px; padding: 18px; display: flex; flex-direction: column; gap: 6px; }
.vaccine-card strong { font-family: Nunito; font-size: 16px; color: var(--teal); }
.vaccine-card span { font-size: 14.5px; line-height: 1.55; color: var(--body-3); }

/* ---------- About page ---------- */
.about-wrap { max-width: 900px; margin: 0 auto; padding: 44px 20px 64px; display: flex; flex-direction: column; gap: 18px; }
.about-wrap h1 { font-size: 40px; }
.about-wrap h2 { font-size: 26px; padding-top: 12px; }
.about-wrap p { font-size: 16.5px; line-height: 1.75; color: #435964; }
.about-lede { font-size: 18px !important; line-height: 1.7 !important; }
.about-photo { border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 16/8; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding-top: 16px; }
.team-card { border: 1px solid var(--border); border-radius: 18px; padding: 20px; display: flex; flex-direction: column; gap: 6px; }
.team-card strong { font-family: Nunito; font-size: 16px; color: var(--navy); }
.team-card span { font-size: 14px; color: var(--muted); }

/* ---------- Cart ---------- */
.cart-wrap { max-width: 1000px; margin: 0 auto; padding: 44px 20px 64px; display: flex; flex-direction: column; gap: 24px; }
.cart-wrap h1 { font-size: 38px; }
.cart-empty {
  border: 1px dashed #cfe2e8; border-radius: var(--radius-lg); padding: 48px; text-align: center;
  display: flex; flex-direction: column; gap: 14px; align-items: center;
}
.cart-empty p { font-size: 17px; color: var(--body-3); }
.cart-layout { display: grid; grid-template-columns: 1.4fr 0.8fr; gap: 28px; align-items: start; }
.cart-lines { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.cart-line { display: grid; grid-template-columns: 74px 1fr auto; gap: 16px; padding: 18px; border-bottom: 1px solid var(--border-3); align-items: center; }
.cart-line:last-child { border-bottom: none; }
.cart-thumb { width: 74px; height: 74px; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); background: var(--shot-a); }
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { display: flex; flex-direction: column; gap: 6px; }
.cart-item-info strong { font-family: Nunito; font-size: 16px; color: var(--navy); }
.cart-item-info .unit { font-size: 13.5px; color: var(--muted); }
.qty-row { display: flex; align-items: center; gap: 8px; padding-top: 4px; }
.qty-btn {
  cursor: pointer; width: 30px; height: 30px; border-radius: 8px; border: 1.5px solid var(--border-4);
  background: #fff; color: var(--teal); font-weight: 700;
}
.qty-num { min-width: 26px; text-align: center; font-weight: 700; }
.remove-link { cursor: pointer; margin-left: 8px; border: none; background: none; color: #96a9b1; font-size: 13.5px; text-decoration: underline; }
.line-total { font-family: Nunito; font-size: 17px; color: var(--navy); white-space: nowrap; }
.summary-box {
  border: 1px solid var(--border-5); background: var(--green-tint); border-radius: var(--radius-lg); padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.summary-box strong.title { font-family: Nunito; font-size: 18px; color: var(--navy); }
.summary-row { display: flex; justify-content: space-between; font-size: 15px; color: var(--body-2); }
.summary-total { display: flex; justify-content: space-between; align-items: baseline; }
.summary-total strong:first-child { font-family: Nunito; font-size: 17px; color: var(--navy); }
.summary-total strong:last-child { font-family: Nunito; font-size: 24px; color: var(--green); }
.tiny-note { font-size: 12.5px; color: var(--muted); }
.link-center { text-align: center; font-size: 14.5px; }

/* ---------- Checkout ---------- */
.checkout-wrap { max-width: 900px; margin: 0 auto; padding: 44px 20px 64px; display: flex; flex-direction: column; gap: 22px; }
.checkout-wrap h1 { font-size: 36px; }
.order-success {
  border: 1px solid var(--border-5); background: var(--green-tint); border-radius: var(--radius-lg); padding: 40px;
  display: flex; flex-direction: column; gap: 12px;
}
.order-success h2 { font-size: 26px; color: var(--green); }
.order-success p { font-size: 16.5px; line-height: 1.65; color: #435964; }
.checkout-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 28px; align-items: start; }
.order-review { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; display: flex; flex-direction: column; gap: 10px; }
.order-review strong.title { font-family: Nunito; font-size: 17px; color: var(--navy); }
.order-review-row { display: flex; justify-content: space-between; gap: 10px; font-size: 14.5px; color: var(--body-3); }

/* ---------- Contact ---------- */
.contact-grid { max-width: 1000px; margin: 0 auto; padding: 44px 20px 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-copy { display: flex; flex-direction: column; gap: 16px; }
.contact-copy h1 { font-size: 38px; }
.contact-copy > p { font-size: 16.5px; line-height: 1.7; color: #435964; }
.contact-info { display: flex; flex-direction: column; gap: 10px; font-size: 15.5px; color: #435964; line-height: 1.6; }
.contact-map {
  border: 1px solid var(--border); border-radius: 18px; height: 220px; display: grid; place-items: center;
  background: repeating-linear-gradient(135deg, #eef6f9 0 14px, #f8fcfd 14px 28px);
}
.contact-map span { font-family: ui-monospace, Menlo, monospace; font-size: 12.5px; color: #8ba1a9; }
.contact-form-box { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; display: flex; flex-direction: column; gap: 14px; }
.contact-form-box strong.title { font-family: Nunito; font-size: 19px; color: var(--navy); }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 840px; margin: 0 auto; padding: 44px 20px 64px; display: flex; flex-direction: column; gap: 20px; }
.faq-wrap h1 { font-size: 38px; }
.faq-item { border: 1px solid var(--border); border-radius: 16px; padding: 22px; display: flex; flex-direction: column; gap: 8px; }
.faq-item strong { font-family: Nunito; font-size: 17.5px; color: var(--navy); }
.faq-item p { font-size: 15.5px; line-height: 1.7; color: var(--body-2); }

/* ---------- Legal pages ---------- */
.legal-wrap { max-width: 840px; margin: 0 auto; padding: 44px 20px 64px; display: flex; flex-direction: column; gap: 16px; }
.legal-wrap h1 { font-size: 38px; }
.legal-wrap h2 { font-size: 24px; padding-top: 8px; }
.legal-wrap p { font-size: 16.5px; line-height: 1.75; color: #435964; }
.legal-date { font-size: 15px; color: var(--muted); }
.cookie-table { border: 1px solid var(--border); border-radius: 18px; overflow: hidden; }
.cookie-row { display: grid; grid-template-columns: 180px 1fr 110px; gap: 14px; padding: 16px 18px; border-top: 1px solid var(--border-3); font-size: 14.5px; color: var(--body-3); }
.cookie-row:first-child { border-top: none; }
.cookie-row strong { font-family: Nunito; color: var(--navy); }

/* ---------- Footer ---------- */
.site-footer { background: var(--footer-bg); color: #cddfe6; margin-top: 20px; }
.footer-grid { max-width: 1180px; margin: 0 auto; padding: 52px 20px 28px; display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 34px; }
.footer-col { display: flex; flex-direction: column; gap: 9px; }
.footer-col.brand-col { gap: 12px; }
.footer-col.brand-col strong { font-family: Nunito; font-size: 19px; color: #fff; }
.footer-col.brand-col p { font-size: 14.5px; line-height: 1.65; color: #a8c3ce; }
.footer-col.brand-col span { font-size: 14px; color: #a8c3ce; }
.footer-col strong.head { font-family: Nunito; font-size: 15px; color: #fff; }
.footer-col a { font-size: 14.5px; color: #a8c3ce; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #1c4557; }
.footer-bottom-inner {
  max-width: 1180px; margin: 0 auto; padding: 18px 20px; display: flex; justify-content: space-between;
  gap: 18px; flex-wrap: wrap; font-size: 13.5px; color: #8fb0bd;
}
.footer-bottom-inner .right { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.link-btn { cursor: pointer; border: none; background: none; color: #8fb0bd; font-size: 13.5px; text-decoration: underline; font-family: inherit; }
.link-btn:hover { color: #fff; }

/* ---------- Cookie consent bar ---------- */
.cookie-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; background: #ffffff;
  border-top: 1px solid #dbe9ee; box-shadow: 0 -8px 30px rgba(16,48,63,0.12); animation: cpFade 0.25s ease both;
}
.cookie-bar-inner { max-width: 1180px; margin: 0 auto; padding: 18px 20px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookie-bar-inner p { flex: 1; min-width: 280px; font-size: 14.5px; line-height: 1.6; color: #435964; }
.cookie-bar-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-outline-pill { cursor: pointer; padding: 12px 20px; border-radius: 999px; border: 1.5px solid var(--border-4); background: #fff; color: var(--ink-2); font-weight: 700; font-size: 14.5px; }
.btn-outline-pill:hover { background: var(--teal-tint); }
.btn-solid-pill { cursor: pointer; padding: 12px 22px; border-radius: 999px; border: none; background: var(--green); color: #fff; font-weight: 700; font-size: 14.5px; }
.btn-solid-pill:hover { background: var(--green-dark); }

/* ---------- 404 ---------- */
.error-wrap { max-width: 640px; margin: 0 auto; padding: 100px 20px; text-align: center; display: flex; flex-direction: column; gap: 16px; align-items: center; }
.error-wrap .code { font-family: Nunito; font-weight: 800; font-size: 88px; color: var(--teal-tint-2); }
.error-wrap h1 { font-size: 30px; }
.error-wrap p { font-size: 16.5px; color: var(--body-2); line-height: 1.6; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .calc-grid, .product-detail, .cart-layout, .checkout-grid, .contact-grid, .care-grid, .newsletter-box { grid-template-columns: 1fr; }
  .feature-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .article-grid, .team-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .vaccine-grid { grid-template-columns: 1fr 1fr; }
  .hero-copy h1 { font-size: 40px; }
}

@media (max-width: 720px) {
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border-2); flex-direction: column; align-items: stretch; padding: 10px 20px 18px; gap: 2px; box-shadow: 0 12px 24px rgba(16,48,63,0.08); }
  .main-nav.is-open { display: flex; }
  .nav-link { padding: 12px 10px; }
  .nav-cart { margin-left: 0; justify-content: center; }
  .nav-toggle { display: inline-flex; }
  .header-inner { position: relative; }
  .feature-grid, .product-grid, .article-grid, .team-grid, .testimonials-grid, .footer-grid, .vaccine-grid { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: 32px; }
  .page-head h1 { font-size: 30px; }
  .section-head h2 { font-size: 26px; }
  .field-row { grid-template-columns: 1fr; }
  .cookie-row, .care-row { grid-template-columns: 1fr; }
  .spec-row { grid-template-columns: 1fr; }
}
