
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:   #1f6a43;
  --green2:  #123d2b;
  --green3:  #dff1e6;
  --amber:   #e49a2f;
  --amber2:  #c67d00;
  --bg:      #f6f1e8;
  --bg-soft: #fcfaf6;
  --white:   #ffffff;
  --text:    #1f2933;
  --muted:   #66727f;
  --border:  #dfd6c8;
  --radius:  8px;
  --radius-lg: 24px;
  --shadow:  0 14px 38px rgba(18, 61, 43, .08);
}

body { font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
       background: var(--bg-soft); color: var(--text); line-height: 1.6; }

h1, h2, h3, h4 { font-family: Georgia, "Times New Roman", serif; letter-spacing: -.02em; }

a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green2); text-decoration: underline; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* ── TOP BAR ── */
.top-bar { background: var(--green2); color: #fff; font-size: .82rem; padding: 8px 0; }
.top-bar .container { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.top-bar a { color: #fff; opacity: .9; }
.top-bar a:hover { opacity: 1; text-decoration: none; }
.top-bar .spacer { margin-left: auto; }

/* ── HEADER ── */
header { background: rgba(255,255,255,.94); backdrop-filter: blur(10px); box-shadow: 0 8px 28px rgba(18, 61, 43, .08); position: sticky; top:0; z-index:100; }
.header-inner { display: flex; align-items: center; gap: 24px; padding: 16px 20px; max-width:1140px; margin:0 auto; }
.logo { font-size: 1.7rem; font-weight: 800; color: var(--green); letter-spacing: -.04em; white-space: nowrap; }
.logo span { color: var(--amber); }
nav { display: flex; gap: 6px; flex-wrap: wrap; margin-left: auto; }
nav a { padding: 9px 15px; border-radius: 999px; font-size: .9rem; font-weight: 600; color: var(--text); transition: background .15s, color .15s; }
nav a:hover, nav a.active { background: var(--green3); color: var(--green2); text-decoration: none; }
.btn-call { background: var(--amber) !important; color: var(--white) !important; font-weight:700 !important; }
.btn-call:hover { background: var(--amber2) !important; }

/* ── BREADCRUMBS ── */
.breadcrumbs { background: var(--white); border-bottom: 1px solid var(--border); padding: 10px 0; font-size: .83rem; color: var(--muted); }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--green); }
.breadcrumbs span { color: var(--text); font-weight: 500; }

/* ── HERO (home) ── */
.hero { background: linear-gradient(135deg, var(--green) 0%, #2d9b59 100%); color: #fff; padding: 70px 0 60px; text-align:center; }
.hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.hero p { font-size: 1.1rem; opacity: .92; max-width: 600px; margin: 0 auto 28px; }
.hero .cta-group { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
.btn { display:inline-flex; align-items:center; gap:8px; padding:13px 26px; border-radius:999px; font-weight:700; font-size:.95rem; cursor:pointer; transition: transform .1s, box-shadow .1s; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,0,0,.18); text-decoration:none; }
.btn-primary { background: var(--amber); color: var(--white); }
.btn-primary:hover { background: var(--amber2); color: var(--white); }
.btn-secondary { background: rgba(255,255,255,.15); color: #fff; border: 2px solid rgba(255,255,255,.5); }
.btn-secondary:hover { background: rgba(255,255,255,.25); color: #fff; }
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green2); color: #fff; }
.btn-wa { background: #25d366; color: var(--white); }
.btn-wa:hover { background: #1da851; color: #fff; }

/* ── SECTIONS ── */
.section { padding: 52px 0; }
.section-title { font-size: clamp(2rem, 3vw, 3rem); font-weight: 800; margin-bottom: 20px; color: var(--text); line-height: 1.1; }
.section-title span { color: var(--green); }

/* ── CATEGORY GRID ── */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 16px; }
.cat-card { background: var(--white); border-radius: var(--radius); padding: 24px 20px; text-align:center; box-shadow: var(--shadow); transition: transform .15s, box-shadow .15s; border: 1px solid var(--border); }
.cat-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.12); text-decoration:none; }
.cat-card .emoji { font-size: 2.4rem; margin-bottom: 10px; display:block; }
.cat-card h3 { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.cat-card p  { font-size: .8rem; color: var(--muted); }

/* ── PRODUCT GRID ── */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.product-card { background: var(--white); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); border: 1px solid var(--border); display:flex; flex-direction:column; gap:8px; transition: transform .15s; }
.product-card:hover { transform: translateY(-2px); }
.product-card .cat-badge { font-size: .72rem; text-transform: uppercase; letter-spacing: .5px; color: var(--green); font-weight: 600; }
.product-card h3 { font-size: .95rem; font-weight: 700; color: var(--text); }
.product-card .price-range { font-size: .82rem; color: var(--muted); }
.product-card a.card-link { color: var(--green); font-size:.85rem; font-weight:600; margin-top:auto; }

/* ── PRODUCT PAGE ── */
.product-page { padding: 40px 0 60px; }
.product-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; }
@media (max-width: 860px) { .product-layout { grid-template-columns: 1fr; } }
.product-main h1 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; margin-bottom: 12px; line-height: 1.3; }
.meta-row { display:flex; flex-wrap:wrap; gap:8px; margin-bottom: 20px; }
.badge { background: var(--bg); border: 1px solid var(--border); border-radius: 20px; padding: 4px 12px; font-size: .78rem; color: var(--muted); font-weight:500; }
.badge.green { background: #e8f5ee; border-color: #a8d8bc; color: var(--green2); }
.product-desc { font-size: 1rem; color: var(--text); line-height: 1.7; margin-bottom: 24px; }
.detail-block { margin-bottom: 20px; }
.detail-block h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); font-weight:600; margin-bottom:6px; }
.detail-block p { font-size: .93rem; }
.keywords-box { background: #f0faf5; border-left: 4px solid var(--green); padding: 12px 16px; border-radius: 0 var(--radius) var(--radius) 0; margin-bottom: 24px; }
.keywords-box p { font-size:.84rem; color: var(--muted); margin-bottom:4px; }
.keywords-box strong { color: var(--text); }

/* ── PRODUCT IMAGE ── */
.product-img-wrap { margin-bottom: 24px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: #f0faf5; }
.product-img-wrap img { width: 100%; height: auto; display: block; }

/* ── CONTACT SIDEBAR ── */
.contact-card { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); border: 1px solid var(--border); position: sticky; top: 90px; }
.contact-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 16px; color: var(--text); }
.contact-card .btn { width:100%; justify-content:center; margin-bottom:10px; font-size:.9rem; }
.store-info-box { margin-top:20px; font-size: .84rem; color: var(--muted); line-height: 1.8; }
.store-info-box strong { color: var(--text); display:block; margin-bottom:2px; }

