/* ============================================================
   REVIEW HUP — Design System
   Orange + White · Premium · Mobile-First
   ============================================================ */

:root {
  --orange: #f97316;
  --orange-600: #ea580c;
  --orange-700: #c2410c;
  --orange-50: #fff7ed;
  --orange-100: #ffedd5;
  --ink: #0f172a;
  --body: #475569;
  --muted: #94a3b8;
  --soft: #f8fafc;
  --line: #e2e8f0;
  --white: #ffffff;
  --green: #16a34a;
  --red: #dc2626;
  --amber: #d97706;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 4px 12px -4px rgba(15, 23, 42, .08);
  --shadow: 0 4px 10px -2px rgba(15, 23, 42, .08), 0 18px 40px -18px rgba(15, 23, 42, .18);
  --shadow-lg: 0 24px 60px -24px rgba(15, 23, 42, .25);
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --header-h: 74px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--body);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

.ic { width: 1.15em; height: 1.15em; fill: currentColor; flex-shrink: 0; }
svg.ic use { pointer-events: none; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.hidden { display: none !important; }
.muted { color: var(--muted); }
.center { text-align: center; }
.link { color: var(--orange); font-weight: 600; }

::selection { background: var(--orange); color: #fff; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .06em;
  line-height: 1.2;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn .ic { width: 1.05em; height: 1.05em; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 10px 24px -10px rgba(249, 115, 22, .55); }
.btn-primary:hover { background: var(--orange-600); box-shadow: 0 14px 28px -12px rgba(249, 115, 22, .7); }

.btn-outline { border-color: var(--line); color: var(--ink); background: #fff; }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

.btn-ghost { color: var(--body); }
.btn-ghost:hover { color: var(--orange); background: var(--orange-50); }

.btn-light { background: #fff; color: var(--orange-600); }
.btn-light:hover { background: var(--orange-50); color: var(--orange-700); }

.btn-lg { padding: 16px 30px; font-size: .9rem; }
.btn-sm { padding: 8px 16px; font-size: .72rem; }
.btn-block { width: 100%; }

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 8px 30px -18px rgba(15, 23, 42, .25); }

.header-inner { display: flex; align-items: center; gap: 24px; height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-logo {
  height: 40px; width: auto;
  border-radius: 10px;
  object-fit: contain;
}
.brand-mark {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), #fb923c);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 8px 18px -8px rgba(249, 115, 22, .7);
}
.brand-mark .ic { width: 22px; height: 22px; }
.brand-text {
  font-weight: 900; font-size: 1.25rem; letter-spacing: .02em; color: var(--ink);
  display: inline-flex; align-items: center; gap: 2px;
}
.brand-text em { font-style: normal; color: var(--orange); }

.brand-light .brand-text { color: #fff; }
.brand-light .brand-text em { color: var(--orange); }

.site-nav { display: flex; align-items: center; gap: 18px; margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 9px 13px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--body);
  border-radius: 999px;
  transition: color .18s ease, background .18s ease;
}
.nav-link:hover { color: var(--orange); background: var(--orange-50); }
.nav-link.active { color: var(--orange); background: var(--orange-100); }

.nav-cta { display: none; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-cta { display: none; }

/* Language switch */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
}
.lang-link {
  padding: 6px 12px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--muted);
  border-radius: 999px;
  line-height: 1;
  transition: color .18s ease, background .18s ease;
  text-decoration: none;
}
.lang-link:hover { color: var(--orange); }
.lang-link.active { color: #fff; background: var(--orange); }
.lang-link.lang-ar { font-family: 'Cairo', 'Inter', sans-serif; font-weight: 700; letter-spacing: 0; }
.lang-sep { width: 1px; height: 16px; background: var(--line); }


/* Search */
.search-box { position: relative; }
.search-ic { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); width: 18px; height: 18px; }
.search-input {
  width: 190px;
  padding: 10px 14px 10px 40px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  font-size: .86rem;
  color: var(--ink);
  outline: none;
  transition: border-color .18s ease, width .25s ease, box-shadow .18s ease;
}
.search-input:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(249, 115, 22, .12); width: 260px; background: #fff; }
.search-input::placeholder { color: var(--muted); }

.search-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 360px;
  max-width: 90vw;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 120;
}
.search-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }

