/* =========================================================
   GadgetsofAmerica — Global Stylesheet
   Clean, professional, institutional review site
   Self-contained (no external fonts / assets)
   ========================================================= */

:root {
  /* Brand palette */
  --navy:      #14301f;
  --navy-2:    #1c4a30;
  --blue:      #2f7d4f;
  --blue-dark: #245f3c;
  --gold:      #f5a623;
  --gold-2:    #f7b733;
  --cta:       #1e8a4b;
  --cta-dark:  #156b39;
  --cta-2:     #197a41;

  /* Neutrals */
  --bg:        #f5faf4;
  --card:      #ffffff;
  --text:      #1f2a37;
  --muted:     #5b6b7d;
  --border:    #e1ecdc;
  --border-2:  #d3e8cd;
  --shadow-sm: 0 1px 2px rgba(20,48,31,.06), 0 1px 3px rgba(20,48,31,.08);
  --shadow-md: 0 4px 14px rgba(20,48,31,.08), 0 2px 6px rgba(20,48,31,.05);
  --shadow-lg: 0 18px 40px rgba(20,48,31,.12), 0 6px 14px rgba(20,48,31,.07);

  --radius:    14px;
  --radius-sm: 9px;
  --maxw:      1120px;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
          Arial, "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; 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;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--blue-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { color: var(--navy); line-height: 1.25; margin: 0 0 .5em; font-weight: 800; letter-spacing: -.01em; }
h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.3em; }
li { margin-bottom: .4em; }
hr { border: 0; border-top: 1px solid var(--border); margin: 2.4rem 0; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 20px; }
.container-narrow { max-width: 800px; }