/* ── INFO STRIP ── */
.info-strip { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 24px 0; }
.info-strip .container { display:grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap:20px; }
.info-item { display:flex; align-items:flex-start; gap:12px; }
.info-item .icon { font-size: 1.6rem; flex-shrink:0; }
.info-item h4 { font-size:.88rem; font-weight:700; margin-bottom:2px; }
.info-item p { font-size:.8rem; color: var(--muted); }

/* ── MAP SECTION ── */
.map-section { padding: 48px 0; }
.map-section iframe { width:100%; height:380px; border:none; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ── FOOTER ── */
footer { background: var(--green2); color: rgba(255,255,255,.85); padding: 44px 0 24px; }
.footer-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap:32px; margin-bottom:32px; }
footer h4 { color: #fff; font-size:.9rem; font-weight:700; margin-bottom:14px; text-transform:uppercase; letter-spacing:.5px; }
footer ul { list-style:none; }
footer ul li { margin-bottom:7px; }
footer ul li a { color:rgba(255,255,255,.75); font-size:.85rem; }
footer ul li a:hover { color:#fff; text-decoration:none; }
.footer-copy { border-top: 1px solid rgba(255,255,255,.15); padding-top:20px; text-align:center; font-size:.78rem; opacity:.65; }

/* ── RELATED ── */
.related-section { background: var(--white); padding: 40px 0; border-top: 1px solid var(--border); }

/* ── FAMILY PAGE ── */
.family-hero { background: linear-gradient(135deg, var(--green) 0%, #2d9b59 100%); color:#fff; padding:44px 0 36px; margin-bottom:36px; }
.family-hero h1 { font-size:clamp(1.6rem,3vw,2.2rem); font-weight:800; margin-bottom:8px; }
.family-hero p { opacity:.9; max-width:560px; }

/* ── NEARBY STRIP ── */
.nearby-strip { padding: 28px 0; background: var(--white); border-top: 1px solid var(--border); }
.nearby-strip .label { font-size: .78rem; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .6px; text-align: center; margin-bottom: 12px; }
.nearby-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.nearby-chip { background: var(--bg); border: 1px solid var(--border); border-radius: 20px; padding: 5px 14px; font-size: .8rem; color: var(--muted); }

/* ── WHY CARDS ── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 20px; }
.why-card { background: var(--white); border-radius: var(--radius); padding: 28px 20px; text-align: center; border: 1px solid var(--border); box-shadow: var(--shadow); }
.why-card .why-icon { font-size: 2.4rem; margin-bottom: 12px; display: block; }
.why-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 6px; color: var(--text); }
.why-card p { font-size: .84rem; color: var(--muted); line-height: 1.6; }

/* ── FAQ ── */
.faq-section { margin-top: 32px; border-top: 2px solid var(--green); padding-top: 20px; }
.faq-section > h2 { font-size: 1.05rem; font-weight: 800; margin-bottom: 16px; color: var(--green); text-transform: uppercase; letter-spacing: .4px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 14px 0; }
.faq-item h3 { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.faq-item p { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* ── LOCAL TEXT BLOCK ── */
.local-text-block { background: #f0faf5; border-left: 4px solid var(--green); padding: 28px 32px; border-radius: 0 var(--radius) var(--radius) 0; margin: 36px 0; }
.local-text-block h2 { font-size: 1.1rem; font-weight: 800; color: var(--green2); margin-bottom: 10px; }
.local-text-block p { font-size: .94rem; color: #444; line-height: 1.8; }

@media (max-width: 640px) {
  .header-inner { flex-wrap: wrap; }
  nav { width:100%; }
  .top-bar .container { flex-direction: column; align-items: flex-start; gap:4px; }
  .local-text-block { padding: 20px 18px; }
}

/* Home refresh */
.home-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(228, 154, 47, .22), transparent 32%),
    linear-gradient(135deg, #f8f4ea 0%, #eef7f1 48%, #f8f1e7 100%);
  padding: 68px 0 56px;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(246, 241, 232, 0), rgba(246, 241, 232, 1));
  pointer-events: none;
}

.home-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
}

.hero-kicker,
.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section-kicker-light { color: #cfe8d8; }

.home-hero-copy h1 {
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  margin-bottom: 16px;
}

.home-hero-copy h1 span { color: var(--green); }

.hero-lead {
  font-size: 1.1rem;
  max-width: 590px;
  color: #43505b;
  margin-bottom: 28px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-notes {
  list-style: none;
  display: grid;
  gap: 10px;
  color: #53616d;
  font-size: .95rem;
}

.hero-notes li::before {
  content: "•";
  color: var(--amber);
  font-weight: 900;
  margin-right: 10px;
}

.home-hero-visual {
  position: relative;
  display: grid;
  gap: 18px;
}

.hero-main-photo img,
.story-visual img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 26px 48px rgba(18, 61, 43, .16);
}

.hero-main-photo img {
  min-height: 460px;
  max-height: 560px;
}

.hero-floating-card {
  position: absolute;
  left: -26px;
  bottom: 128px;
  max-width: 260px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(223, 214, 200, .8);
  border-radius: 22px;
  padding: 18px 18px 16px;
  box-shadow: var(--shadow);
}

.hero-floating-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green2);
  font-size: 1rem;
}

.hero-floating-card span {
  display: block;
  color: #5f6c77;
  font-size: .88rem;
  line-height: 1.6;
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.hero-mini-card,
.highlight-card,
.benefit-card,
.testimonial-card {
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(223, 214, 200, .85);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.hero-mini-card {
  padding: 18px;
}

.mini-number {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--green2);
}

.hero-mini-card p {
  font-size: .9rem;
  color: #5b6874;
}

.home-highlights {
  margin-top: -18px;
  padding-bottom: 8px;
}

.highlight-grid,
.benefit-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.highlight-card,
.benefit-card,
.testimonial-card {
  padding: 24px;
}

.highlight-card h2,
.benefit-card h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  color: var(--green2);
}

.highlight-card p,
.benefit-card p,
.testimonial-card p {
  color: #5f6c77;
  line-height: 1.75;
}

.home-section-soft {
  background: linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.56));
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading.center {
  text-align: center;
}

.section-intro {
  max-width: 720px;
  color: #5c6974;
  line-height: 1.8;
}

.pet-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pet-card {
  display: block;
  overflow: hidden;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(223, 214, 200, .9);
  transition: transform .18s ease, box-shadow .18s ease;
}

.pet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(18, 61, 43, .14);
  text-decoration: none;
}

.pet-card img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  display: block;
}

.pet-card-body {
  padding: 20px 20px 22px;
}

.pet-card-body h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: var(--green2);
}