.search-result { display: flex; align-items: center; gap: 12px; padding: 12px 14px; transition: background .15s ease; }
.search-result:hover { background: var(--orange-50); }
.search-result img { width: 52px; height: 40px; object-fit: cover; border-radius: 8px; }
.sr-info { min-width: 0; flex: 1; }
.sr-name { font-weight: 700; color: var(--ink); font-size: .9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sr-meta { font-size: .74rem; color: var(--muted); }
.sr-score { font-weight: 800; color: var(--orange); font-size: .85rem; }
.search-empty { padding: 18px; text-align: center; color: var(--muted); font-size: .86rem; }

/* Hamburger */
.nav-toggle {
  display: inline-flex;
  width: 44px; height: 44px;
  border-radius: 12px;
  align-items: center; justify-content: center;
  color: var(--ink);
  border: 1.5px solid var(--line);
  transition: color .18s ease, background .18s ease;
}
.nav-toggle .ic { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle.open .icon-open { display: none; }
.nav-toggle.open .icon-close { display: block; color: var(--orange); }

/* ============ Hero ============ */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, var(--orange-50) 100%);
  padding: 84px 0 100px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; }
.blob-1 { width: 420px; height: 420px; background: #fed7aa; top: -140px; right: -80px; }
.blob-2 { width: 360px; height: 360px; background: #ffedd5; bottom: -140px; left: -100px; }
.hero-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(249, 115, 22, .14) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .5;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  border: 1px solid var(--orange-100);
  color: var(--orange-600);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .14em;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.hero-eyebrow .ic { color: var(--orange); }

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 22px 0 18px;
}
.hero-title span { color: var(--orange); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--body);
  max-width: 540px;
  margin-bottom: 30px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 18px; }
.trust-item { display: inline-flex; align-items: center; gap: 7px; font-size: .84rem; font-weight: 600; color: var(--body); }
.trust-item .ic { color: var(--orange); width: 18px; height: 18px; }

.hero-visual { position: relative; height: 380px; display: none; }
@media (min-width: 992px) { .hero-visual { display: block; } }

.hero-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 360px; height: 360px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--orange), #fdba74, var(--orange));
  opacity: .12;
  animation: spin 22s linear infinite;
}
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.hero-card {
  position: absolute;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--orange-100);
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
  animation: floaty 6s ease-in-out infinite;
}
.hero-card-1 { top: 20px; left: 0; width: 250px; }
.hero-card-2 { bottom: 60px; right: 0; width: 250px; animation-delay: -2s; }
.hero-card-3 { bottom: 0; left: 60px; width: 230px; animation-delay: -4s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-card-top { display: flex; align-items: center; justify-content: space-between; }
.hc-label { font-size: .68rem; font-weight: 700; letter-spacing: .1em; color: var(--muted); }
.hc-score { font-size: 1.6rem; font-weight: 900; color: var(--orange); }
.hc-badge { color: var(--green); }
.hc-badge .ic { width: 22px; height: 22px; }
.hc-count { font-size: 1.4rem; font-weight: 900; color: var(--ink); }
.hc-product { font-weight: 800; color: var(--ink); font-size: .95rem; }
.hc-brand { font-size: .78rem; color: var(--muted); }
.stars { display: inline-flex; gap: 2px; color: var(--orange); }
.stars .ic { width: 18px; height: 18px; }
.stars-sm .ic { width: 14px; height: 14px; }
.stars-lg .ic { width: 26px; height: 26px; }
.hc-avatars { display: flex; }
.hc-avatars .avatar { margin-right: -8px; }

.avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #fb923c);
  color: #fff;
  font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .9rem;
  border: 2px solid #fff;
  box-shadow: var(--shadow-sm);
}
.avatar-lg { width: 48px; height: 48px; font-size: 1.1rem; }