/* ---------- Skip link (a11y) ---------- */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Top strip ---------- */
.topbar {
  background: var(--navy);
  color: #cbe8c6;
  font-size: .82rem;
  letter-spacing: .02em;
}
.topbar .container {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding-block: 8px; text-align: center;
}
.topbar svg { width: 15px; height: 15px; flex: none; }
.topbar strong { color: #fff; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding-block: 14px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand:hover { text-decoration: none; }
.brand__mark {
  width: 40px; height: 40px; flex: none;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
}
.brand__mark svg { width: 24px; height: 24px; }
.brand__name { font-weight: 800; color: var(--navy); font-size: 1.22rem; letter-spacing: -.02em; }
.brand__name span { color: var(--blue); }
.brand__tag { display: block; font-size: .68rem; font-weight: 600; letter-spacing: .13em;
  text-transform: uppercase; color: var(--muted); margin-top: -2px; }

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  display: inline-block; padding: 9px 13px; border-radius: 8px;
  color: var(--navy); font-weight: 600; font-size: .95rem;
}
.nav-links a:hover { background: #ebf6e7; text-decoration: none; }
.nav-links a.active { color: var(--blue-dark); }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--border-2);
  border-radius: 8px; width: 44px; height: 42px; cursor: pointer; color: var(--navy);
}
.nav-toggle svg { width: 22px; height: 22px; margin: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 1rem; line-height: 1;
  padding: 13px 22px; border-radius: 10px; border: 1px solid transparent;
  cursor: pointer; transition: transform .08s ease, box-shadow .15s ease, background .15s ease;
  text-align: center; white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-cta {
  background: linear-gradient(180deg, var(--cta), var(--cta-2));
  color: #fff; box-shadow: 0 6px 16px rgba(30,138,75,.28);
}
.btn-cta:hover { background: linear-gradient(180deg, #23a058, var(--cta-dark)); box-shadow: 0 8px 22px rgba(30,138,75,.34); color:#fff; }
.btn-cta svg { width: 18px; height: 18px; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 4px 12px rgba(47,125,79,.25); }
.btn-primary:hover { background: var(--blue-dark); color: #fff; }
.btn-ghost { background: #fff; color: var(--navy); border-color: var(--border-2); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue-dark); background: #f5faf3; }
.btn-lg { padding: 16px 30px; font-size: 1.08rem; }
.btn-block { width: 100%; }
.btn-nav { padding: 10px 18px; font-size: .95rem; }

/* ---------- Stars ---------- */
.stars {
  --size: 1.15rem;
  position: relative; display: inline-block;
  font-size: var(--size); line-height: 1;
  color: #d7e8d2; letter-spacing: 2px;
  font-family: Arial, sans-serif; /* consistent star glyph metrics */
}
.stars::before { content: "\2605\2605\2605\2605\2605"; }
.stars__fill {
  position: absolute; top: 0; left: 0; overflow: hidden; white-space: nowrap;
  color: var(--gold); letter-spacing: 2px;
}
.stars__fill::before { content: "\2605\2605\2605\2605\2605"; }
.rating-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.rating-score { font-weight: 800; color: var(--navy); font-size: 1.05rem; }
.rating-score small { font-weight: 600; color: var(--muted); font-size: .8rem; }

/* ---------- Badges ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .74rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
}
.badge svg { width: 13px; height: 13px; }
.badge-gold  { background: #fff5e2; color: #b06a00; border: 1px solid #f4d69b; }
.badge-blue  { background: #e2f2de; color: var(--blue-dark); border: 1px solid #c8e9c3; }
.badge-green { background: #e7f7ee; color: #157a3a; border: 1px solid #bfe8cf; }
.badge-gray  { background: #eef2f7; color: var(--muted); border: 1px solid var(--border); }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1200px 400px at 80% -10%, rgba(47,125,79,.18), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 55%, #2f6b3f 100%);
  color: #e8f3e5;
  padding: 58px 0 68px;
  position: relative; overflow: hidden;
}
.hero h1 { color: #fff; margin-bottom: .4em; }
.hero p.lead { font-size: 1.16rem; color: #c3e6c2; max-width: 640px; margin-bottom: 1.6em; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  color: #d5eed2; font-weight: 700; font-size: .82rem; letter-spacing: .03em;
  padding: 7px 14px; border-radius: 999px; margin-bottom: 20px;
}
.hero__eyebrow svg { width: 15px; height: 15px; color: var(--gold-2); }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero__trust { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 34px; }
.hero__trust .item { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: #c3e6c2; }
.hero__trust svg { width: 20px; height: 20px; color: var(--gold-2); flex: none; }

/* ---------- Trust bar ---------- */
.trustbar { background: #fff; border-bottom: 1px solid var(--border); }
.trustbar .container {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding-block: 22px;
}
.trustbar .item { display: flex; align-items: center; gap: 12px; }
.trustbar .item svg { width: 30px; height: 30px; color: var(--blue); flex: none; }
.trustbar .item strong { display: block; color: var(--navy); font-size: .96rem; }
.trustbar .item span { font-size: .82rem; color: var(--muted); }

/* ---------- Sections ---------- */
.section { padding: 56px 0; }
.section-head { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.section-head .eyebrow {
  display: inline-block; color: var(--blue); font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; font-size: .8rem; margin-bottom: 10px;
}
.section-head p { color: var(--muted); font-size: 1.05rem; margin-bottom: 0; }

/* ---------- Product cards ---------- */
.product-list { display: flex; flex-direction: column; gap: 30px; }
.product {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-md);
  overflow: hidden; position: relative;
  transition: box-shadow .2s ease, transform .2s ease;
}
.product:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.product.is-top { border-color: #f0d59a; box-shadow: 0 0 0 1px #f0d59a, var(--shadow-lg); }

.product__ribbon {
  position: absolute; top: 0; left: 0; z-index: 3;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #4a3000; font-weight: 800; font-size: .78rem; letter-spacing: .04em;
  padding: 7px 16px 7px 14px; border-bottom-right-radius: 12px;
  display: inline-flex; align-items: center; gap: 6px; text-transform: uppercase;
}
.product__ribbon svg { width: 14px; height: 14px; }

.product__grid { display: grid; grid-template-columns: 260px 1fr 220px; gap: 0; }

.product__media {
  padding: 40px 24px 24px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
  background: linear-gradient(180deg, #f5faf3, #eaf6e6);
  border-right: 1px solid var(--border);
}
.product__rank {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy); color: #fff; font-weight: 800; font-size: 1.1rem;
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
}
.product__illus {
  width: 200px; height: 200px; display: grid; place-items: center;
}
.product__illus svg { width: 100%; height: 100%; }
.product__illus img {
  width: 100%; height: 100%; object-fit: contain;
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  box-shadow: 0 10px 22px rgba(20,48,31,.12);
}

.product__body { padding: 30px 26px; min-width: 0; }
.product__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.product__title { font-size: 1.42rem; margin-bottom: 4px; }
.product__title a { color: var(--navy); }
.product__title a:hover { color: var(--blue-dark); }
.product__sub { color: var(--muted); font-size: .92rem; margin-bottom: 14px; font-weight: 600; }
.product__desc { color: #38434f; margin-bottom: 16px; }
.product__features { list-style: none; padding: 0; margin: 0 0 4px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 18px; }
.product__features li { display: flex; align-items: flex-start; gap: 8px; font-size: .93rem; color: #37424e; margin: 0; }
.product__features svg { width: 17px; height: 17px; color: var(--cta); flex: none; margin-top: 3px; }

.product__aside {
  padding: 30px 26px; display: flex; flex-direction: column; gap: 14px;
  align-items: center; text-align: center; justify-content: center;
  background: #fbfefa; border-left: 1px solid var(--border);
}
.product__score-big { font-size: 2.6rem; font-weight: 800; color: var(--navy); line-height: 1; }
.product__score-big small { font-size: .95rem; color: var(--muted); font-weight: 700; }
.product__score-label { font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 700; margin-top: -6px; }
.product__aside .stars { --size: 1.25rem; }
.product__bestfor { font-size: .84rem; color: var(--muted); }
.product__bestfor strong { color: var(--navy); display: block; }
.product__note { font-size: .74rem; color: var(--muted); }

/* ---------- Methodology / info blocks ---------- */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.info-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
}
.info-card .ic {
  width: 48px; height: 48px; border-radius: 11px; display: grid; place-items: center;
  background: #e2f2de; color: var(--blue); margin-bottom: 14px;
}
.info-card .ic svg { width: 26px; height: 26px; }
.info-card h3 { margin-bottom: 8px; }
.info-card p { color: var(--muted); font-size: .96rem; margin: 0; }

/* ---------- Comparison table ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
table.compare { width: 100%; border-collapse: collapse; background: #fff; min-width: 640px; }
table.compare th, table.compare td { padding: 15px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: .95rem; }
table.compare thead th { background: var(--navy); color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; }
table.compare tbody tr:last-child td { border-bottom: 0; }
table.compare tbody tr:hover { background: #f5faf3; }
table.compare .rank-cell { font-weight: 800; color: var(--gold); }
table.compare .name-cell { font-weight: 700; color: var(--navy); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(160deg, var(--navy), #2f6b3f);
  color: #fff; border-radius: var(--radius); padding: 44px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; margin-bottom: 6px; }
.cta-band p { color: #c3e6c2; margin: 0; max-width: 520px; }

/* ---------- Disclosure inline box ---------- */
.disclosure-box {
  background: #fff8ec; border: 1px solid #f2dcae; border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm); padding: 16px 20px; font-size: .9rem; color: #6a5320;
  display: flex; gap: 12px; align-items: flex-start;
}
.disclosure-box svg { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: 2px; }
.disclosure-box strong { color: #7a5b12; }

/* ---------- Legal / content pages ---------- */
.page-header {
  background: linear-gradient(160deg, var(--navy), var(--navy-2));
  color: #e8f3e5; padding: 46px 0 40px;
}
.page-header h1 { color: #fff; margin: 0 0 8px; }
.page-header p { color: #c3e6c2; margin: 0; font-size: 1.05rem; }
.breadcrumbs { font-size: .85rem; color: #9ecf9a; margin-bottom: 16px; }
.breadcrumbs a { color: #c3e6c2; }
.breadcrumbs span { margin: 0 6px; opacity: .6; }

.prose { background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 40px clamp(22px, 4vw, 48px); box-shadow: var(--shadow-sm); margin: -30px auto 0; position: relative; }
.prose h2 { margin-top: 1.8em; font-size: 1.5rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.4em; }
.prose .updated { font-size: .88rem; color: var(--muted); margin-bottom: 1.6em; }
.prose ul li::marker { color: var(--blue); }
.prose a { text-decoration: underline; }
.prose .contact-block {
  background: #f5faf3; border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 20px 24px; margin: 1.4em 0;
}
.prose .contact-block p { margin: 0; }

/* ---------- Forms ---------- */
.form-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; color: var(--navy); font-size: .92rem; margin-bottom: 7px; }
.field .req { color: #c0392b; }
.field input[type="text"], .field input[type="email"], .field input[type="tel"], .field textarea, .field select {
  width: 100%; padding: 13px 14px; border: 1px solid var(--border-2); border-radius: 10px;
  font-size: 1rem; font-family: inherit; color: var(--text); background: #fff; transition: border .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(47,125,79,.15);
}
.field textarea { min-height: 130px; resize: vertical; }
.hint { font-size: .82rem; color: var(--muted); margin-top: 6px; }

.consent { display: block; margin-bottom: 14px; }
.consent label {
  display: flex; gap: 12px; align-items: flex-start; font-size: .9rem; color: #3a4653;
  line-height: 1.55; cursor: pointer;
}
.consent input[type="checkbox"] {
  width: 20px; height: 20px; flex: none; margin-top: 2px; accent-color: var(--blue); cursor: pointer;
}
.consent a { text-decoration: underline; }
.consent-block {
  background: #f5faf3; border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 20px 22px; margin: 22px 0;
}

.form-note {
  font-size: .82rem; color: var(--muted); margin-top: 14px; line-height: 1.55;
}
.form-success {
  display: none; background: #e7f7ee; border: 1px solid #bfe8cf; color: #157a3a;
  border-radius: var(--radius-sm); padding: 16px 20px; margin-bottom: 20px; font-weight: 600;
}
.form-success.show { display: block; }
.field-error { color: #c0392b; font-size: .82rem; margin-top: 6px; display: none; }
.field.invalid .field-error { display: block; }
.field.invalid input, .field.invalid textarea { border-color: #e0b4ad; box-shadow: 0 0 0 3px rgba(192,57,43,.1); }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm);
  margin-bottom: 14px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 20px 22px; font-size: 1.05rem; font-weight: 700; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q:hover { background: #f5faf3; }
.faq-q .chev { width: 22px; height: 22px; flex: none; color: var(--blue); transition: transform .2s; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a__inner { padding: 0 22px 20px; color: var(--muted); }
.faq-item.open .faq-a { max-height: 500px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #b3dfae; margin-top: 60px; }
.footer-top { padding: 50px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.3fr; gap: 34px; }
.footer-grid h4 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 9px; }
.footer-grid a { color: #b3dfae; font-size: .94rem; }
.footer-grid a:hover { color: #fff; }
.footer-brand .brand__name { color: #fff; }
.footer-brand .brand__name span { color: var(--gold-2); }
.footer-about { font-size: .92rem; color: #8ac384; margin: 16px 0; max-width: 320px; }
.footer-imprint { font-size: .86rem; color: #8ac384; line-height: 1.7; }
.footer-imprint strong { color: #d5eed1; }

.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0;
  font-size: .82rem; color: #8ac384; line-height: 1.7;
}
.footer-disclaimer strong { color: #cbe8c6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: .84rem; color: #8ac384;
}
.footer-bottom a { color: #b3dfae; }
.footer-legal-links { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--muted); }
.small { font-size: .88rem; }
.divider-soft { height: 1px; background: var(--border); margin: 40px 0; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .product__grid { grid-template-columns: 1fr; }
  .product__media { border-right: 0; border-bottom: 1px solid var(--border); flex-direction: row; justify-content: flex-start; padding: 30px 24px; }
  .product__illus { width: 160px; height: 160px; }
  .product__aside { border-left: 0; border-top: 1px solid var(--border); }
  .trustbar .container { grid-template-columns: 1fr 1fr; gap: 18px; }
  .info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-toggle { display: grid; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md);
    padding: 12px; display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; }
  .nav-links .btn-nav { margin-top: 6px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 30px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .product__media { flex-direction: column; }
}
@media (max-width: 460px) {
  .trustbar .container { grid-template-columns: 1fr; }
  .hero__trust { gap: 14px; }
}

/* ---------- Print / reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}

/* =========================================================
   Enhancements: reveal, back-to-top, mobile CTA, cookie
   consent, product jump-nav, review meta
   ========================================================= */

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; transition: none !important; } }

/* Product jump navigation (chips) */
.pick-nav { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 0 auto 32px; max-width: 860px; }
.pick-nav a {
  display: inline-flex; align-items: center; gap: 7px; background: #fff; border: 1px solid var(--border);
  border-radius: 999px; padding: 8px 15px; font-size: .86rem; font-weight: 700; color: var(--navy);
  box-shadow: var(--shadow-sm); transition: border-color .15s, color .15s, transform .08s;
}
.pick-nav a:hover { border-color: var(--blue); color: var(--blue-dark); text-decoration: none; transform: translateY(-1px); }
.pick-nav a b { color: var(--gold); font-weight: 800; }

/* Review meta / updated flag */
.review-meta { text-align: center; margin: -14px auto 30px; font-size: .84rem; color: var(--muted); display: flex; gap: 8px; align-items: center; justify-content: center; }
.review-meta svg { width: 16px; height: 16px; color: var(--cta); }

/* "Read full review" link on cards */
.product__readmore { font-size: .84rem; font-weight: 700; color: var(--blue-dark); display: inline-flex; align-items: center; gap: 5px; }
.product__readmore svg { width: 15px; height: 15px; }

/* Back-to-top button */
.to-top {
  position: fixed; right: 18px; bottom: 18px; width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy); color: #fff; border: 0; display: grid; place-items: center; cursor: pointer;
  box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .2s, transform .2s, visibility .2s, background .15s; z-index: 90;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--blue-dark); }
.to-top svg { width: 22px; height: 22px; }

/* Sticky mobile CTA bar (index) */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; display: none; align-items: center; gap: 12px;
  padding: 10px 14px; background: rgba(255,255,255,.97); backdrop-filter: saturate(180%) blur(8px);
  border-top: 1px solid var(--border); box-shadow: 0 -4px 16px rgba(20,48,31,.10);
}
.mobile-cta.show { display: flex; }
.mobile-cta__info { display: flex; flex-direction: column; line-height: 1.18; min-width: 0; }
.mobile-cta__info strong { color: var(--navy); font-size: .92rem; }
.mobile-cta__info span { color: var(--muted); font-size: .74rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mobile-cta .btn { flex: none; padding: 12px 18px; margin-left: auto; }
@media (min-width: 721px) { .mobile-cta.show { display: none; } }
@media (max-width: 720px) { body.has-mobile-cta { padding-bottom: 72px; } .to-top { bottom: 84px; } }

/* Cookie consent banner */
.cookie-consent {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 120; background: var(--navy); color: #dcecd7;
  padding: 16px 18px; box-shadow: 0 -6px 24px rgba(0,0,0,.22); transform: translateY(115%); transition: transform .35s ease;
}
.cookie-consent.show { transform: none; }
.cookie-consent__inner { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: space-between; }
.cookie-consent p { margin: 0; font-size: .88rem; max-width: 780px; line-height: 1.55; }
.cookie-consent a { color: #fff; text-decoration: underline; }
.cookie-consent__btns { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-consent .btn { padding: 10px 20px; font-size: .9rem; }
.cookie-consent .btn-ghost { background: transparent; color: #cbe8c6; border-color: rgba(255,255,255,.35); }
.cookie-consent .btn-ghost:hover { background: rgba(255,255,255,.08); color: #fff; border-color: #fff; }