.pet-card-body p {
  color: #5f6c77;
  line-height: 1.75;
  margin-bottom: 12px;
}

.pet-card-body span {
  color: var(--green);
  font-weight: 700;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 34px;
  align-items: center;
}

.story-copy p {
  color: #596774;
  line-height: 1.85;
  margin-bottom: 16px;
}

.story-points {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.story-points div {
  background: rgba(223, 241, 230, .55);
  border: 1px solid rgba(31, 106, 67, .08);
  border-radius: 18px;
  padding: 16px 18px;
}

.story-points strong {
  display: block;
  margin-bottom: 4px;
  color: var(--green2);
}

.story-points span {
  color: #596774;
  font-size: .95rem;
}

.home-band {
  background: linear-gradient(135deg, #103927 0%, #1b5b3c 100%);
  color: #fff;
  padding: 42px 0;
}

.home-band-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 26px;
  align-items: center;
}

.home-band h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.15;
}

.band-list {
  list-style: none;
  display: grid;
  gap: 14px;
}

.band-list li {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.88);
}

.band-list li::before {
  content: "✓";
  color: #f0d495;
  font-weight: 800;
  margin-right: 10px;
}

.testimonial-card strong {
  display: inline-block;
  margin-top: 16px;
  color: var(--green2);
}