/* ============ Stats bar ============ */
.stats-bar { background: var(--ink); position: relative; overflow: hidden; }
.stats-bar::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(249, 115, 22, .25) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: .4;
}
.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  padding: 46px 20px;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px; }
.stat-num { font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 900; color: #fff; line-height: 1; }
.stat-plus { font-size: 1.6rem; font-weight: 900; color: var(--orange); margin-left: 2px; }
.stat-label { font-size: .72rem; font-weight: 700; letter-spacing: .14em; color: var(--muted); }

/* ============ Sections ============ */
.section { padding: 72px 0; }
.section-alt { background: var(--soft); }
.section-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 36px;
}
@media (min-width: 768px) {
  .section-head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.section-kicker {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--orange);
  display: block;
  margin-bottom: 8px;
}
.kicker-light { color: #fdba74; }
.section-title {
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -.01em;
  color: var(--ink);
  line-height: 1.15;
}
.section-title span { color: var(--orange); }
.section-sub { color: var(--muted); font-size: .95rem; max-width: 460px; }
.section-link { flex-shrink: 0; }

/* ============ Category cards ============ */
.cats-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 600px) { .cats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cats-grid { grid-template-columns: repeat(4, 1fr); } }

.cat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.cat-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), #fdba74);
  opacity: 0;
  transition: opacity .25s ease;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--orange-100); }
.cat-card:hover::after { opacity: 1; }

.cat-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--orange-50);
  color: var(--cat-color, var(--orange));
  margin-bottom: 8px;
  transition: transform .25s ease, background .25s ease;
}
.cat-icon .ic { width: 28px; height: 28px; }
.cat-card:hover .cat-icon { transform: scale(1.08) rotate(-4deg); background: var(--cat-color, var(--orange)); color: #fff; }

.cat-card h3 { font-size: 1.02rem; font-weight: 900; color: var(--ink); letter-spacing: .03em; }
.cat-card p { font-size: .86rem; color: var(--muted); }
.cat-count {
  font-size: .74rem;
  font-weight: 700;
  color: var(--orange-600);
  background: var(--orange-50);
  padding: 5px 12px;
  border-radius: 999px;
  align-self: flex-start;
  margin-top: 6px;
}
.cat-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .78rem; font-weight: 800; letter-spacing: .06em;
  color: var(--ink);
  margin-top: 8px;
  transition: color .2s ease, gap .2s ease;
}
.cat-link .ic { width: 16px; height: 16px; }
.cat-card:hover .cat-link { color: var(--orange); gap: 10px; }

/* ============ Review cards ============ */
.cards-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .28s cubic-bezier(.4, 0, .2, 1), box-shadow .28s ease, border-color .28s ease;
}
.review-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--orange-100); }

.card-media { position: relative; display: block; overflow: hidden; aspect-ratio: 4/3; background: var(--soft); }
.card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}
.review-card:hover .card-media img { transform: scale(1.07); }

.card-badges { position: absolute; top: 14px; left: 14px; display: flex; flex-direction: column; gap: 8px; align-items: flex-start; z-index: 3; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.badge .ic { width: 13px; height: 13px; }
.badge-verified { background: var(--green); }
.badge-editors { background: var(--ink); }
.badge-abs { position: absolute; top: 14px; right: 14px; }

.card-cat {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(15, 23, 42, .82);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 3;
}

.card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }

.card-meta { display: flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 700; color: var(--muted); letter-spacing: .03em; }
.card-brand { color: var(--orange); }
.dot { width: 4px; height: 4px; border-radius: 50%; background: var(--line); }

.card-title { font-size: 1.05rem; font-weight: 800; color: var(--ink); line-height: 1.3; }
.card-title a { transition: color .18s ease; }
.card-title a:hover { color: var(--orange); }

.card-rating { display: flex; align-items: center; gap: 8px; }
.card-rating .score { font-weight: 800; color: var(--ink); font-size: .9rem; }

.card-desc { font-size: .86rem; color: var(--body); line-height: 1.55; }

.card-subratings { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; margin-top: 2px; }
.sub-chip {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 5px 10px;
  font-size: .68rem;
}
.sub-name { color: var(--muted); font-weight: 600; }
.sub-value { color: var(--ink); font-weight: 800; }

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
  margin-top: auto;
  border-top: 1px solid var(--line);
}
.reviewer { display: flex; align-items: center; gap: 10px; min-width: 0; }
.reviewer-info { display: flex; flex-direction: column; line-height: 1.25; }
.reviewer-name { font-weight: 700; color: var(--ink); font-size: .82rem; }
.reviewer-date { font-size: .72rem; color: var(--muted); display: inline-flex; align-items: center; gap: 4px; }
.reviewer-date .ic { width: 12px; height: 12px; }
.card-cta { flex-shrink: 0; }
.card-cta .ic { width: 14px; height: 14px; }

