/* Pet Suppliers ZA market landing pages */
:root {
  --ink: #14213d;
  --body: #334155;
  --muted: #64748b;
  --line: #dbe3df;
  --paper: #ffffff;
  --mist: #f3f8f5;
  --leaf: #14785f;
  --leaf-dark: #0b5141;
  --leaf-soft: #dff3ec;
  --gold: #d99a2b;
  --coral: #d85f45;
  --sky: #2e7fb8;
  --shadow-sm: 0 1px 5px rgba(15, 40, 35, .07);
  --shadow-md: 0 14px 34px rgba(15, 40, 35, .12);
  --shadow-lg: 0 26px 70px rgba(15, 40, 35, .17);
  --radius: 8px;
  --container: 1180px;
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--body);
  background: var(--paper);
  line-height: 1.62;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; }
button { border: 0; cursor: pointer; }
.container { width: min(100% - 40px, var(--container)); margin: 0 auto; }
h1, h2, h3 { color: var(--ink); font-family: Outfit, Inter, sans-serif; line-height: 1.12; letter-spacing: 0; }
h1 { font-size: clamp(38px, 5.4vw, 70px); font-weight: 820; }
h2 { font-size: clamp(27px, 3.1vw, 42px); font-weight: 780; }
h3 { font-size: 20px; font-weight: 740; }
p { color: var(--body); }