.faq-shell {
  background: #fff;
}

.faq-wrap {
  max-width: 860px;
}

.faq-list {
  background: rgba(246, 241, 232, .55);
  border: 1px solid rgba(223, 214, 200, .9);
  border-radius: 24px;
  padding: 12px 22px;
}

.faq-item {
  padding: 14px 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  color: var(--green2);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 10px;
  color: #5f6c77;
  line-height: 1.75;
}

.map-shell iframe {
  box-shadow: var(--shadow);
}

.catalog-hero {
  background:
    radial-gradient(circle at top left, rgba(31, 106, 67, .10), transparent 28%),
    linear-gradient(135deg, #fbf7ef 0%, #eff7f2 100%);
  padding: 56px 0 48px;
}

.catalog-hero-store {
  background:
    radial-gradient(circle at top left, rgba(228, 154, 47, .18), transparent 28%),
    linear-gradient(135deg, #f9f4ea 0%, #eef8f2 100%);
}

.catalog-hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 34px;
  align-items: center;
}

.catalog-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.catalog-hero-copy h1 {
  font-size: clamp(2.2rem, 4vw, 3.9rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.catalog-hero-copy h1 span { color: var(--green); }

.catalog-hero-copy p {
  color: #55626f;
  line-height: 1.8;
  margin-bottom: 22px;
}

.catalog-hero-media {
  position: relative;
}

.catalog-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  max-height: 520px;
  object-fit: cover;
  display: block;
  border-radius: 30px;
  box-shadow: 0 20px 42px rgba(18, 61, 43, .12);
}

.catalog-hero-card {
  position: absolute;
  right: -12px;
  bottom: 18px;
  width: min(300px, 88%);
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(223,214,200,.92);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.catalog-hero-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green2);
}

.catalog-hero-card span,
.catalog-stat-card span {
  color: #5f6c77;
  line-height: 1.6;
  font-size: .92rem;
}

.catalog-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.catalog-light-btn {
  background: transparent;
  color: var(--green);
  border: 1.5px solid rgba(31, 106, 67, .24);
}

.catalog-light-btn:hover {
  background: #fff;
  color: var(--green2);
}

.catalog-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.catalog-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(223, 241, 230, .8);
  color: var(--green2);
  font-size: .86rem;
  font-weight: 700;
}

.catalog-breadcrumbs {
  background: rgba(255,255,255,.86);
  border-top: 1px solid rgba(223,214,200,.7);
  border-bottom: 1px solid rgba(223,214,200,.7);
  padding: 14px 0;
}