/* ============ Top rated ============ */
.top-rated-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .top-rated-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .top-rated-grid { grid-template-columns: repeat(3, 1fr); } }

.top-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  position: relative;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.top-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--orange-100); }
.top-card img { width: 84px; height: 64px; object-fit: cover; border-radius: 10px; }
.top-rank {
  position: absolute;
  top: 8px; left: 8px;
  background: var(--ink);
  color: #fff;
  font-size: .6rem;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 8px;
  z-index: 2;
}
.top-card img { margin-left: 8px; }
.top-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.top-brand { font-size: .7rem; font-weight: 700; color: var(--orange); letter-spacing: .04em; }
.top-name { font-weight: 800; color: var(--ink); font-size: .94rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.top-score { position: absolute; top: 10px; right: 12px; font-weight: 900; color: var(--orange); font-size: .85rem; }

/* ============ Brands ============ */
.brands-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 640px) { .brands-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .brands-grid { grid-template-columns: repeat(4, 1fr); } }

.brand-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.brand-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--orange); }
.brand-initial {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--orange-50);
  color: var(--orange-600);
  font-weight: 900;
  font-size: 1.2rem;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand-name { font-weight: 800; color: var(--ink); font-size: .92rem; }
.brand-count { font-size: .74rem; color: var(--muted); display: block; }

