/* ============================================================
   Afuafu Toys — Brand Website Stylesheet
   Style: Warm, playful, trustworthy (matches brand logo/banner)
   Domain: www.afuafutoys.com
   ============================================================ */

:root {
  /* Brand palette extracted from logo & banner */
  --cream: #FDF8F0;
  --cream-warm: #F6E9D8;
  --peach: #FCE5C9;
  --coral: #E07A5F;
  --coral-dark: #C55A43;
  --sky: #8ECAE6;
  --sky-dark: #5FA3C3;
  --yellow: #F2CC8F;
  --mint: #81B29A;
  --pink: #F4A5AE;
  --navy: #3D405B;
  --navy-deep: #2C2F42;
  --white: #FFFFFF;
  --ink: #4A3B32;
  --ink-soft: #7D6A5D;
  --line: #EFE9E0;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 8px 30px rgba(74, 59, 50, .08);
  --shadow-pop: 0 14px 40px rgba(74, 59, 50, .12);
  --font-head: "Fredoka", "Baloo 2", sans-serif;
  --font-body: "Nunito", "Segoe UI", sans-serif;
  --maxw: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16.5px;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4, .font-head {
  font-family: var(--font-head);
  line-height: 1.15;
  color: var(--navy);
  font-weight: 600;
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn-primary { background: var(--coral); color: #fff; box-shadow: 0 10px 24px rgba(224, 122, 95, .32); }
.btn-primary:hover { background: var(--coral-dark); transform: translateY(-3px); box-shadow: 0 16px 32px rgba(224, 122, 95, .40); }
.btn-secondary { background: var(--white); color: var(--navy); border: 2.5px solid var(--navy); box-shadow: 0 6px 0 var(--navy); }
.btn-secondary:hover { transform: translateY(-3px); box-shadow: 0 9px 0 var(--navy); }
.btn-ghost { background: transparent; color: var(--navy); border: 2px solid rgba(61, 64, 91, .18); }
.btn-ghost:hover { border-color: var(--coral); color: var(--coral); transform: translateY(-2px); }
.btn-lg { padding: 17px 40px; font-size: 1.15rem; }

/* ---------- Badges ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 6px 15px;
  border-radius: 999px;
  font-family: var(--font-body);
}
.badge-walmart { background: #FFE8EE; color: #D32F2F; }
.badge-new { background: rgba(129, 178, 154, .14); color: #1B6B4F; }
.badge-hot { background: rgba(242, 204, 143, .30); color: #8A6000; }
.badge-age { background: rgba(61, 64, 91, .08); color: var(--navy); font-weight: 700; text-transform: none; letter-spacing: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 240, .94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-soft); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 82px; }
.brand-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}
.brand-logo img { height: 48px; width: auto; border-radius: 12px; }
.brand-logo b { color: var(--coral); }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 3.5px;
  border-radius: 3px;
  background: var(--coral);
  transition: width .28s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--coral); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5.5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 26px; height: 3.5px; border-radius: 3px; background: var(--navy); transition: transform .3s ease, opacity .3s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 70px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(720px 420px at 88% 12%, rgba(242, 204, 143, .28), transparent 62%),
    radial-gradient(640px 480px at 6% 90%, rgba(142, 202, 230, .15), transparent 60%),
    var(--cream);
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1.5px solid var(--line);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .88rem;
  color: var(--ink-soft);
  box-shadow: var(--shadow-soft);
  margin-bottom: 22px;
}
.hero-kicker .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--mint); animation: pulse 1.8s infinite; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); letter-spacing: -.01em; }
.hero h1 .hl { color: var(--coral); position: relative; display: inline-block; }
.hero h1 .hl svg { position: absolute; left: 0; right: 0; bottom: -12px; width: 100%; height: 14px; }
.hero-sub { margin: 24px 0 36px; font-size: 1.18rem; color: var(--ink-soft); max-width: 33em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-visual .art-frame {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-pop);
  padding: 24px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.hero-visual .art-frame img { border-radius: var(--radius-md); width: 100%; height: auto; }
.float-chip {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-pop);
  padding: 12px 18px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 9px;
  animation: floaty 5s ease-in-out infinite;
  z-index: 2;
}
.float-chip small { display: block; font-family: var(--font-body); font-size: .74rem; color: var(--ink-soft); font-weight: 600; }
.chip-1 { top: -20px; left: -26px; }
.chip-2 { bottom: -18px; right: -20px; animation-delay: 1.2s; }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--navy); color: #fff; padding: 26px 0; }
.trustbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.trustbar .lead { font-family: var(--font-head); font-size: 1.1rem; font-weight: 600; white-space: nowrap; }
.trustbar .lead b { color: var(--yellow); }
.cert-list { display: flex; gap: 14px; flex-wrap: wrap; }
.cert-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .16);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .03em;
}
.cert-pill svg { width: 16px; height: 16px; }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-alt { background: #fff; }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 58px; }
.section-head .eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .9rem;
  margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.section-head p { color: var(--ink-soft); margin-top: 14px; font-size: 1.08rem; }

/* ---------- Category cards ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.cat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 26px 30px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 150px; height: 150px;
  border-radius: 50%;
  opacity: .12;
}
.cat-card:nth-child(1)::before { background: var(--coral); }
.cat-card:nth-child(2)::before { background: var(--sky); }
.cat-card:nth-child(3)::before { background: var(--yellow); }
.cat-card:nth-child(4)::before { background: var(--mint); }
.cat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-pop); }
.cat-ico { width: 84px; height: 84px; margin: 0 auto 20px; border-radius: 24px; display: grid; place-items: center; transition: transform .35s ease; }
.cat-card:hover .cat-ico { transform: scale(1.1) rotate(-5deg); }
.cat-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.cat-card p { font-size: .94rem; color: var(--ink-soft); }
.cat-card .cat-count { display: inline-block; margin-top: 14px; font-size: .82rem; font-weight: 800; color: var(--coral); letter-spacing: .05em; text-transform: uppercase; }

/* ---------- Product grid ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.prod-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.prod-card:hover { transform: translateY(-9px); box-shadow: var(--shadow-pop); }
.prod-media { position: relative; padding: 44px 30px 38px; display: grid; place-items: center; min-height: 230px; }
.prod-media .badge { position: absolute; top: 18px; left: 18px; }
.prod-media svg.toy { width: 150px; height: 150px; filter: drop-shadow(0 10px 18px rgba(74, 59, 50, .12)); transition: transform .4s ease; }
.prod-card:hover .prod-media svg.toy { transform: scale(1.08) rotate(-3deg); }
.pm-1 { background: linear-gradient(150deg, #FCE5C9, #FAD7B3); }
.pm-2 { background: linear-gradient(150deg, #E3F3FA, #D4EBF5); }
.pm-3 { background: linear-gradient(150deg, #FFF5E0, #FCE8C2); }
.pm-4 { background: linear-gradient(150deg, #FDE8E8, #FBD6D6); }
.pm-5 { background: linear-gradient(150deg, #E8EAF6, #DDE0F0); }
.pm-6 { background: linear-gradient(150deg, #E8F4EF, #D8EDE4); }
.prod-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.prod-body .badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.prod-body h3 { font-size: 1.22rem; margin-bottom: 6px; }
.prod-body .desc { color: var(--ink-soft); font-size: .95rem; flex: 1; }
.prod-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1.5px dashed var(--line);
}
.prod-meta .view-link {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .98rem;
  transition: gap .25s ease;
}
.prod-meta .view-link:hover { gap: 11px; }
.prod-rating { display: inline-flex; align-items: center; gap: 6px; font-size: .88rem; color: var(--ink-soft); }
.prod-rating .stars { color: var(--yellow); letter-spacing: -1px; }

/* ---------- Why-us features ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card { background: #fff; border-radius: var(--radius-lg); padding: 38px 30px; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.feature-card .f-ico { width: 66px; height: 66px; border-radius: 20px; display: grid; place-items: center; margin-bottom: 22px; }
.feature-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.feature-card p { color: var(--ink-soft); font-size: .98rem; }

/* ---------- Story strip ---------- */
.story-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-strip .art-frame { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-pop); padding: 24px; border: 1px solid var(--line); overflow: hidden; }
.story-strip .art-frame img { border-radius: var(--radius-md); width: 100%; height: auto; }
.story-strip h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 18px; }
.story-strip p { color: var(--ink-soft); margin-bottom: 14px; }
.story-strip .btn { margin-top: 12px; }
.check-list { margin: 18px 0 8px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; font-weight: 600; color: var(--ink); }
.check-list svg { flex: none; margin-top: 4px; }

/* ---------- Stats band ---------- */
.stats-band {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats-band::before, .stats-band::after { content: ""; position: absolute; border-radius: 50%; opacity: .12; }
.stats-band::before { width: 240px; height: 240px; background: var(--coral); top: -100px; left: -80px; }
.stats-band::after { width: 200px; height: 200px; background: var(--sky); bottom: -90px; right: -60px; }
.stat .num { font-family: var(--font-head); font-size: clamp(2.1rem, 3.4vw, 2.9rem); font-weight: 700; color: var(--yellow); }
.stat .lbl { font-size: .95rem; opacity: .82; margin-top: 4px; }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  background:
    radial-gradient(560px 300px at 85% 10%, rgba(242, 204, 143, .24), transparent 60%),
    radial-gradient(520px 360px at 8% 95%, rgba(142, 202, 230, .13), transparent 55%),
    var(--cream);
  padding: 74px 0 84px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(2.2rem, 4.4vw, 3.3rem); }
.page-hero p { color: var(--ink-soft); max-width: 640px; margin: 16px auto 0; font-size: 1.12rem; }
.crumbs { font-size: .88rem; font-weight: 700; color: var(--ink-soft); margin-bottom: 18px; letter-spacing: .03em; }
.crumbs a { color: var(--coral); }

/* ---------- Filter bar ---------- */
.filter-bar { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }
.filter-btn {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .98rem;
  padding: 10px 24px;
  border-radius: 999px;
  border: 2px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: all .25s ease;
}
.filter-btn:hover { border-color: var(--coral); color: var(--coral); }
.filter-btn.active { background: var(--navy); border-color: var(--navy); color: #fff; box-shadow: 0 8px 18px rgba(61, 64, 91, .22); }

/* ---------- Product detail ---------- */
.pd-wrap { display: grid; grid-template-columns: 1.02fr .98fr; gap: 58px; align-items: start; }
.pd-gallery {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-pop);
  padding: 52px 40px;
  display: grid;
  place-items: center;
  position: relative;
}
.pd-gallery svg.toy { width: 300px; height: 300px; filter: drop-shadow(0 16px 26px rgba(74, 59, 50, .12)); }
.pd-gallery .badge { position: absolute; top: 22px; left: 22px; }
.pd-thumbs { display: flex; gap: 14px; justify-content: center; margin-top: 26px; }
.pd-thumb {
  width: 84px; height: 84px;
  border-radius: 16px;
  border: 2px solid var(--line);
  display: grid; place-items: center;
  background: #fff;
  cursor: pointer;
  transition: border-color .25s ease, transform .25s ease;
}
.pd-thumb:hover, .pd-thumb.active { border-color: var(--coral); transform: translateY(-3px); }
.pd-thumb svg { width: 46px; height: 46px; }
.pd-info h1 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.pd-info .pd-tagline { color: var(--ink-soft); font-size: 1.1rem; margin: 12px 0 20px; }
.pd-info .pd-badges { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 24px; }
.pd-bullets { margin: 8px 0 28px; }
.pd-bullets li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 13px; font-weight: 600; }
.pd-bullets svg { flex: none; margin-top: 4px; }
.pd-actions { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 32px; }
.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  font-size: .95rem;
}
.spec-table th { text-align: left; font-family: var(--font-head); font-weight: 600; background: rgba(61, 64, 91, .05); padding: 13px 20px; width: 38%; color: var(--navy); }
.spec-table td { padding: 13px 20px; border-top: 1px solid var(--line); color: var(--ink-soft); }
.related { border-top: 1px solid var(--line); }

