/* =====================================================================
   AmericanGadgetCo — Global Stylesheet
   Soft, elegant, trustworthy design system
   Palette: slate · dusty rose · blush · warm sand · cool mist
   ===================================================================== */

:root {
  /* Brand palette (from reference swatch) */
  --slate: #6a3f50;       /* brand dark (warm plum) — structure, hero/footer, headings */
  --slate-2: #7e4d60;
  --slate-ink: #472834;   /* deepest plum — text / button label on rose */
  --rose: #e0b8c4;        /* dusty rose — primary accent / CTA */
  --rose-deep: #c98ba0;   /* deeper rose — hover / emphasis */
  --rose-soft: #f5e4e9;   /* pale rose — tints, fills */
  --blush: #faf0ef;       /* blush white — media backdrop */
  --sand: #e3d3bd;        /* warm beige */
  --sand-soft: #f3ecdf;   /* pale sand tint */
  --mist: #d6c9ce;        /* warm light mauve-gray */
  --gold: #c9a45a;        /* muted rating star */

  /* Neutrals */
  --bg: #faf5f3;
  --surface: #ffffff;
  --text: #4e434a;        /* warm charcoal */
  --muted: #8c8187;
  --muted-2: #ab9fa6;
  --border: #ece1e2;
  --border-2: #ddd0d2;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(106, 63, 80, .06), 0 1px 3px rgba(106, 63, 80, .08);
  --shadow: 0 6px 18px rgba(106, 63, 80, .10);
  --shadow-lg: 0 20px 44px rgba(106, 63, 80, .17);
  --radius: 16px;
  --radius-sm: 11px;
  --maxw: 1120px;

  --font: "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--slate); text-decoration: none; }
a:hover { text-decoration: underline; color: var(--rose-deep); }
h1, h2, h3, h4 { color: var(--slate-ink); line-height: 1.25; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); letter-spacing: -.5px; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -.3px; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 820px; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.muted { color: var(--muted); }
.small { font-size: .875rem; }
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: .74rem;
  font-weight: 700;
  color: var(--rose-deep);
  background: var(--rose-soft);
  padding: 6px 13px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--slate);
  color: #ddced4;
  font-size: .8rem;
  letter-spacing: .3px;
}
.topbar .container {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
}
.topbar span { display: inline-flex; align-items: center; gap: 6px; }
.topbar svg { width: 15px; height: 15px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; color: var(--slate-ink); font-size: 1.2rem; letter-spacing: -.3px; }
.brand:hover { text-decoration: none; }
.brand .logo-mark { width: 38px; height: 38px; flex: none; }
.brand .brand-am { color: var(--rose-deep); }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: var(--slate-ink); font-weight: 600; font-size: .95rem; }
.nav a:hover { color: var(--rose-deep); text-decoration: none; }
.nav .btn { color: var(--slate-ink); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-2);
  border-radius: 8px;
  width: 44px; height: 40px;
  cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 24px; height: 24px; color: var(--slate); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--rose);
  color: var(--slate-ink);
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 26px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  box-shadow: 0 6px 16px rgba(201, 139, 160, .3);
}
.btn:hover { background: var(--rose-deep); color: var(--slate-ink); text-decoration: none; transform: translateY(-1px); box-shadow: 0 10px 22px rgba(201, 139, 160, .38); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: 9px 18px; font-size: .9rem; box-shadow: none; }
.btn-block { width: 100%; }
.btn-ghost { background: transparent; color: var(--slate-ink); border: 1.5px solid var(--border-2); box-shadow: none; }
.btn-ghost:hover { background: var(--rose-soft); color: var(--slate-ink); box-shadow: none; }
.btn svg { width: 18px; height: 18px; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1100px 480px at 82% -10%, rgba(224, 184, 196, .40), transparent 60%),
    radial-gradient(900px 400px at 5% 110%, rgba(227, 211, 189, .28), transparent 55%),
    linear-gradient(160deg, #6a3f50 0%, #5e3646 55%, #7a495c 100%);
  color: #f1ecef;
  padding: 66px 0 78px;
  position: relative;
  overflow: hidden;
}
.hero h1 { color: #fff; margin-bottom: 16px; }
.hero .eyebrow { background: rgba(224, 184, 196, .22); color: #f2d6de; }
.hero p.lead { font-size: 1.18rem; color: #ddd6da; max-width: 640px; margin: 0 auto 26px; }
.hero .text-center p.lead { margin-left: auto; margin-right: auto; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  justify-content: center;
  margin-top: 30px;
  color: #e2dade;
  font-size: .92rem;
  font-weight: 600;
}
.hero-trust .ht { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 20px; height: 20px; color: #ecc6d1; }

/* ---------- Stars ---------- */
.stars { display: inline-flex; align-items: center; gap: 2px; color: var(--gold); line-height: 1; }
.stars svg { width: 18px; height: 18px; }
.stars.lg svg { width: 22px; height: 22px; }
.rating-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; }
.rating-score { font-weight: 800; color: var(--slate-ink); font-size: 1.05rem; }
.rating-count { color: var(--muted); font-size: .86rem; }

/* ---------- Advertiser disclosure strip ---------- */
.disclosure-strip {
  background: var(--sand-soft);
  border: 1px solid #ead9c1;
  color: #766449;
  font-size: .85rem;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin: 26px auto 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.disclosure-strip svg { width: 18px; height: 18px; flex: none; margin-top: 2px; color: #b78a55; }
.disclosure-strip a { color: #8a6f45; text-decoration: underline; }

/* ---------- Section ---------- */
.section { padding: 62px 0; }
.section-head { max-width: 720px; margin: 0 auto 42px; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.08rem; }

/* ---------- Product cards ---------- */
.product {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 34px;
  transition: box-shadow .18s ease, transform .18s ease;
}
.product:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.product-grid { display: grid; grid-template-columns: 320px 1fr; }

.product-media {
  position: relative;
  background: linear-gradient(155deg, var(--blush) 0%, #f4eae3 55%, #f0e6ea 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  min-height: 320px;
  border-right: 1px solid var(--border);
}
.product-media img {
  width: 100%;
  max-width: 268px;
  max-height: 280px;
  object-fit: contain;
  border-radius: 12px;
  filter: drop-shadow(0 10px 18px rgba(86, 89, 103, .16));
}
.rank-badge {
  position: absolute;
  top: 0; left: 0;
  z-index: 2;
  background: var(--slate);
  color: #fff;
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .5px;
  padding: 8px 14px 8px 12px;
  border-bottom-right-radius: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.rank-badge.best { background: linear-gradient(135deg, var(--slate-ink), var(--rose-deep)); }
.rank-badge svg { width: 15px; height: 15px; color: var(--gold); }
.rank-badge.best svg { color: #ffe9c4; }

.product-body { padding: 26px 28px; }
.product-body h3 { font-size: 1.4rem; margin-bottom: 6px; }
.product-tagline { color: var(--muted); font-size: .95rem; margin-bottom: 12px; }

.badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 16px; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--rose-soft);
  color: var(--rose-deep);
  font-size: .78rem;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
}
.badge svg { width: 13px; height: 13px; }
.badge.green { background: var(--sand-soft); color: #8a7048; }

.pros { list-style: none; padding: 0; margin: 6px 0 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 20px; }
.pros li { position: relative; padding-left: 26px; font-size: .93rem; color: #4a4c56; }
.pros li svg { position: absolute; left: 0; top: 3px; width: 17px; height: 17px; color: var(--rose-deep); }

.product-cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; padding-top: 16px; border-top: 1px solid var(--border); }
.editor-score { display: flex; flex-direction: column; line-height: 1.1; }
.editor-score .num { font-size: 1.7rem; font-weight: 800; color: var(--slate-ink); }
.editor-score .num small { font-size: .95rem; color: var(--muted-2); font-weight: 700; }
.editor-score .lbl { font-size: .72rem; text-transform: uppercase; letter-spacing: .8px; color: var(--muted); font-weight: 700; }
.product-cta .btn { margin-left: auto; }
.cta-note { width: 100%; font-size: .78rem; color: var(--muted-2); margin: 0; }

/* ---------- Trust / feature blocks ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
}
.feature .ico {
  width: 50px; height: 50px;
  border-radius: 13px;
  background: var(--rose-soft);
  color: var(--rose-deep);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.feature .ico svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.12rem; }
.feature p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- Callout / newsletter promo ---------- */
.callout {
  background:
    radial-gradient(700px 300px at 85% -20%, rgba(224, 184, 196, .38), transparent 60%),
    linear-gradient(150deg, var(--slate), #5a3444);
  color: #ece7ea;
  border-radius: 20px;
  padding: 44px 40px;
  text-align: center;
}
.callout h2 { color: #fff; }
.callout p { color: #d6d0d5; max-width: 560px; margin: 0 auto 22px; }
.callout .btn { background: var(--rose); color: var(--slate-ink); }
.callout .btn:hover { background: #eccbd4; }

/* ---------- Content pages (legal, about, faq) ---------- */
.page-header {
  background:
    radial-gradient(700px 300px at 90% -30%, rgba(224, 184, 196, .34), transparent 60%),
    linear-gradient(160deg, var(--slate), #5e3646);
  color: #efeaed;
  padding: 48px 0 44px;
}
.page-header h1 { color: #fff; margin-bottom: 8px; }
.page-header p { color: #d7d1d6; max-width: 700px; margin: 0; }
.breadcrumb { font-size: .84rem; color: #c9b7bf; margin-bottom: 14px; }
.breadcrumb a { color: #ecd9df; }

.prose { padding: 48px 0 60px; }
.prose h2 { margin-top: 2em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.6em; }
.prose ul, .prose ol { padding-left: 1.3em; margin-bottom: 1.2rem; }
.prose li { margin-bottom: .5em; }
.prose .updated { color: var(--muted); font-size: .9rem; margin-bottom: 2rem; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.4rem 0; font-size: .95rem; }
.prose th, .prose td { border: 1px solid var(--border); padding: 10px 14px; text-align: left; }
.prose th { background: var(--rose-soft); color: var(--slate-ink); }

.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--slate);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  margin: 1.6rem 0;
  box-shadow: var(--shadow-sm);
}
.info-card.warn { border-left-color: var(--rose-deep); background: #fdf4f7; }

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  color: var(--slate-ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { width: 20px; height: 20px; flex: none; color: var(--rose-deep); transition: transform .2s ease; }
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item .faq-body { padding: 0 22px 20px; color: var(--muted); }
.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* ---------- Contact / imprint ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: start; }
.imprint-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
}
.imprint-box .row { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--border); }
.imprint-box .row:last-child { border-bottom: none; }
.imprint-box .row svg { width: 20px; height: 20px; color: var(--rose-deep); flex: none; margin-top: 2px; }
.imprint-box .row .k { font-size: .76rem; text-transform: uppercase; letter-spacing: .6px; color: var(--muted-2); font-weight: 700; }
.imprint-box .row .v { color: var(--text); font-weight: 600; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 32px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 700; color: var(--slate-ink); font-size: .9rem; margin-bottom: 6px; }
.field label .req { color: var(--rose-deep); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border-2);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  transition: border-color .12s ease, box-shadow .12s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--rose-deep);
  box-shadow: 0 0 0 3px rgba(224, 184, 196, .38);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #d8748a; box-shadow: 0 0 0 3px rgba(216, 116, 138, .18); }
.field .hint { font-size: .8rem; color: var(--muted); margin-top: 5px; }

.consent { margin: 18px 0; padding: 16px 18px; background: #fbf5f6; border: 1px solid var(--border); border-radius: 10px; }
.check {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 9px 0;
  font-size: .9rem;
  color: #4a4c56;
  line-height: 1.5;
}
.check + .check { border-top: 1px dashed var(--border-2); }
.check input[type="checkbox"] {
  width: 20px; height: 20px;
  flex: none;
  margin-top: 1px;
  accent-color: var(--rose-deep);
  cursor: pointer;
}
.check a { text-decoration: underline; }

.form-msg {
  display: none;
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 18px;
  font-weight: 600;
  font-size: .95rem;
}
.form-msg.ok { display: block; background: #eef3ee; color: #4f6b4f; border: 1px solid #cfe0cf; }
.form-msg.err { display: block; background: #fbeef0; color: #a5455a; border: 1px solid #f0cdd4; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--slate);
  color: #d3c5cb;
  padding: 54px 0 0;
  font-size: .92rem;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 34px; padding-bottom: 40px; }
.footer-grid h4 { color: #fff; font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-grid a { color: #d3c5cb; display: block; padding: 5px 0; }
.footer-grid a:hover { color: #fff; text-decoration: none; }
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand .brand .brand-am { color: var(--rose); }
.footer-brand p { color: #b7a5ae; font-size: .9rem; }
.footer-imprint { color: #b7a5ae; font-size: .84rem; line-height: 1.7; }
.footer-imprint strong { color: #e8d9df; }
.footer-imprint a { color: #c8b6bf; }

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 22px 0;
  color: #b3a3ab;
  font-size: .82rem;
  line-height: 1.7;
}
.footer-disclaimer strong { color: #ddccd3; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 18px 0 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  color: #a998a1;
  font-size: .82rem;
}
.footer-bottom .fnav { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom a { color: #c5b3bc; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 16px 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 6px; border-bottom: 1px solid var(--border); }
  .nav .btn { margin-top: 12px; justify-content: center; }
  .nav-toggle { display: inline-flex; }

  .product-grid { grid-template-columns: 1fr; }
  .product-media { border-right: none; border-bottom: 1px solid var(--border); min-height: 260px; }
  .product-media img { max-width: 240px; max-height: 240px; }
  .features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .pros { grid-template-columns: 1fr; }
  .product-cta .btn { margin-left: 0; width: 100%; }
  .editor-score { flex-direction: row; align-items: baseline; gap: 8px; }
}
@media (max-width: 520px) {
  body { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .callout { padding: 32px 22px; }
  .form-card { padding: 22px 18px; }
}

/* =====================================================================
   Redesign uplift — refined typography, richer hero, social proof
   ===================================================================== */
:root {
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, "Georgia", serif;
}

/* Elegant serif headings + display numerals */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; letter-spacing: -.2px; }
.hero h1 { letter-spacing: -.6px; }
.editor-score .num, .rating-score, .hero-stats .n, .callout h2, .tcard blockquote { font-family: var(--font-display); }
.eyebrow, .badge, .rank-badge, .breadcrumb, .pick-flag, .btn, .nav a, .brand,
.imprint-box .row .k, .editor-score .lbl, .hero-stats .l { font-family: var(--font); }

/* Decorative underline under centered section headings */
.section-head h2 { position: relative; display: inline-block; padding-bottom: 14px; }
.section-head h2::after {
  content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 54px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--rose), var(--rose-deep));
}

/* Buttons — soft gradient + polish (skip ghost buttons) */
.btn:not(.btn-ghost) { background: linear-gradient(135deg, #e8c4ce 0%, var(--rose) 55%, #d9a6b6 100%); }
.btn:not(.btn-ghost):hover { background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%); }

/* Hero stat cards */
.hero-stats {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 16px; margin-top: 36px;
}
.hero-stats .stat {
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 15px;
  padding: 15px 26px;
  min-width: 138px;
  backdrop-filter: blur(4px);
}
.hero-stats .n { display: block; font-size: 1.85rem; font-weight: 700; color: #fff; line-height: 1; }
.hero-stats .n span { color: var(--rose); }
.hero-stats .l { display: block; margin-top: 7px; font-size: .8rem; color: #e7d8de; letter-spacing: .3px; }

/* Featured (#1) product highlight */
.product.featured {
  border: 1.5px solid var(--rose);
  box-shadow: 0 14px 38px rgba(201, 139, 160, .26);
}
.pick-flag {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: #fff; font-size: .72rem; font-weight: 800;
  letter-spacing: .8px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 10px;
}
.pick-flag svg { width: 13px; height: 13px; }

/* Product image subtle zoom on hover */
.product-media img { transition: transform .3s ease; }
.product:hover .product-media img { transform: scale(1.035); }

/* Testimonials / social proof */
.section.alt { background: linear-gradient(180deg, #fdf5f2, #faf0ee); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tcard {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.tcard .stars { margin-bottom: 12px; }
.tcard blockquote { margin: 0 0 18px; font-size: 1.02rem; color: #4a4046; line-height: 1.6; }
.tcard figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tcard .avatar {
  width: 44px; height: 44px; flex: none; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: #fff; font-weight: 700; font-size: .95rem;
  display: grid; place-items: center;
}
.tcard .who { font-weight: 700; color: var(--slate-ink); font-size: .95rem; line-height: 1.2; }
.tcard .who small { display: block; font-weight: 600; color: var(--muted); font-size: .78rem; margin-top: 2px; }

@media (max-width: 860px) {
  .tgrid { grid-template-columns: 1fr; }
  .hero-stats .stat { flex: 1 1 40%; min-width: 0; }
}
