/* ============================================================
   Petdayz — Happy Pet Healthy Dayz
   Static site stylesheet
   ============================================================ */

/* ---------- Fonts (self-hosted, variable) ---------- */
@font-face {
  font-family: "Fredoka";
  src: url("../fonts/fredoka.woff2") format("woff2-variations");
  font-weight: 300 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Nunito";
  src: url("../fonts/nunito.woff2") format("woff2-variations");
  font-weight: 200 1000;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Nunito";
  src: url("../fonts/nunito-italic.woff2") format("woff2-variations");
  font-weight: 200 1000;
  font-display: swap;
  font-style: italic;
}

/* ---------- Tokens ---------- */
:root {
  --gold: #f9b81e;
  --gold-deep: #f0a808;
  --orange: #f4791f;
  --orange-deep: #e1640d;
  --ink: #2b2b33;
  --ink-soft: #54545f;
  --muted: #7d7d88;
  --paper: #fff8ee;
  --paper-2: #fdf1de;
  --card: #ffffff;
  --line: #f0e4d2;
  --wa: #25d366;
  --wa-deep: #1da851;

  --teal: #2fb6b6;
  --purple: #7b5cc7;
  --pink: #ef5d8a;
  --green: #6fb04a;

  --shadow-sm: 0 2px 8px rgba(106, 74, 12, 0.06);
  --shadow: 0 14px 34px -14px rgba(106, 74, 12, 0.18);
  --shadow-lg: 0 30px 60px -22px rgba(106, 74, 12, 0.28);

  --radius: 18px;
  --radius-lg: 30px;
  --radius-pill: 999px;

  --maxw: 1200px;
  --gut: clamp(18px, 4vw, 40px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: "Nunito", system-ui, sans-serif;
  font-weight: 500;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(244, 121, 31, 0.05) 1px, transparent 0);
  background-size: 26px 26px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
html { overflow-x: hidden; }
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4, .display {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
}

::selection { background: var(--gold); color: #3a2a00; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(56px, 9vw, 110px); position: relative; }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Fredoka", sans-serif; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.74rem; color: var(--orange-deep);
  background: #fff;
  padding: 7px 15px 7px 12px; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.eyebrow::before { content: "🐾"; font-size: 0.9em; line-height: 1; }
.h-sec { font-size: clamp(1.9rem, 4.4vw, 3.1rem); margin-top: 18px; }
.lead { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--ink-soft); max-width: 56ch; }
.center .lead { margin-inline: auto; }
.sec-head { margin-bottom: clamp(34px, 5vw, 56px); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--gold); --fg: #3a2900;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: "Fredoka", sans-serif; font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: var(--radius-pill);
  background: var(--bg); color: var(--fg);
  box-shadow: 0 10px 22px -10px color-mix(in srgb, var(--bg) 80%, #000);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s;
  will-change: transform; white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 28px -10px color-mix(in srgb, var(--bg) 75%, #000); }
.btn:active { transform: translateY(-1px); }
.btn--orange { --bg: var(--orange); --fg: #fff; }
.btn--wa { --bg: var(--wa); --fg: #fff; }
.btn--ghost {
  background: #fff; color: var(--ink);
  border: 1.6px solid var(--line); box-shadow: var(--shadow-sm);
}
.btn--ghost:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.btn--lg { padding: 17px 34px; font-size: 1.08rem; }
.btn--sm { padding: 10px 18px; font-size: 0.92rem; }
.btn .ic { width: 1.15em; height: 1.15em; }

/* ============================================================
   HEADER
   ============================================================ */
.topbar {
  background: var(--ink); color: #f4ead6;
  font-size: 0.86rem; font-weight: 600;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 42px; padding-block: 6px; }
.topbar a { display: inline-flex; align-items: center; gap: 7px; transition: color 0.2s; }
.topbar a:hover { color: var(--gold); }
.topbar .ic { width: 15px; height: 15px; opacity: 0.85; }
.topbar__left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar__right { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); }
.topbar__right .ic { color: var(--wa); opacity: 1; }
@media (max-width: 720px) {
  .topbar__left a:nth-child(2) { display: none; }
  .topbar__right span { display: none; }
}

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s, background 0.3s, border-color 0.3s;
}
.site-header.scrolled {
  background: color-mix(in srgb, var(--paper) 95%, transparent);
  box-shadow: var(--shadow-sm); border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 76px; }
.brand img { height: 40px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a {
  font-family: "Fredoka", sans-serif; font-weight: 500; font-size: 1.02rem;
  padding: 9px 16px; border-radius: var(--radius-pill); position: relative;
  transition: color 0.2s, background 0.2s;
}
.nav__links a:hover { color: var(--orange-deep); background: var(--paper-2); }
.nav__links a.active { color: var(--orange-deep); }
.nav__links a.active::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 3px;
  background: var(--gold); border-radius: 3px;
}
.nav__cta { display: flex; align-items: center; gap: 10px; }
.burger { display: none; width: 46px; height: 46px; border-radius: 14px; background: #fff; box-shadow: var(--shadow-sm); border: 1px solid var(--line); align-items: center; justify-content: center; }
.burger span, .burger span::before, .burger span::after {
  content: ""; display: block; width: 20px; height: 2.4px; background: var(--ink); border-radius: 3px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.burger span::before { transform: translateY(-6px); }
.burger span::after { transform: translateY(6px); position: relative; top: -2.4px; }
body.menu-open .burger span { background: transparent; }
body.menu-open .burger span::before { transform: rotate(45deg) translateY(0); }
body.menu-open .burger span::after { transform: rotate(-45deg) translateY(-2.4px); }

@media (max-width: 940px) {
  .nav__links, .nav__cta .btn { display: none; }
  .burger { display: inline-flex; }
  .nav__links {
    position: fixed; inset: 118px 14px auto 14px;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: #fff; padding: 14px; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg); border: 1px solid var(--line);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s;
  }
  body.menu-open .nav__links { display: flex; transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a { font-size: 1.15rem; padding: 13px 18px; }
  .nav__links a.active::after { display: none; }
  .nav__links a.active { background: var(--paper-2); }
  .nav__links .btn--wa { display: inline-flex; margin-top: 6px; justify-content: center; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: clamp(34px, 5vw, 60px); padding-bottom: clamp(50px, 7vw, 90px); }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(24px, 4vw, 60px);
  align-items: center;
}
.hero__title { font-size: clamp(2.3rem, 5.6vw, 4.05rem); }
.hero__title .hl { color: var(--orange); position: relative; white-space: nowrap; }
.hero__title .hl::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0.04em; height: 0.16em;
  background: var(--gold); opacity: 0.5; border-radius: 4px; z-index: -1;
}
.hero__copy { margin-top: 22px; font-size: clamp(1.04rem, 1.6vw, 1.22rem); color: var(--ink-soft); max-width: 50ch; }
.hero__cta { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__stats { margin-top: 38px; display: flex; gap: clamp(18px, 4vw, 40px); flex-wrap: wrap; }
.stat .n { font-family: "Fredoka", sans-serif; font-weight: 600; font-size: 1.7rem; color: var(--orange-deep); line-height: 1; }
.stat .l { font-size: 0.86rem; color: var(--muted); font-weight: 600; margin-top: 4px; }

.hero__media { position: relative; display: grid; place-items: center; }
.hero__blob {
  position: absolute; inset: 0; margin: auto; width: min(94%, 480px); aspect-ratio: 1;
  background: linear-gradient(150deg, var(--gold), var(--orange));
  border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
  filter: blur(2px); opacity: 0.95;
  animation: blobmorph 14s ease-in-out infinite;
}
.hero__blob::after {
  content: ""; position: absolute; inset: -16px; border-radius: inherit;
  border: 2px dashed rgba(255,255,255,0.55);
  animation: spin 38s linear infinite;
}
.hero__img { position: relative; z-index: 2; width: min(96%, 520px); filter: drop-shadow(0 26px 30px rgba(106,74,12,0.28)); }
.float-tag {
  position: absolute; z-index: 3; background: #fff; border-radius: 16px;
  box-shadow: var(--shadow); padding: 11px 15px; display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 0.9rem;
  animation: bob 5s ease-in-out infinite;
}
.float-tag .emo { font-size: 1.35rem; }
.float-tag--1 { top: 8%; left: -2%; }
.float-tag--2 { bottom: 12%; right: -3%; animation-delay: 1.4s; }
.float-tag small { display: block; color: var(--muted); font-weight: 600; font-size: 0.74rem; }

@keyframes blobmorph {
  0%,100% { border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%; }
  50% { border-radius: 58% 42% 44% 56% / 46% 56% 44% 54%; }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__copy { margin-inline: auto; }
  .hero__cta, .hero__stats { justify-content: center; }
  .hero__media { order: -1; margin-bottom: 8px; }
  .float-tag--1 { left: 2%; }
  .float-tag--2 { right: 2%; }
}

/* ============================================================
   FEATURE STRIP
   ============================================================ */
.features { position: relative; z-index: 3; margin-top: -10px; }
.features__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  background: var(--card); border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 34px); box-shadow: var(--shadow); border: 1px solid var(--line);
}
.feature { text-align: center; padding: 14px 10px; }
.feature .ico {
  width: 62px; height: 62px; margin: 0 auto 14px; border-radius: 20px;
  display: grid; place-items: center; font-size: 1.7rem;
  background: var(--paper-2); box-shadow: inset 0 0 0 1px var(--line);
}
.feature h3 { font-size: 1.06rem; margin-bottom: 4px; }
.feature p { font-size: 0.9rem; color: var(--muted); }
@media (max-width: 760px) { .features__grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   PRODUCTS
   ============================================================ */
.prod-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 24px);
}
@media (max-width: 1024px) { .prod-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 420px)  { .prod-grid { grid-template-columns: 1fr; } }

.card {
  background: var(--card); border-radius: var(--radius-lg);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card__media {
  position: relative; aspect-ratio: 1; background: var(--paper-2);
  display: grid; place-items: center; overflow: hidden;
}
.card__media img { width: 86%; transition: transform 0.45s var(--ease); }
.card:hover .card__media img { transform: scale(1.06) rotate(-1deg); }
.tag-row { display: flex; gap: 6px; position: absolute; top: 12px; left: 12px; flex-wrap: wrap; }
.tag {
  font-family: "Fredoka", sans-serif; font-weight: 500; font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  background: #fff; color: var(--ink-soft); padding: 4px 10px; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.wishlist {
  position: absolute; top: 12px; right: 12px; width: 38px; height: 38px; border-radius: 50%;
  background: #fff; box-shadow: var(--shadow-sm); display: grid; place-items: center;
  font-size: 1.05rem; transition: transform 0.2s, color 0.2s; color: var(--muted);
}
.wishlist:hover { transform: scale(1.12); color: var(--pink); }
.wishlist.on { color: var(--pink); }
.card__body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.card__name { font-size: 1.12rem; }
.card__cat { font-size: 0.82rem; color: var(--muted); font-weight: 600; }
.card__foot { margin-top: auto; padding-top: 14px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.price { font-family: "Fredoka", sans-serif; font-weight: 600; font-size: 1.3rem; color: var(--orange-deep); }
.price small { font-size: 0.7rem; color: var(--muted); font-weight: 600; vertical-align: 0.35em; margin-right: 1px; }
.card__order {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--wa); color: #fff; font-family: "Fredoka", sans-serif; font-weight: 500;
  font-size: 0.9rem; padding: 10px 15px; border-radius: var(--radius-pill);
  box-shadow: 0 8px 18px -9px var(--wa-deep); transition: transform 0.2s, box-shadow 0.2s;
}
.card__order:hover { transform: translateY(-2px); box-shadow: 0 12px 20px -9px var(--wa-deep); }
.card__order .ic { width: 1em; height: 1em; }

/* ============================================================
   CAMPAIGN TILES
   ============================================================ */
.camp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2vw, 22px); }
@media (max-width: 680px) { .camp-grid { grid-template-columns: 1fr; } }
.camp {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); aspect-ratio: 16 / 10; display: block; isolation: isolate;
}
.camp.square { aspect-ratio: 1; }
.camp img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.camp:hover img { transform: scale(1.05); }
.camp__veil {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55));
  display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(18px, 3vw, 28px); color: #fff;
}
.camp__veil .k { font-family: "Fredoka", sans-serif; font-weight: 500; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.9; }
.camp__veil h3 { color: #fff; font-size: clamp(1.2rem, 2.4vw, 1.7rem); margin-top: 2px; }
.camp__go { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; font-weight: 700; font-size: 0.92rem; }
.camp__go .ic { width: 1em; height: 1em; transition: transform 0.25s; }
.camp:hover .camp__go .ic { transform: translateX(4px); }

/* ============================================================
   ABOUT / SPLIT SECTIONS
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 66px); align-items: center; }
.split--rev .split__media { order: 2; }
@media (max-width: 820px) { .split, .split--rev { grid-template-columns: 1fr; } .split--rev .split__media { order: -1; } }
.split__media { position: relative; }
.media-frame {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 6px solid #fff; position: relative; z-index: 2;
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-deco { position: absolute; width: 130px; height: 130px; border-radius: 30px; z-index: 1; }
.media-deco--gold { background: var(--gold); top: -22px; left: -22px; border-radius: 40% 60% 55% 45% / 55% 45% 55% 45%; }
.media-deco--orange { background: var(--orange); bottom: -22px; right: -18px; opacity: 0.9; border-radius: 60% 40% 45% 55% / 45% 55% 45% 55%; }

.checklist { display: grid; gap: 14px; margin-top: 26px; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; font-weight: 600; }
.checklist .ck {
  flex: none; width: 28px; height: 28px; border-radius: 9px; background: var(--gold);
  color: #fff; display: grid; place-items: center; font-size: 0.9rem; box-shadow: var(--shadow-sm);
}
.checklist li span small { display: block; font-weight: 500; color: var(--muted); font-size: 0.88rem; }

/* pillars (about) */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 880px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
.pillar {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 22px; box-shadow: var(--shadow-sm); transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.pillar:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.pillar .ico { width: 56px; height: 56px; border-radius: 18px; display: grid; place-items: center; font-size: 1.6rem; margin-bottom: 16px; }
.pillar:nth-child(1) .ico { background: #fdeccb; }
.pillar:nth-child(2) .ico { background: #d9f1ec; }
.pillar:nth-child(3) .ico { background: #e7defa; }
.pillar:nth-child(4) .ico { background: #fbe0ea; }
.pillar h3 { font-size: 1.12rem; margin-bottom: 6px; }
.pillar p { font-size: 0.92rem; color: var(--muted); }

/* ============================================================
   SHOP TOOLBAR + LAYOUT
   ============================================================ */
.shop-layout { display: grid; grid-template-columns: 1fr; gap: 28px; }
.shop-toolbar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-bottom: 26px;
}
.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  font-family: "Fredoka", sans-serif; font-weight: 500; font-size: 0.9rem;
  padding: 9px 17px; border-radius: var(--radius-pill); background: #fff;
  border: 1.5px solid var(--line); box-shadow: var(--shadow-sm); color: var(--ink-soft);
  transition: all 0.2s;
}
.chip:hover { border-color: var(--gold); color: var(--ink); }
.chip.active { background: var(--gold); color: #3a2900; border-color: var(--gold); }
.shop-sort label { font-weight: 700; font-size: 0.9rem; color: var(--ink-soft); margin-right: 8px; }
.shop-sort select {
  font-family: "Fredoka", sans-serif; font-weight: 500;
  padding: 10px 38px 10px 16px; border-radius: var(--radius-pill);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237d7d88' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 14px center;
  border: 1.5px solid var(--line); box-shadow: var(--shadow-sm); appearance: none; cursor: pointer;
}
.result-count { font-size: 0.92rem; color: var(--muted); font-weight: 600; }
.no-results { text-align: center; padding: 60px 20px; color: var(--muted); font-weight: 600; display: none; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(26px, 4vw, 50px); align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-cards { display: grid; gap: 16px; }
.cc {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 22px 24px; box-shadow: var(--shadow-sm); display: flex; gap: 16px; align-items: flex-start;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.cc:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.cc .ico { flex: none; width: 50px; height: 50px; border-radius: 15px; display: grid; place-items: center; font-size: 1.35rem; background: var(--paper-2); }
.cc h3 { font-size: 1.06rem; margin-bottom: 3px; }
.cc p, .cc a { color: var(--ink-soft); font-weight: 600; font-size: 0.96rem; word-break: break-word; }
.cc a:hover { color: var(--orange-deep); }
.reps { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 4px; }
@media (max-width: 460px) { .reps { grid-template-columns: 1fr; } }
.rep {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: var(--radius);
  background: #effdf4; border: 1.5px solid #cdeed8; transition: transform 0.2s, box-shadow 0.2s;
}
.rep:hover { transform: translateY(-2px); box-shadow: 0 12px 22px -12px var(--wa-deep); }
.rep .av { flex: none; width: 42px; height: 42px; border-radius: 50%; background: var(--wa); color: #fff; display: grid; place-items: center; font-family: "Fredoka"; font-weight: 600; }
.rep .who { font-family: "Fredoka", sans-serif; font-weight: 600; color: var(--ink); line-height: 1.15; }
.rep .num { font-size: 0.84rem; color: var(--wa-deep); font-weight: 700; }

.form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 38px); box-shadow: var(--shadow); }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: "Fredoka", sans-serif; font-weight: 500; font-size: 0.92rem; margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px; border-radius: 14px; background: var(--paper);
  border: 1.5px solid var(--line); transition: border-color 0.2s, box-shadow 0.2s; font-weight: 600;
}
.field input::placeholder, .field textarea::placeholder { color: #b3aa9a; font-weight: 500; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(249,184,30,0.18); background: #fff;
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: 0.84rem; color: var(--muted); margin-top: 12px; text-align: center; }

.map-embed { margin-top: 22px; border-radius: var(--radius-lg); overflow: hidden; border: 6px solid #fff; box-shadow: var(--shadow); }
.map-embed iframe { display: block; width: 100%; height: 320px; border: 0; filter: saturate(1.05); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { position: relative; overflow: hidden; }
.cta-inner {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border-radius: var(--radius-lg); padding: clamp(36px, 6vw, 64px) clamp(26px, 5vw, 60px);
  text-align: center; color: #fff; position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.cta-inner::before, .cta-inner::after {
  content: "🐾"; position: absolute; font-size: 8rem; opacity: 0.12; line-height: 1;
}
.cta-inner::before { top: -10px; left: 14px; transform: rotate(-18deg); }
.cta-inner::after { bottom: -24px; right: 18px; transform: rotate(14deg); }
.cta-inner h2 { color: #fff; font-size: clamp(1.7rem, 4vw, 2.7rem); position: relative; }
.cta-inner p { color: rgba(255,255,255,0.92); max-width: 50ch; margin: 14px auto 0; font-size: 1.06rem; font-weight: 600; position: relative; }
.cta-inner .hero__cta { justify-content: center; margin-top: 28px; position: relative; }
.cta-inner .btn--ghost { background: #fff; }
.cta-inner .btn { color: var(--ink); }
.cta-inner .btn--wa { background: var(--wa); color: #fff; }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-head { position: relative; padding-top: clamp(36px, 5vw, 60px); padding-bottom: clamp(30px, 4vw, 48px); text-align: center; }
.page-head__bg {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, var(--paper-2), transparent);
}
.page-head h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.breadcrumb { display: inline-flex; gap: 8px; align-items: center; margin-top: 14px; font-weight: 700; font-size: 0.92rem; color: var(--muted); }
.breadcrumb a:hover { color: var(--orange-deep); }
.breadcrumb .sep { opacity: 0.5; }
.breadcrumb .cur { color: var(--orange-deep); }

/* ============================================================
   LEGAL PAGES (privacy, terms)
   ============================================================ */
.legal { max-width: 80ch; margin-inline: auto; }
.legal__updated { color: var(--muted); font-size: 0.9rem; font-weight: 700; margin-bottom: 26px; }
.legal__lead { color: var(--ink-soft); font-size: clamp(1.02rem, 1.6vw, 1.14rem); line-height: 1.7; }
.legal h2 { font-size: clamp(1.25rem, 2.6vw, 1.6rem); margin-top: 38px; margin-bottom: 12px; color: var(--ink); }
.legal h2:first-of-type { margin-top: 28px; }
.legal p { color: var(--ink-soft); margin-bottom: 14px; line-height: 1.75; }
.legal ul { list-style: disc; margin: 0 0 16px; padding-left: 24px; display: grid; gap: 8px; }
.legal li { color: var(--ink-soft); line-height: 1.6; }
.legal a { color: var(--orange-deep); font-weight: 700; }
.legal a:hover { text-decoration: underline; }
.legal__note { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; color: var(--ink-soft); font-size: 0.95rem; line-height: 1.6; margin-top: 32px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: #cfc8bb; padding-top: clamp(50px, 7vw, 80px); margin-top: clamp(40px, 6vw, 80px); position: relative; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(24px, 4vw, 50px); padding-bottom: 44px; }
@media (max-width: 880px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer__top { grid-template-columns: 1fr; } }
.footer__brand img { height: 42px; margin-bottom: 16px; }
.footer__brand p { font-size: 0.94rem; max-width: 32ch; color: #a59d8f; }
.footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 16px; }
.footer ul { display: grid; gap: 10px; }
.footer ul a, .footer ul li { font-size: 0.94rem; color: #b8b0a3; transition: color 0.2s; }
.footer ul a:hover { color: var(--gold); }
.foot-contact li { display: flex; gap: 10px; align-items: flex-start; }
.foot-contact .ic { width: 16px; height: 16px; margin-top: 4px; flex: none; opacity: 0.7; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,0.08); display: grid; place-items: center; transition: background 0.2s, transform 0.2s; }
.socials a:hover { background: var(--gold); color: var(--ink); transform: translateY(-3px); }
.socials .ic { width: 18px; height: 18px; }
.footer__bar { border-top: 1px solid rgba(255,255,255,0.1); padding-block: 22px; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 0.86rem; color: #8f877a; }
.footer__bar a:hover { color: var(--gold); }

/* ---------- Floating WhatsApp ---------- */
.fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%; background: var(--wa); color: #fff;
  display: grid; place-items: center; box-shadow: 0 14px 30px -8px rgba(37,211,102,0.6);
  transition: transform 0.25s var(--ease);
  animation: fabpulse 2.6s ease-in-out infinite;
}
.fab:hover { transform: scale(1.1) rotate(6deg); }
.fab .ic { width: 30px; height: 30px; }
@keyframes fabpulse { 0%,100% { box-shadow: 0 14px 30px -8px rgba(37,211,102,0.6); } 50% { box-shadow: 0 14px 30px -8px rgba(37,211,102,0.6), 0 0 0 12px rgba(37,211,102,0.12); } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* page-load stagger for hero */
.hero .preload { opacity: 0; transform: translateY(20px); }
.loaded .hero .preload { opacity: 1; transform: none; transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.loaded .hero .preload.s1 { transition-delay: 0.05s; }
.loaded .hero .preload.s2 { transition-delay: 0.18s; }
.loaded .hero .preload.s3 { transition-delay: 0.31s; }
.loaded .hero .preload.s4 { transition-delay: 0.44s; }

/* ---------------------------------------------- marketplaces & catalogue */
.market { background: linear-gradient(180deg, var(--paper-2), var(--paper)); }
.market__inner { text-align: center; max-width: 760px; margin: 0 auto; }
.market__btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 26px; }
.market__btns--inline { margin-top: 0; justify-content: flex-start; }
.mbtn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: 999px; font-family: "Fredoka", sans-serif;
  font-weight: 600; font-size: 0.95rem; color: #fff; text-decoration: none;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), filter .2s var(--ease);
  box-shadow: 0 8px 18px -10px rgba(0,0,0,.4);
}
.mbtn .ic { width: 17px; height: 17px; }
.mbtn:hover { transform: translateY(-2px); filter: brightness(1.04); box-shadow: 0 14px 22px -10px rgba(0,0,0,.45); }
.mbtn--lg { padding: 14px 26px; font-size: 1.02rem; }
.mbtn--wa { background: var(--wa); }
.mbtn--shopee { background: #ee4d2d; }
.mbtn--tiktok { background: #111; }
.mbtn--lazada { background: #0f146e; }

.cat-intro { max-width: 64ch; color: var(--ink-soft); font-size: 1.04rem; }

/* per-card "also on" marketplace row */
.card__buy {
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px 10px;
  margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(0,0,0,.06);
  font-size: 0.82rem; color: var(--ink-soft);
}
.card__buy span { opacity: .75; }
.card__buy a {
  color: var(--orange-deep); text-decoration: none; font-weight: 600;
  border-bottom: 1px solid transparent; transition: border-color .15s;
}
.card__buy a:hover { border-bottom-color: currentColor; }

/* footer "shop with us" */
.foot-shop { margin-top: 18px; }
.foot-shop > span { display: block; font-size: 0.78rem; letter-spacing: .08em; text-transform: uppercase; color: #8d8576; margin-bottom: 10px; }
.foot-shop__links { display: flex; flex-wrap: wrap; gap: 8px; }
.foot-shop__links a {
  font-size: 0.85rem; font-weight: 600; color: #efe8da; text-decoration: none;
  padding: 6px 14px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px;
  transition: background .15s, border-color .15s;
}
.foot-shop__links a:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.3); }

/* logo: never distort (height fixed, width follows aspect) */
.footer__brand img { width: auto; }

/* deep-link to a product from footer "Popular": offset for sticky header + flash */
.card { scroll-margin-top: 110px; }
.card:target { animation: targetRing 2.4s ease forwards; }
@keyframes targetRing {
  0%   { box-shadow: 0 0 0 4px var(--orange), var(--shadow-lg); }
  65%  { box-shadow: 0 0 0 4px var(--orange), var(--shadow-lg); }
  100% { box-shadow: 0 0 0 4px transparent, var(--shadow); }
}

/* product card "How it helps" expandable */
.card__more { margin: 4px 0 2px; }
.card__more summary {
  list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 7px;
  font-family: "Fredoka", sans-serif; font-weight: 600; font-size: 0.82rem;
  color: var(--orange-deep); user-select: none; transition: color .15s;
}
.card__more summary::-webkit-details-marker { display: none; }
.card__more summary::after {
  content: ""; width: 7px; height: 7px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg); transition: transform .25s var(--ease); margin-top: -3px;
}
.card__more[open] summary::after { transform: rotate(-135deg); margin-top: 2px; }
.card__more summary:hover { color: var(--orange); }
.card__more p {
  margin-top: 9px; font-size: 0.86rem; line-height: 1.55; color: var(--ink-soft);
  animation: moreFade .25s var(--ease);
}
@keyframes moreFade { from { opacity: 0; transform: translateY(-3px); } to { opacity: 1; transform: none; } }

/* declutter: hide the redundant nav WhatsApp pill on desktop
   (the main "Order on WhatsApp" CTA sits right beside it).
   It still appears inside the mobile menu, where the CTA is hidden. */
@media (min-width: 941px) { .nav__links .btn--wa { display: none; } }

/* ---------------------------------------------- product card links */
.card__media { text-decoration: none; }   /* keep display:grid + place-items:center from the base rule so the image stays centered */
.card__name a { color: inherit; text-decoration: none; transition: color .15s; }
.card__name a:hover { color: var(--orange-deep); }
.card__more-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 2px;
  font-family: "Fredoka", sans-serif; font-weight: 600; font-size: 0.82rem;
  color: var(--orange-deep); text-decoration: none;
}
.card__more-link .ic { width: 13px; height: 13px; transition: transform .2s var(--ease); }
.card__more-link:hover .ic { transform: translateX(3px); }

/* ---------------------------------------------- product detail page */
.pdp__crumb { margin: 6px 0 2px; }
.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.pdp__media {
  position: relative; background: #fff; border-radius: var(--r-lg);
  box-shadow: var(--shadow); padding: 6%; display: flex; align-items: center; justify-content: center;
}
.pdp__media img { width: 90%; }
.pdp__media .tag-row { position: absolute; top: 18px; left: 18px; display: flex; gap: 6px; }
.pdp__cat { font-size: 0.8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--orange-deep); font-weight: 700; }
.pdp__name { font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1.05; margin-top: 8px; }
.pdp__tagline { font-size: 1.15rem; color: var(--ink-soft); margin-top: 10px; font-weight: 600; }
.pdp__price { font-family: "Fredoka", sans-serif; font-weight: 700; font-size: 2rem; color: var(--ink); margin: 16px 0 4px; }
.pdp__price small { font-size: 0.95rem; color: var(--muted); margin-right: 3px; vertical-align: 14px; }
.pdp__overview { margin: 14px 0 22px; line-height: 1.7; color: var(--ink-soft); }
.pdp__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.pdp__market { margin-top: 20px; }
.pdp__market > span { display: block; font-size: 0.8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; font-weight: 600; }
@media (max-width: 820px) { .pdp { grid-template-columns: 1fr; } }

.pdp__details { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); }
.pdp__block { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-sm); padding: clamp(24px, 3vw, 36px); }
.pdp__block h2 { font-size: 1.4rem; margin-bottom: 6px; }
.pdp__block .checklist { margin-top: 18px; }
.pdp__note { margin-top: 16px; font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
@media (max-width: 760px) { .pdp__details { grid-template-columns: 1fr; } }

/* map: OpenStreetMap embed + Google Maps link bar */
.map-embed { display: flex; flex-direction: column; }
.map-embed__link {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px; background: #fff; color: var(--orange-deep);
  font-family: "Fredoka", sans-serif; font-weight: 600; font-size: 0.92rem;
  text-decoration: none; border-top: 1px solid var(--line); transition: background .15s;
}
.map-embed__link:hover { background: var(--paper-2); }
.map-embed__link .ic { width: 16px; height: 16px; }

/* language switcher */
.lang-sel{appearance:none;-webkit-appearance:none;background:transparent;border:1px solid rgba(255,255,255,.35);color:#fff;border-radius:999px;padding:4px 26px 4px 12px;font:600 .78rem "Fredoka",sans-serif;cursor:pointer;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23fff' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 10px center}
.lang-sel option{color:#2b2b33}
.lang-slot--top{display:flex;align-items:center;margin-left:14px}
.nav__links .lang-slot--nav{display:none}
@media (max-width:940px){
  .nav__links .lang-slot--nav{display:block;padding:10px 0 2px}
  .nav__links .lang-sel{color:var(--ink);border-color:var(--line);background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%232b2b33' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E")}
}
[dir="rtl"] .topbar__left{margin-left:auto;margin-right:0}
[dir="rtl"] .lang-slot--top{margin-left:0;margin-right:14px}
[dir="rtl"] .card__more-link .ic,[dir="rtl"] .camp__go .ic,[dir="rtl"] .btn .ic--arrow{transform:scaleX(-1)}

/* ============================================================
   REVIEWS / TESTIMONIALS  (shared by /reviews page + homepage teaser)
   ============================================================ */
/* star rating — whole or fractional (fill width = rating/5 * 100%) */
.stars { position: relative; display: inline-block; line-height: 1; letter-spacing: 3px; white-space: nowrap; font-size: 1.02rem; }
.stars__base { color: #e8dec9; }
.stars__fill { position: absolute; left: 0; top: 0; width: 0; overflow: hidden; color: var(--gold); }
[dir="rtl"] .stars__fill { left: auto; right: 0; }

/* aggregate summary band */
.rating-summary {
  display: flex; align-items: center; justify-content: center; gap: clamp(16px, 3vw, 34px);
  flex-wrap: wrap; max-width: 720px; margin: 0 auto clamp(34px, 5vw, 52px);
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); padding: clamp(20px, 3vw, 28px) clamp(24px, 4vw, 44px);
}
.rating-summary__score { font-family: "Fredoka", sans-serif; font-weight: 600; font-size: clamp(2.6rem, 6vw, 3.5rem); color: var(--orange-deep); line-height: 1; }
.rating-summary__stars { font-size: 1.25rem; margin-top: 6px; }
.rating-summary__meta strong { font-family: "Fredoka", sans-serif; font-weight: 600; font-size: 1.02rem; color: var(--ink); display: block; }
.rating-summary__meta span { font-size: 0.9rem; color: var(--muted); font-weight: 600; }
.rating-summary__divider { width: 1px; align-self: stretch; background: var(--line); }
@media (max-width: 540px) { .rating-summary__divider { display: none; } }

/* review grid + cards */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); }
@media (max-width: 900px) { .review-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .review-grid { grid-template-columns: 1fr; } }

.review-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); padding: 24px 24px 22px; display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.review-card__stars { margin-bottom: 13px; }
.review-card__quote { font-size: 1rem; line-height: 1.62; color: var(--ink-soft); flex: 1; }
.review-card__quote::before { content: "\201C"; }
.review-card__quote::after  { content: "\201D"; }
.review-card__who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.review-avatar {
  flex: none; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  font-family: "Fredoka", sans-serif; font-weight: 600; font-size: 0.95rem; color: #fff; background: var(--orange);
}
.review-avatar--gold   { background: var(--gold);   color: #7a5200; }
.review-avatar--teal   { background: var(--teal);   color: #0c4a4a; }
.review-avatar--purple { background: var(--purple); }
.review-avatar--pink   { background: var(--pink); }
.review-avatar--green  { background: var(--green); }
.review-card__name { font-family: "Fredoka", sans-serif; font-weight: 600; font-size: 0.98rem; color: var(--ink); line-height: 1.2; }
.review-card__pet  { font-size: 0.85rem; color: var(--muted); font-weight: 600; }
.review-card__tag { align-self: flex-start; font-family: "Fredoka", sans-serif; font-weight: 600; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--orange-deep); background: var(--paper-2); border: 1px solid var(--line); padding: 4px 12px; border-radius: var(--radius-pill); margin-bottom: 13px; }
a.review-card { cursor: pointer; }
.review-card__more { margin-top: 16px; display: inline-flex; align-items: center; gap: 6px; font-family: "Fredoka", sans-serif; font-weight: 600; font-size: 0.85rem; color: var(--orange-deep); }
.review-card__more .ic { width: 1em; height: 1em; transition: transform 0.2s var(--ease); }
a.review-card:hover .review-card__more .ic { transform: translateX(4px); }
.review-badge {
  display: inline-flex; align-items: center; gap: 6px; align-self: flex-start; margin-top: 14px;
  font-family: "Fredoka", sans-serif; font-weight: 600; font-size: 0.74rem;
  padding: 4px 11px; border-radius: var(--radius-pill); border: 1px solid transparent;
}
.review-badge .ic { width: 0.95em; height: 0.95em; }
.review-badge--wa     { background: #eafaf0; color: var(--wa-deep); border-color: #cdeed8; }
.review-badge--shopee { background: #fdece4; color: #d0451f; border-color: #f7d3c4; }
.review-badge--tiktok { background: #f0eef6; color: #33313a; border-color: #e0dced; }
.review-badge--lazada { background: #e9eaf6; color: #232a86; border-color: #d3d5ef; }

/* "share your story" invite */
.review-invite { text-align: center; max-width: 620px; margin: 0 auto; }
.review-invite .lead { margin-inline: auto; }
.review-invite .hero__cta { justify-content: center; margin-top: 26px; }

/* homepage teaser: link out under the 3-card strip */
.reviews-more { margin-top: clamp(30px, 4vw, 44px); }

/* ============================================================
   PER-PRODUCT TESTIMONIAL PAGES (editorial stories + FAQ)
   ============================================================ */
.story-list { display: grid; gap: clamp(22px, 3vw, 34px); max-width: 900px; margin-inline: auto; }
.story {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); padding: clamp(22px, 3vw, 34px);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.story:hover { box-shadow: var(--shadow); }
.story__eyebrow { font-family: "Fredoka", sans-serif; font-weight: 600; color: var(--orange-deep); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; }
.story__title { font-size: clamp(1.28rem, 2.6vw, 1.65rem); margin: 6px 0 14px; }
.story__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.story__meta span { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 5px 13px; font-size: 0.82rem; font-weight: 700; color: var(--ink-soft); }
.story__body { color: var(--ink-soft); line-height: 1.72; }
.story__body p { margin-bottom: 12px; }
.story__body p:last-child { margin-bottom: 0; }
.story blockquote {
  margin: 16px 0; padding: 6px 0 6px 22px; border-left: 4px solid var(--gold);
  font-size: 1.08rem; line-height: 1.6; color: var(--ink); font-weight: 600;
}
[dir="rtl"] .story blockquote { border-left: 0; border-right: 4px solid var(--gold); padding: 6px 22px 6px 0; }
.story__take { display: flex; gap: 11px; margin-top: 18px; background: var(--paper-2); border-radius: var(--radius); padding: 14px 16px; font-size: 0.92rem; line-height: 1.6; color: var(--ink-soft); }
.story__take .emo { font-size: 1.1rem; line-height: 1.4; flex: none; }
.story__take strong { color: var(--orange-deep); font-family: "Fredoka", sans-serif; font-weight: 600; }
.story__src { margin-top: 13px; font-size: 0.84rem; color: var(--muted); font-weight: 600; }
.story__src a { color: var(--orange-deep); }
/* before/after media slot (used once photos are optimized into assets/img/reviews/) */
.story__media { margin-top: 18px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.story__media img { width: 100%; display: block; }
.story__media.ba { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; border: 0; }
@media (max-width: 480px) { .story__media.ba { grid-template-columns: 1fr; } }

/* FAQ accordion (also emits FAQPage JSON-LD for GEO) */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 2px 20px; }
.faq-item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 16px 0; font-family: "Fredoka", sans-serif; font-weight: 600; font-size: 1.02rem; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: ""; width: 9px; height: 9px; border-right: 2.4px solid var(--orange-deep); border-bottom: 2.4px solid var(--orange-deep); transform: rotate(45deg); transition: transform 0.25s var(--ease); flex: none; margin-top: -4px; }
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: 3px; }
.faq-item p { padding: 0 0 18px; color: var(--ink-soft); line-height: 1.72; }