/* ---------- Reviews ---------- */
.reviews-section { margin-top: 70px; }
.reviews-section h2 { font-size: 1.7rem; margin-bottom: 26px; display: flex; align-items: center; gap: 12px; }
.reviews-header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 30px; margin-bottom: 30px;
}
.reviews-summary { display: flex; align-items: center; gap: 24px; }
.reviews-summary .big-star { font-family: var(--font-head); font-size: 3rem; font-weight: 700; color: var(--navy); }
.reviews-summary .big-stars { color: var(--yellow); font-size: 1.3rem; letter-spacing: -1px; }
.reviews-summary .count { color: var(--ink-soft); font-size: .92rem; margin-top: 4px; }
.review-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.review-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 26px 28px; box-shadow: var(--shadow-soft);
}
.review-card .rv-header { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 12px; flex-wrap: wrap; }
.review-card .rv-author { font-family: var(--font-head); font-weight: 700; color: var(--navy); }
.review-card .rv-date { font-size: .86rem; color: var(--ink-soft); }
.review-card .rv-title { font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.review-card .rv-body { color: var(--ink-soft); line-height: 1.65; }
.review-card .rv-stars { color: var(--yellow); letter-spacing: -1px; margin-bottom: 8px; }
.review-form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 32px; box-shadow: var(--shadow-soft);
}
.review-form-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.review-form-card .sub { color: var(--ink-soft); font-size: .96rem; margin-bottom: 24px; }
.star-rating-input { display: flex; flex-direction: row-reverse; gap: 6px; justify-content: flex-end; margin-bottom: 16px; }
.star-rating-input input { display: none; }
.star-rating-input label {
  font-size: 1.9rem; color: var(--line); cursor: pointer; line-height: 1;
  transition: color .2s ease;
}
.star-rating-input label:hover,
.star-rating-input label:hover ~ label,
.star-rating-input input:checked ~ label { color: var(--yellow); }
.review-form .field { margin-bottom: 18px; }
.review-form label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--navy); margin-bottom: 7px; }
.review-form input, .review-form textarea {
  width: 100%; padding: 13px 17px; border-radius: var(--radius-sm);
  border: 2px solid var(--line); background: var(--cream);
  font-family: var(--font-body); font-size: .98rem; color: var(--ink);
  transition: border-color .2s ease, background .2s ease;
}
.review-form input:focus, .review-form textarea:focus { outline: none; border-color: var(--coral); background: #fff; }
.review-form textarea { min-height: 110px; resize: vertical; }
.review-form .hint { font-size: .82rem; color: var(--ink-soft); margin-top: 10px; }
.review-success {
  display: none; background: #E8F4EF; border: 1.5px solid var(--mint);
  color: #1B6B4F; padding: 16px 20px; border-radius: var(--radius-sm);
  font-weight: 700; margin-bottom: 18px;
}

/* ---------- About ---------- */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cert-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.cert-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.cert-card .c-ico { width: 58px; height: 58px; margin: 0 auto 14px; border-radius: 16px; background: rgba(129, 178, 154, .13); display: grid; place-items: center; }
.cert-card h4 { font-size: 1.05rem; }
.cert-card p { font-size: .84rem; color: var(--ink-soft); margin-top: 5px; }

.timeline { position: relative; max-width: 720px; margin: 0 auto; }
.timeline::before {
  content: "";
  position: absolute;
  left: 23px; top: 8px; bottom: 8px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(var(--coral), var(--yellow));
}
.tl-item { position: relative; padding-left: 68px; margin-bottom: 34px; }
.tl-item .tl-dot {
  position: absolute;
  left: 10px; top: 4px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--coral);
  box-shadow: var(--shadow-soft);
}
.tl-item .tl-year { font-family: var(--font-head); font-weight: 600; color: var(--coral); font-size: 1.02rem; }
.tl-item h4 { font-size: 1.15rem; margin: 2px 0 4px; }
.tl-item p { color: var(--ink-soft); font-size: .96rem; }