.topline {
  background: var(--ink);
  color: rgba(255, 255, 255, .86);
  font-size: 13px;
}
.topline-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.topline strong { color: #fff; }
.topline a { color: #fff; font-weight: 750; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(255, 255, 255, .95);
  border-bottom: 1px solid rgba(219, 227, 223, .9);
  backdrop-filter: blur(14px);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand img {
  width: 52px;
  height: 52px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
}
.brand-text { display: grid; line-height: 1.08; }
.brand-text strong { color: var(--leaf-dark); font-size: 21px; font-family: Outfit, Inter, sans-serif; }
.brand-text span { color: var(--muted); font-size: 12px; font-weight: 700; }
.main-nav { display: flex; align-items: center; gap: 3px; }
.main-nav a {
  padding: 9px 11px;
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}
.main-nav a:hover { color: var(--leaf); background: var(--mist); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--mist);
  color: var(--leaf-dark);
  align-items: center;
  justify-content: center;
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  position: relative;
  border-radius: 999px;
  background: currentColor;
}
.menu-toggle span::before, .menu-toggle span::after { content: ""; position: absolute; left: 0; }
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn-primary { color: #fff; background: var(--leaf); border: 2px solid var(--leaf); box-shadow: 0 12px 26px rgba(20, 120, 95, .22); }
.btn-primary:hover { background: var(--leaf-dark); border-color: var(--leaf-dark); transform: translateY(-2px); }
.btn-gold { color: #1f2937; background: #f4c15e; border: 2px solid #f4c15e; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { color: var(--leaf-dark); background: #fff; border: 1.5px solid rgba(20, 120, 95, .26); }
.btn-outline:hover { border-color: var(--leaf); box-shadow: var(--shadow-md); transform: translateY(-2px); }

.hero {
  position: relative;
  padding: 68px 0 78px;
  background:
    linear-gradient(110deg, rgba(243, 248, 245, .98), rgba(243, 248, 245, .92) 52%, rgba(223, 243, 236, .78)),
    radial-gradient(circle at 82% 18%, rgba(244, 193, 94, .24), transparent 28%),
    radial-gradient(circle at 15% 78%, rgba(46, 127, 184, .12), transparent 30%);
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, .78fr);
  gap: 48px;
  align-items: center;
}
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; color: var(--muted); font-size: 13px; font-weight: 700; }
.breadcrumbs a { color: var(--leaf); }
.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: var(--radius);
  color: var(--leaf-dark);
  background: rgba(223, 243, 236, .92);
  border: 1px solid rgba(20, 120, 95, .2);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.hero h1 span { color: var(--leaf); }
.hero-lead { max-width: 700px; margin: 22px 0 24px; color: #39485c; font-size: clamp(17px, 1.8vw, 20px); }
.source-note {
  max-width: 700px;
  margin: 0 0 28px;
  padding: 13px 15px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-panel {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.hero-panel figure { aspect-ratio: 4 / 3; overflow: hidden; background: var(--leaf-soft); }
.hero-panel figure img { width: 100%; height: 100%; object-fit: cover; }
.hero-gallery-panel { padding: 14px; }
.hero-gallery {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: repeat(2, minmax(130px, 1fr));
  gap: 12px;
}
.hero-gallery figure {
  position: relative;
  aspect-ratio: auto;
  min-height: 150px;
  border-radius: var(--radius);
}
.hero-gallery figure.featured {
  grid-row: span 2;
  min-height: 316px;
}
.hero-gallery figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 7px 9px;
  border-radius: var(--radius);
  background: rgba(17, 24, 39, .76);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.panel-body { padding: 24px; }
.panel-body h2 { margin-bottom: 14px; font-size: 24px; }
.hero-gallery-panel .panel-body { padding: 20px 4px 4px; }
.hero-gallery-panel .panel-body p { color: var(--muted); font-size: 14.5px; }
.panel-list { display: grid; gap: 10px; }
.panel-list li { display: grid; grid-template-columns: 24px 1fr; gap: 10px; color: var(--body); font-size: 15px; }
.panel-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: .55em;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(217, 154, 43, .16);
}
.market-strip {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow-sm);
}
.market-strip div { padding: 18px 20px; border-right: 1px solid var(--line); }
.market-strip div:last-child { border-right: 0; }
.market-strip strong { display: block; color: var(--ink); font-size: 22px; font-family: Outfit, Inter, sans-serif; }
.market-strip span { color: var(--muted); font-size: 13px; font-weight: 700; }

.section-pad { padding: 78px 0; }
.section-soft { background: var(--mist); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 830px; margin: 0 auto 38px; text-align: center; }
.section-head p { margin-top: 13px; color: var(--muted); font-size: 17px; }
.kicker { display: inline-block; margin-bottom: 11px; color: var(--coral); font-size: 13px; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; }

.buyer-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.buyer-card {
  min-height: 188px;
  padding: 23px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.buyer-card .num { color: var(--gold); font-size: 14px; font-weight: 900; }
.buyer-card h3 { margin: 16px 0 10px; }
.buyer-card p { color: var(--muted); font-size: 14.5px; }

.product-layout {
  display: grid;
  grid-template-columns: minmax(230px, .32fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.product-aside {
  position: sticky;
  top: 104px;
  padding: 24px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
}
.product-aside h2, .product-aside p { color: #fff; }
.product-aside p { margin-top: 12px; opacity: .78; }
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.product-card {
  display: grid;
  grid-template-columns: 154px minmax(0, 1fr);
  min-height: 188px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(20, 120, 95, .35); }
.product-image { background: var(--leaf-soft); overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.product-card:hover img { transform: scale(1.04); }
.product-body { padding: 18px; display: flex; flex-direction: column; gap: 10px; }
.product-body h3 a:hover { color: var(--leaf); }
.product-body p { color: var(--muted); font-size: 14.3px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; }
.tag-row span { padding: 5px 8px; border-radius: 999px; background: var(--mist); color: var(--leaf-dark); font-size: 12px; font-weight: 800; }

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: start;
}
.copy-block p { margin-top: 14px; color: var(--muted); }
.copy-list { display: grid; gap: 12px; }
.copy-list li {
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  color: var(--muted);
}
.copy-list strong { color: var(--ink); }
.route-list { display: grid; gap: 12px; counter-reset: route; }
.route-list li {
  counter-increment: route;
  position: relative;
  padding: 18px 18px 18px 58px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.route-list li::before {
  content: counter(route);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--leaf);
  color: #fff;
  font-weight: 900;
}

.city-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 17px; }
.city-card {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.city-card h3 { margin-bottom: 8px; }
.city-card p { color: var(--muted); font-size: 14.5px; }
.city-card a { display: inline-flex; margin-top: 13px; color: var(--leaf); font-weight: 850; }
.city-card a:hover { color: var(--leaf-dark); }

.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px; }
.faq-item {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.faq-item h3 { margin-bottom: 8px; font-size: 18px; }
.faq-item p { color: var(--muted); font-size: 14.5px; }

.cta-band { padding: 58px 0; background: linear-gradient(135deg, var(--leaf-dark), var(--ink)); color: #fff; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.cta-inner h2, .cta-inner p { color: #fff; }
.cta-inner p { margin-top: 10px; max-width: 760px; opacity: .8; }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: start;
}
.contact-copy p { margin-top: 14px; color: var(--muted); }
.contact-list { display: grid; gap: 13px; margin-top: 22px; }
.contact-list li { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start; }
.contact-list svg { width: 34px; height: 34px; padding: 7px; color: var(--leaf); background: var(--leaf-soft); border-radius: 50%; }
.form-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 7px; color: var(--ink); font-size: 13px; font-weight: 850; }
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  outline: none;
}
.field textarea { min-height: 134px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--leaf); box-shadow: 0 0 0 3px rgba(20, 120, 95, .14); }
.error { display: none; margin-top: 6px; color: #b42318; font-size: 12px; font-weight: 700; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: #d92d20; }
.field.invalid .error { display: block; }
.form-actions { display: flex; align-items: center; gap: 14px; margin-top: 18px; }
.form-note { color: var(--muted); font-size: 13px; }
.form-status { margin-top: 14px; min-height: 22px; color: var(--leaf-dark); font-weight: 800; }
.form-status.error { color: #b42318; }
.hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(20, 33, 61, .54);
}
.modal.open { display: grid; }
.modal-box {
  width: min(100%, 420px);
  padding: 28px;
  text-align: center;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.modal-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--leaf-soft);
  color: var(--leaf);
}
.modal-icon svg { width: 30px; height: 30px; }
.modal-box p { margin: 10px 0 18px; color: var(--muted); }

.site-footer { padding: 48px 0 24px; background: #111827; color: rgba(255, 255, 255, .82); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .8fr .8fr .8fr; gap: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(255, 255, 255, .14); }
.footer-brand { display: flex; align-items: center; gap: 11px; margin-bottom: 13px; }
.footer-brand img { width: 42px; height: 42px; padding: 4px; border-radius: 50%; background: #fff; }
.footer-brand strong, .footer-col h3 { color: #fff; }
.footer-col h3 { margin-bottom: 13px; font-size: 17px; }
.footer-col p, .footer-col a { color: rgba(255, 255, 255, .72); font-size: 14px; }
.footer-col a:hover { color: #fff; }
.footer-links { display: grid; gap: 9px; }
.social-icons { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 15px; }
.social-icons a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-weight: 850;
  font-size: 12px;
}
.footer-bottom { padding-top: 21px; }
.footer-bottom p { color: rgba(255, 255, 255, .65); font-size: 13px; }

@media (max-width: 1080px) {
  .main-nav a { padding: 9px 8px; font-size: 13.5px; }
  .buyer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-card { grid-template-columns: 130px minmax(0, 1fr); }
}

@media (max-width: 920px) {
  .topline-inner, .hero-grid, .split, .product-layout, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid, .split, .contact-grid { display: grid; }
  .product-aside { position: static; }
  .market-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .market-strip div:nth-child(2) { border-right: 0; }
  .market-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .city-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--container)); }
  .topline { display: none; }
  .site-header, .header-inner { height: 68px; }
  .brand img { width: 46px; height: 46px; padding: 3px; }
  .brand-text span { display: none; }
  .menu-toggle { display: inline-flex; }
  .main-nav {
    position: absolute;
    top: 68px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
  }
  body.menu-open .main-nav { display: flex; }
  .main-nav a { padding: 13px 14px; font-size: 14px; }
  .hero { padding: 48px 0 58px; }
  .hero-actions .btn, .cta-inner .btn, .form-actions .btn { width: 100%; }
  .market-strip, .buyer-grid, .product-grid, .city-grid, .faq-grid, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .market-strip div { border-right: 0; border-bottom: 1px solid var(--line); }
  .market-strip div:last-child { border-bottom: 0; }
  .product-card { grid-template-columns: 1fr; }
  .product-image { aspect-ratio: 4 / 3; }
  .section-pad { padding: 62px 0; }
  .form-actions { align-items: stretch; flex-direction: column; }
}