.catalog-breadcrumbs .container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #66727f;
  font-size: .9rem;
}

.catalog-breadcrumbs strong {
  color: var(--green2);
}

.catalog-intro-grid,
.catalog-note-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: center;
}

.catalog-stat-card {
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(223,214,200,.92);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 28px;
  text-align: center;
}

.catalog-stat-card strong {
  display: block;
  color: var(--green2);
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 1;
  margin-bottom: 10px;
}

.catalog-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.catalog-category-card {
  display: block;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(223,214,200,.92);
  border-radius: 28px;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}

.catalog-category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(18, 61, 43, .14);
  text-decoration: none;
}

.catalog-category-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.catalog-category-card img[src$=".svg"],
.catalog-hero-media img[src$=".svg"],
.catalog-family-link img[src$=".svg"] {
  object-fit: contain;
  background: linear-gradient(180deg, #f8faf6, #f3f7f1);
  padding: 12px;
}

.catalog-category-card-body {
  padding: 20px;
}

.catalog-category-card-body h3 {
  font-size: 1.55rem;
  color: var(--green2);
  margin-bottom: 10px;
}

.catalog-category-card-body p {
  color: #5f6c77;
  line-height: 1.75;
  margin-bottom: 12px;
}

.catalog-category-card-body span {
  color: var(--green);
  font-weight: 700;
}

.catalog-family-switch-shell {
  padding-top: 10px;
}

.catalog-family-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.catalog-family-link {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(223,214,200,.92);
  border-radius: 22px;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}

.catalog-family-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(18, 61, 43, .12);
  text-decoration: none;
}

.catalog-family-link img {
  width: 86px;
  height: 86px;
  border-radius: 18px;
  object-fit: cover;
  display: block;
}

.catalog-family-link strong {
  display: block;
  color: var(--green2);
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.catalog-family-link span {
  color: #5f6c77;
  font-size: .9rem;
}

.catalog-callout {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, #123d2b 0%, #1d5d3f 100%);
  color: #fff;
  border-radius: 32px;
  padding: 34px;
}

.catalog-callout h2 {
  color: #fff;
  margin-bottom: 12px;
}

.catalog-callout p {
  color: rgba(255,255,255,.84);
  line-height: 1.8;
}

.catalog-cta-stack {
  display: grid;
  gap: 12px;
}

.catalog-cta-stack .btn {
  justify-content: center;
}

.product-grid {
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 18px;
}

.product-card {
  min-height: 180px;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 14px 38px rgba(18, 61, 43, .08);
}

.product-card h3 {
  font-size: 1.02rem;
  line-height: 1.45;
}

.product-card .cat-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(223, 241, 230, .7);
  color: var(--green2);
  letter-spacing: .02em;
}

.product-card a.card-link {
  margin-top: auto;
  font-weight: 700;
}

@media (max-width: 980px) {
  .home-hero-grid,
  .story-grid,
  .home-band-grid,
  .highlight-grid,
  .benefit-grid,
  .testimonial-grid,
  .pet-card-grid,
  .catalog-hero-grid,
  .catalog-intro-grid,
  .catalog-note-grid,
  .catalog-category-grid,
  .catalog-family-links,
  .catalog-callout {
    grid-template-columns: 1fr;
  }

  .hero-floating-card {
    position: static;
    max-width: none;
  }

  .catalog-hero-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .hero-main-photo img {
    min-height: 320px;
  }

  .hero-mini-grid {
    grid-template-columns: 1fr;
  }

  .catalog-hero-media img {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .home-hero {
    padding-top: 42px;
  }

  .home-hero-copy h1 {
    font-size: 2.4rem;
  }

  .pet-card img {
    height: 210px;
  }

  .faq-list {
    padding: 8px 16px;
  }

  .catalog-hero,
  .catalog-hero-store {
    padding-top: 38px;
  }

  .catalog-hero-copy h1 {
    font-size: 2.2rem;
  }

  .catalog-category-card img {
    height: 190px;
  }

  .catalog-family-link {
    grid-template-columns: 72px 1fr;
  }

  .catalog-family-link img {
    width: 72px;
    height: 72px;
  }

  .product-card {
    min-height: 0;
    padding: 18px;
  }

  .catalog-callout {
    padding: 24px;
    border-radius: 24px;
  }
}