/* ---------- Contact form ---------- */
.contact-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: start; }
.form-card { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow-soft); padding: 42px 38px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--navy); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 17px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--line);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: .98rem;
  color: var(--ink);
  transition: border-color .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--coral); background: #fff; }
.field textarea { min-height: 130px; resize: vertical; }
.info-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 30px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: var(--shadow-soft);
  margin-bottom: 20px;
}
.info-card .i-ico { width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; flex: none; }
.info-card h4 { font-size: 1.08rem; margin-bottom: 3px; }
.info-card p { color: var(--ink-soft); font-size: .94rem; }
.info-card a { color: var(--coral); font-weight: 700; }

/* ---------- IP notice ---------- */
.legal-body { max-width: 800px; margin: 0 auto; }
.legal-body h2 { font-size: 1.45rem; margin: 40px 0 14px; }
.legal-body p, .legal-body li { color: var(--ink-soft); margin-bottom: 12px; }
.legal-body ul { list-style: disc; padding-left: 24px; }
.legal-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 30px;
  margin: 26px 0;
}
.legal-card h4 { font-size: 1.1rem; margin-bottom: 8px; color: var(--navy); }
.legal-card p { margin-bottom: 0; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy); border-radius: var(--radius-lg); padding: 64px 50px; text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%; background: var(--coral); opacity: .13; top: -110px; right: -70px; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3.2vw, 2.5rem); margin-bottom: 14px; }
.cta-band p { opacity: .85; max-width: 560px; margin: 0 auto 30px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255, 255, 255, .78); padding: 72px 0 0; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 54px; }
.footer-grid h4 { color: #fff; font-size: 1.05rem; margin-bottom: 18px; }
.footer-grid .about-txt { font-size: .93rem; line-height: 1.8; margin-top: 16px; }
.footer-grid ul li { margin-bottom: 11px; }
.footer-grid ul a { font-size: .95rem; transition: color .2s ease; }
.footer-grid ul a:hover { color: var(--yellow); }
.footer-brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; color: #fff; }
.footer-brand img { height: 40px; width: auto; border-radius: 10px; }
.footer-brand b { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .10);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: .86rem;
}
.footer-bottom .legal-links { display: flex; gap: 24px; }
.footer-bottom a:hover { color: var(--yellow); }

/* ---------- Animations ---------- */
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(.8); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid, .value-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .pd-wrap { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .story-strip { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 520px; }
}
@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 82px;
    left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 10px 24px 24px;
    border-bottom: 1px solid var(--line);
    display: none;
    box-shadow: var(--shadow-pop);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 0; font-size: 1.1rem; }
  .nav-toggle { display: flex; }
  .prod-grid, .cat-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .hero { padding: 56px 0 70px; }
  .float-chip { display: none; }
  .stats-band { padding: 40px 24px; }
  .cta-band { padding: 46px 26px; }
  .reviews-header { flex-direction: column; align-items: flex-start; }
}