/* ============ CTA strip ============ */
.cta-strip {
  background: linear-gradient(120deg, var(--orange-600), var(--orange));
  position: relative;
  overflow: hidden;
  padding: 64px 0;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .18) 1px, transparent 1px);
  background-size: 22px 22px;
}
.cta-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
@media (min-width: 768px) { .cta-inner { flex-direction: row; align-items: center; justify-content: space-between; } }
.cta-copy h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 900; margin-bottom: 8px; }
.cta-copy p { color: #ffedd5; max-width: 520px; font-size: .95rem; }
.cta-inner .btn { flex-shrink: 0; }

/* ============ Footer ============ */
.site-footer { background: var(--ink); color: #cbd5e1; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 60px 20px 40px;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }

.footer-about p { font-size: .88rem; margin-top: 16px; line-height: 1.65; color: #94a3b8; max-width: 320px; }
.footer-col h4 {
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a { font-size: .9rem; color: #94a3b8; transition: color .18s ease, padding-left .18s ease; }
.footer-col ul a:hover { color: var(--orange); padding-left: 4px; }
.footer-note p { font-size: .86rem; color: #94a3b8; margin-bottom: 18px; line-height: 1.6; }

.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-links a {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  color: #cbd5e1;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.social-links a:hover { background: var(--orange); color: #fff; transform: translateY(-3px); }
.social-links .ic { width: 18px; height: 18px; }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .08); padding: 18px 0; }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.footer-bottom p { font-size: .78rem; color: #64748b; }
.admin-link { color: #64748b; font-size: .74rem; }
.admin-link:hover { color: var(--orange); }

.footer-credit {
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: rgba(2, 6, 23, .5);
  padding: 18px 0;
  text-align: center;
  font-size: .78rem;
  color: #94a3b8;
  letter-spacing: .03em;
}
.credit-brand { color: var(--orange); font-weight: 800; }
.credit-brand:hover { text-decoration: underline; }

/* ============ Age popup ============ */
.age-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(2, 6, 23, .72);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.age-overlay.show { opacity: 1; visibility: visible; }

.age-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  max-width: 430px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(.96);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}
.age-overlay.show .age-modal { transform: translateY(0) scale(1); }

.age-icon {
  width: 72px; height: 72px;
  margin: 0 auto 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--orange), #fb923c);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 16px 32px -14px rgba(249, 115, 22, .7);
}
.age-icon .ic { width: 34px; height: 34px; }
.age-modal h2 { font-size: 1.4rem; font-weight: 900; color: var(--ink); margin-bottom: 10px; letter-spacing: .02em; }
.age-modal h2 span { color: var(--orange); }
.age-modal p { font-size: .9rem; color: var(--body); margin-bottom: 22px; }
.age-actions { display: flex; flex-direction: column; gap: 10px; }
.age-hint { font-size: .74rem !important; color: var(--muted) !important; margin: 16px 0 0 !important; }

/* ============ Page hero / breadcrumbs ============ */
.page-hero {
  background: linear-gradient(180deg, #fff 0%, var(--orange-50) 100%);
  border-bottom: 1px solid var(--line);
  padding: 44px 0 52px;
}
.breadcrumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; font-size: .74rem; font-weight: 700; color: var(--muted); margin-bottom: 20px; }
.breadcrumbs a:hover { color: var(--orange); }
.breadcrumbs .ic { width: 14px; height: 14px; color: var(--muted); }
.breadcrumbs span:last-child { color: var(--ink); }

.page-title { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; color: var(--ink); letter-spacing: -.01em; }
.page-title span { color: var(--orange); }
.page-sub { color: var(--muted); margin-top: 8px; font-size: 1.02rem; }

/* ============ Filter bar ============ */
.filter-bar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: var(--header-h);
  z-index: 50;
}
.filter-form { padding: 18px 0 14px; }
.filter-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 768px) {
  .filter-row { grid-template-columns: repeat(6, 1fr); align-items: end; }
  .filter-row .field-search { grid-column: span 1; }
}
@media (min-width: 1024px) {
  .filter-row .filter-field:nth-child(1) { grid-column: span 2; }
}
.filter-field { display: flex; flex-direction: column; gap: 6px; position: relative; }
.filter-field label { font-size: .66rem; font-weight: 800; letter-spacing: .1em; color: var(--muted); }
.filter-field select, .filter-field input {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  font-size: .84rem;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.filter-field select:focus, .filter-field input:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(249, 115, 22, .1); }
.filter-field.field-search .ic { position: absolute; left: 12px; top: 33px; color: var(--muted); width: 17px; height: 17px; }
.filter-field.field-search input { padding-left: 36px; }
.filter-row .btn { grid-column: span 2; }
@media (min-width: 768px) { .filter-row .btn { grid-column: auto; } }

.filter-active {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.results-count { font-size: .8rem; font-weight: 700; color: var(--ink); }
.active-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--orange-50);
  color: var(--orange-700);
  font-size: .74rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid var(--orange-100);
}
.chip a { color: var(--orange); font-size: .95rem; line-height: 1; }

/* ============ Load more / empty ============ */
.load-more-wrap { text-align: center; margin-top: 36px; }
.load-more.loading { opacity: .6; pointer-events: none; }

.empty-state {
  text-align: center;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1.5px dashed var(--line);
  border-radius: var(--radius-lg);
}
.empty-state .ic { width: 42px; height: 42px; color: var(--muted); }
.empty-state h3 { font-size: 1.2rem; font-weight: 800; color: var(--ink); }
.empty-state p { color: var(--muted); font-size: .9rem; max-width: 380px; }
.big-404 { font-size: 5rem; font-weight: 900; color: var(--orange-100); line-height: 1; }

/* ============ Review page ============ */
.review-hero { background: linear-gradient(180deg, #fff 0%, var(--orange-50) 100%); border-bottom: 1px solid var(--line); padding: 36px 0 52px; }

.review-head { display: grid; grid-template-columns: 1fr; gap: 34px; margin-top: 8px; }
@media (min-width: 992px) { .review-head { grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; } }

.gallery-main { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--soft); box-shadow: var(--shadow); }
.gallery-main img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; overflow-x: auto; padding-bottom: 4px; }
.thumb {
  width: 84px; height: 64px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--line);
  padding: 0;
  flex-shrink: 0;
  transition: border-color .18s ease, transform .18s ease;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.active { border-color: var(--orange); transform: scale(1.04); }
.thumb:hover { border-color: var(--orange); }

.review-info { display: flex; flex-direction: column; gap: 14px; }
.review-badges-row { display: flex; flex-wrap: wrap; gap: 8px; }
.review-name { font-size: clamp(1.7rem, 3.4vw, 2.3rem); font-weight: 900; color: var(--ink); line-height: 1.15; letter-spacing: -.01em; }
.review-meta-line { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; font-size: .86rem; font-weight: 700; }
.meta-brand { color: var(--orange); }
.meta-cat { color: var(--muted); }
.review-title { font-size: 1.08rem; font-weight: 600; color: var(--body); font-style: italic; }

.review-rating-summary { display: flex; align-items: center; gap: 20px; background: #fff; border: 1px solid var(--orange-100); border-radius: var(--radius); padding: 18px 22px; box-shadow: var(--shadow-sm); }
.big-rating { display: flex; align-items: baseline; }
.big-score { font-size: 2.6rem; font-weight: 900; color: var(--orange); line-height: 1; }
.big-total { font-size: 1.1rem; font-weight: 700; color: var(--muted); margin-left: 2px; }
.big-stars-block { display: flex; flex-direction: column; gap: 6px; }
.rating-meta { font-size: .76rem; color: var(--muted); }

.sub-ratings { display: flex; flex-direction: column; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 22px; }
.sub-rating { display: flex; align-items: center; gap: 12px; }
.sr-label { width: 130px; font-size: .8rem; font-weight: 700; color: var(--body); }
.sr-bar { flex: 1; height: 8px; background: var(--line); border-radius: 999px; overflow: hidden; }
.sr-fill { height: 100%; background: linear-gradient(90deg, var(--orange), #fdba74); border-radius: 999px; transition: width .8s ease; }
.sr-value { width: 36px; text-align: right; font-size: .82rem; font-weight: 800; color: var(--ink); }
.sub-rating-sm { gap: 8px; }
.sub-rating-sm .sr-label { width: 92px; font-size: .74rem; }

.review-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.reviewer-meta { display: flex; align-items: center; gap: 14px; margin-top: 6px; }
.rm-name { display: block; font-weight: 800; color: var(--ink); font-size: .92rem; }
.rm-date { display: inline-flex; align-items: center; gap: 5px; font-size: .76rem; color: var(--muted); }
.rm-date .ic { width: 13px; height: 13px; }

.review-layout { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: start; }
@media (min-width: 992px) { .review-layout { grid-template-columns: 1.6fr 1fr; } }

.review-main { display: flex; flex-direction: column; gap: 28px; min-width: 0; }
.block-title { font-size: 1.15rem; font-weight: 900; color: var(--ink); letter-spacing: .02em; border-left: 4px solid var(--orange); padding-left: 14px; }

.video-embed { position: relative; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #000; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.review-content { display: flex; flex-direction: column; gap: 16px; }
.content-h { font-size: 1.02rem; font-weight: 800; color: var(--ink); margin-top: 10px; }
.review-content p { color: var(--body); font-size: 1rem; line-height: 1.75; }

.pros-cons { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .pros-cons { grid-template-columns: 1fr 1fr; } }
.pc-box { border-radius: var(--radius); padding: 20px 22px; }
.pc-box h3 { display: flex; align-items: center; gap: 8px; font-size: .86rem; font-weight: 900; letter-spacing: .06em; margin-bottom: 12px; }
.pc-box h3 .ic { width: 18px; height: 18px; }
.pc-box ul { display: flex; flex-direction: column; gap: 8px; }
.pc-box li { font-size: .88rem; padding-left: 20px; position: relative; }
.pc-box li::before { content: ''; position: absolute; left: 0; top: 10px; width: 7px; height: 7px; border-radius: 50%; }
.pc-pros { background: #f0fdf4; border: 1px solid #bbf7d0; }
.pc-pros h3 { color: var(--green); }
.pc-pros li::before { background: var(--green); }
.pc-cons { background: #fef2f2; border: 1px solid #fecaca; }
.pc-cons h3 { color: var(--red); }
.pc-cons li::before { background: var(--red); }

.verdict-box {
  background: linear-gradient(120deg, var(--orange-50), #fff);
  border: 1px solid var(--orange-100);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
}
.verdict-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; }
.verdict-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange);
  color: #fff;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .1em;
  padding: 8px 16px;
  border-radius: 999px;
}
.verdict-badge .ic { width: 16px; height: 16px; }
.verdict-box p { font-size: 1.02rem; color: var(--ink); line-height: 1.7; font-weight: 500; }
.verdict-top .stars b { color: var(--ink); margin-left: 4px; }

.share-block { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; padding-top: 4px; }
.share-label { font-size: .76rem; font-weight: 800; letter-spacing: .1em; color: var(--muted); }
.share-buttons { display: flex; gap: 10px; }
.share-btn {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  transition: transform .2s ease, opacity .2s ease;
}
.share-btn:hover { transform: translateY(-3px); opacity: .9; }
.share-btn .ic { width: 19px; height: 19px; }
.share-fb { background: #1877f2; }
.share-wa { background: #25d366; }
.share-x { background: #000; }
.share-copy { background: var(--ink); }

/* Side cards */
.review-side { display: flex; flex-direction: column; gap: 20px; }
.side-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.side-title { font-size: .8rem; font-weight: 900; letter-spacing: .1em; color: var(--ink); margin-bottom: 16px; display: flex; align-items: center; justify-content: space-between; }

.details-list { display: flex; flex-direction: column; }
.detail-row { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px dashed var(--line); }
.detail-row:last-child { border-bottom: 0; }
.detail-row dt { font-size: .82rem; color: var(--muted); font-weight: 600; }
.detail-row dd { font-size: .82rem; color: var(--ink); font-weight: 700; text-align: right; }

.buy-card p { font-size: .86rem; color: var(--body); margin-bottom: 14px; }
.buy-note { display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; color: var(--muted); margin-top: 10px; }
.buy-note .ic { width: 13px; height: 13px; }

.summary-big { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.summary-score { font-size: 2.2rem; font-weight: 900; color: var(--orange); }
.summary-bars { display: flex; flex-direction: column; gap: 10px; }

.note-text {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .8rem; color: var(--green);
  background: #f0fdf4;
  border-radius: 10px;
  padding: 10px 12px;
  margin-top: 14px;
}
.note-text .ic { width: 16px; height: 16px; flex-shrink: 0; }

/* ============ Forms ============ */
.form-shell { max-width: 880px; margin: 0 auto; }
.form-shell > .form-shell-lg { max-width: 760px; }

.rform { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: .8rem; font-weight: 700; color: var(--ink); letter-spacing: .02em; }
.form-group label em { color: var(--orange); font-style: normal; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  font-size: .92rem;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.form-group textarea { resize: vertical; min-height: 90px; line-height: 1.6; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, .1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); }

.star-input { display: flex; align-items: center; gap: 6px; background: var(--soft); border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 10px 14px; }
.star-btn { color: var(--line); transition: color .15s ease, transform .15s ease; }
.star-btn .ic { width: 30px; height: 30px; }
.star-btn.on { color: var(--orange); transform: scale(1.08); }
.star-btn:hover { color: var(--orange); }
.star-value { margin-left: auto; font-size: .84rem; font-weight: 700; color: var(--muted); }

.upload-box {
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: .86rem;
  cursor: pointer;
  text-align: center;
  transition: border-color .2s ease, background .2s ease;
}
.upload-box:hover { border-color: var(--orange); background: var(--orange-50); }
.upload-box .ic { width: 26px; height: 26px; color: var(--orange); }
.upload-box img { max-height: 220px; border-radius: var(--radius-sm); margin-top: 4px; }

.form-note { display: flex; align-items: center; gap: 8px; font-size: .78rem; color: var(--muted); }
.form-note .ic { width: 16px; height: 16px; color: var(--green); }

.success-card {
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 60px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.success-icon {
  width: 78px; height: 78px;
  border-radius: 50%;
  background: #f0fdf4;
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
}
.success-icon .ic { width: 40px; height: 40px; }
.success-card h2 { font-size: 1.5rem; font-weight: 900; color: var(--ink); }
.success-card p { color: var(--body); max-width: 440px; font-size: .95rem; }
.success-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 10px; }

/* ============ About ============ */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 44px; }
@media (min-width: 992px) { .about-grid { grid-template-columns: 1.5fr 1fr; gap: 60px; } }

.lead { font-size: 1.12rem; color: var(--ink); font-weight: 600; line-height: 1.7; margin: 18px 0 12px; }
.about-story p { color: var(--body); line-height: 1.75; margin-bottom: 14px; }

.about-values { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 28px; }
@media (min-width: 640px) { .about-values { grid-template-columns: 1fr 1fr; } }
.value-item { background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; transition: transform .2s ease, box-shadow .2s ease; }
.value-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--orange-50); color: var(--orange); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.value-icon .ic { width: 22px; height: 22px; }
.value-item h4 { font-size: .88rem; font-weight: 900; color: var(--ink); letter-spacing: .04em; margin-bottom: 8px; }
.value-item p { font-size: .85rem; color: var(--body); line-height: 1.6; }

.about-aside { display: flex; flex-direction: column; gap: 20px; }
.about-stats-card { background: var(--ink); border-radius: var(--radius-lg); padding: 30px 26px; color: #fff; }
.about-stats-card h3 { font-size: .8rem; font-weight: 800; letter-spacing: .12em; color: #94a3b8; margin-bottom: 20px; }
.about-stat { display: flex; align-items: baseline; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.about-stat:last-child { border-bottom: 0; }
.as-num { font-size: 1.7rem; font-weight: 900; color: var(--orange); }
.as-label { font-size: .84rem; color: #cbd5e1; }
.about-cta-card { background: linear-gradient(120deg, var(--orange-600), var(--orange)); border-radius: var(--radius-lg); padding: 30px 26px; color: #fff; }
.about-cta-card h3 { font-size: 1.1rem; font-weight: 900; margin-bottom: 8px; }
.about-cta-card p { font-size: .88rem; color: #ffedd5; margin-bottom: 18px; }
.about-cta-card .btn { background: #fff; color: var(--orange-600); }

.process-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 640px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; position: relative; }
.step-num { position: absolute; top: 18px; right: 20px; font-size: 2rem; font-weight: 900; color: var(--orange-100); line-height: 1; }
.process-step h4 { font-size: .88rem; font-weight: 900; color: var(--ink); margin-bottom: 10px; padding-right: 40px; }
.process-step p { font-size: .85rem; color: var(--body); line-height: 1.6; }

/* ============ Toast ============ */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  z-index: 400;
  display: flex;
  align-items: center;
  gap: 8px;
}
.toast.show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.toast .ic { color: var(--orange); width: 16px; height: 16px; }

/* ============ Accessibility ============ */
:focus-visible { outline: 3px solid rgba(249, 115, 22, .5); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* ============ Banner strip ============ */
.banner-strip { padding: 0 0 30px; }
.banner-strip-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 720px) { .banner-strip-grid { grid-template-columns: repeat(2, 1fr); } }
.banner-strip-item {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 120px;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}
.banner-strip-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.banner-strip-item img { width: 100%; height: 100%; min-height: 120px; object-fit: cover; display: block; }
.banner-strip-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 18px;
  background: linear-gradient(to top, rgba(2, 6, 23, .85), transparent);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.banner-strip-caption strong { font-weight: 800; font-size: .95rem; }
.banner-strip-caption span { font-size: .8rem; opacity: .85; }
[dir="rtl"] .banner-strip-caption { background: linear-gradient(to top, rgba(2, 6, 23, .85), transparent); }

/* ============ FAQ ============ */
.faq-wrap { max-width: 820px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 18px;
}
.faq-item summary {
  cursor: pointer;
  padding: 14px 0;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--orange);
  transition: transform .2s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--body); font-size: .9rem; padding: 0 0 16px; }

/* ============ Mobile responsive ============ */
.nav-lang { display: none; }

@media (max-width: 991px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 16px 20px 22px;
    gap: 4px;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    z-index: 99;
  }
  .site-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; width: 100%; }
  .nav-link {
    display: block;
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: .92rem;
  }
  .nav-cta { display: flex; justify-content: center; margin-top: 14px; }
  .nav-lang { display: inline-flex; align-self: center; margin-top: 14px; }
  .header-actions .lang-switch { display: none; }

  .hero-inner { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-eyebrow { justify-content: center; }

  .section { padding: 52px 0; }
  .page-hero { padding: 30px 0 38px; }
}

@media (max-width: 600px) {
  .header-inner { gap: 12px; }
  .brand-logo { height: 34px; }
  .search-input { width: 108px; padding-left: 34px; }
  .search-ic { left: 11px; width: 16px; height: 16px; }
  .search-input:focus { width: 150px; }
  .header-actions { gap: 8px; }
  .nav-toggle { width: 40px; height: 40px; }
  .hero { padding: 52px 0 64px; }
  .hero-title { font-size: clamp(2rem, 9vw, 2.6rem); }
  .hero-actions .btn { width: 100%; max-width: 320px; }
  .section-title { font-size: 1.5rem; }
  .page-title { font-size: 1.8rem; }
  .filter-row { grid-template-columns: 1fr; }
  .filter-row .btn { grid-column: auto; }
  .form-row { grid-template-columns: 1fr; }
  .cards-grid, .top-rated-grid, .brands-grid { gap: 16px; }
}

@media (min-width: 992px) {
  .nav-toggle { display: none; }
}


