/* Hermes Medical V2 — Homepage Styles
   Cascade-hardened: every heading rule uses section-scoped selectors
   to beat main.css global h1/h2/h3 rules.
   ================================================================ */

/* =======================================================
   :ROOT DESIGN TOKENS
   ======================================================= */
:root {
  --bg: #ffffff;
  --bg-soft: #F5F8FB;
  --bg-warm: #F8FAFC;
  --ink: var(--hm-ink);
  --ink-soft: var(--hm-ink-soft);
  --muted: var(--hm-muted);
  --line: var(--hm-line);
  --brand: var(--hm-navy-900);
  --brand-2: var(--hm-navy-800);
  --accent: var(--hm-green-600);
  --accent-2: var(--hm-green-500);
  --accent-soft: var(--hm-green-50);
  --accent-tint: var(--hm-green-100);
  --radius-card: 14px;
  --radius-hero: 28px;

  /* TYPE SCALE — 8 steps */
  --t-xs:   12px;
  --t-sm:   14px;
  --t-base: 16px;
  --t-md:   18px;
  --t-lg:   20px;
  --t-xl:   24px;
  --t-h2:   clamp(28px, 3vw, 40px);
  --t-h1:   clamp(40px, 4.6vw, 60px);
}

/* =======================================================
   CASCADE RESET — neutralize main.css global heading rules
   for all V2 homepage sections.
   main.css sets: h1 { font-size:45px; margin-bottom:30px; text-align:center; }
   and h1,h2,h3... { font-weight:600; color:#081828; margin:0; }
   We override with section-scoped selectors (higher specificity).
   ======================================================= */
.hero h1, .hero h2, .hero h3,
.cats h2, .cats h3,
.cats-head h2,
.featured h2, .featured h3,
.sec-head h2,
.mission h2, .mission h3,
.testi h2,
.testi-head h2,
.blog h2, .blog h3,
.news h2,
.news-card h2,
.faq h2,
.faq-lead h2 {
  font-size: inherit;
  font-weight: 700;
  color: var(--brand);
  text-align: center;
  margin: 0;
  margin-bottom: 0;
  letter-spacing: -.015em;
  text-wrap: balance;
  font-family: var(--hm-font-sans);
}

/* =======================================================
   CLAY ACCENT — max 3 per page, headline-emphasis only
   ======================================================= */
.clay-accent { color: var(--hm-clay-500); }

/* =======================================================
   PAGE SHELL
   ======================================================= */
body {
  margin: 0;
  background: var(--bg);
  font-family: var(--hm-font-sans);
  color: var(--ink);
  font-size: var(--t-base);
  line-height: var(--hm-lh-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.eyebrow {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Section-scoped heading defaults */
.hero h1 { font-size: var(--t-h1); line-height: 1.06; font-weight: 700; color: var(--brand); letter-spacing: -.015em; margin: 0; text-align: left; }
.cats-head h2,
.sec-head .left h2,
.mission h2,
.testi-head h2,
.faq-lead h2,
.news-card h2 { font-size: var(--t-h2); line-height: 1.14; font-weight: 700; color: var(--brand); letter-spacing: -.015em; margin: 0; text-align: left; }
.cat .cbod h3,
.prod h3,
.post h3,
.faq-q { font-size: var(--t-lg); line-height: 1.25; font-weight: 700; color: var(--brand); letter-spacing: -.015em; margin: 0; }

p  { margin: 0; text-wrap: pretty; color: var(--ink-soft); }

/* =======================================================
   ANNOUNCE + NAV
   ======================================================= */
.announce {
  background: var(--brand);
  color: #fff;
  text-align: center;
  font-size: var(--t-sm);
  padding: 9px 20px;
  letter-spacing: .01em;
}
.announce b { color: var(--hm-clay-100); font-weight: 600; }

header.site {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(1.1) blur(6px);
}
.nav-row { display: flex; align-items: center; gap: 36px; padding: 4px 0; }
.nav-row .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--brand); }
.nav-row .logo img { height: 83px !important; width: auto; display: block; }
.nav-row .logo .logo-word { font-family: var(--hm-font-sans); font-weight: 700; font-size: var(--t-lg); letter-spacing: -.01em; color: var(--brand); }
.nav-links { display: flex; gap: 28px; list-style: none; padding: 0; margin: 0; }
.nav-links a { color: var(--ink); text-decoration: none; font-weight: 500; font-size: var(--t-base); padding: 6px 0; border-bottom: 2px solid transparent; transition: border-color .2s ease, color .2s ease; }
.nav-links a:hover { color: var(--brand); border-bottom-color: var(--accent); }
.nav-spacer { flex: 1; }
.icon-row { display: flex; gap: 10px; align-items: center; }
.icon-btn {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
.icon-btn:hover { border-color: var(--brand); background: var(--bg-soft); }
.icon-btn .dot { position: absolute; width: 8px; height: 8px; border-radius: 999px; background: var(--accent); margin: -16px 0 0 16px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--hm-font-sans);
  font-weight: 600; font-size: var(--t-base);
  padding: 13px 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .12s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-2); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-2); }
.btn-ghost { background: transparent; color: var(--brand); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--brand); background: var(--bg-soft); }
.btn-lg { padding: 16px 28px; font-size: var(--t-base); }

/* =======================================================
   HERO
   ======================================================= */
.hero { padding: 40px 0 32px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 64px; align-items: center; }
.hero h1 em { font-style: normal; color: var(--hm-clay-500); }
.hero .lead { font-size: var(--t-md); margin: 20px 0 28px; max-width: 520px; line-height: 1.6; color: var(--ink-soft); }
.hero .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero .micro {
  margin-top: 22px;
  display: flex; gap: 22px; flex-wrap: wrap;
  font-size: var(--t-base); color: var(--muted);
}
.hero .micro span { display: inline-flex; align-items: center; gap: 6px; }
.hero .micro svg { color: var(--accent); }

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-hero);
  background: #f8faf8;
  overflow: hidden;
}
.hero-slides { list-style: none; padding: 0; margin: 0; position: absolute; inset: 0; }
.hero-slides li { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; }
.hero-slides li.is-active { opacity: 1; }
.hero-slides li a { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.hero-slides img { max-width: 90%; max-height: 90%; object-fit: contain; display: block; }
.hero-dots { position: absolute; left: 0; right: 0; bottom: 18px; display: flex; justify-content: center; gap: 8px; z-index: 3; }
.hero-dots button { width: 8px; height: 8px; border-radius: 50%; border: 0; background: rgba(255,255,255,.55); cursor: pointer; padding: 0; transition: background .2s ease, transform .2s ease; }
.hero-dots button:hover { background: rgba(255,255,255,.85); }
.hero-dots button.is-active { background: #fff; transform: scale(1.25); }

.float {
  position: absolute; z-index: 2;
  background: var(--bg); color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 14px 28px -10px rgba(12,49,78,.18);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  font-size: var(--t-sm);
}
.float .ico {
  width: 36px; height: 36px; border-radius: 8px;
  display: grid; place-items: center;
  background: var(--accent-tint); color: var(--accent);
  font-weight: 700;
}
.float .lbl { color: var(--muted); font-size: var(--t-xs); letter-spacing: .08em; text-transform: uppercase; }
.float .val { color: var(--brand); font-weight: 600; font-size: var(--t-sm); }
.float.f1 { top: 14%; left: -7%; }
.float.f2 { bottom: 18%; right: -7%; }

/* =======================================================
   TRUST STRIP (Ingyenes szallitas, garancia, OGYEI, fizetes)
   ======================================================= */
.trust {
  margin: 24px 0 0;
  background: var(--bg-soft);
  border-radius: 16px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
}
.trust-cell {
  display: flex; gap: 14px; align-items: center;
  padding: 22px 26px;
  border-right: 1px solid var(--line);
}
.trust-cell:last-child { border-right: none; }
.trust-cell .ic {
  width: 72px; height: 72px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--bg); color: var(--accent);
  border: 1px solid var(--line);
  flex-shrink: 0;
}
.trust-cell .ic svg, .trust-cell .ic img { width: 36px; height: 36px; }
.trust-cell .txt b { color: var(--brand); font-weight: 600; font-size: var(--t-base); display: block; line-height: 1.3; }
.trust-cell .txt span { font-size: var(--t-sm); color: var(--muted); line-height: 1.35; }

/* =======================================================
   CATEGORIES — "Miben segithetunk Onnek?" (9 teruletek)
   ======================================================= */
.cats { padding: 56px 0 36px; }
.cats-head { text-align: center; max-width: 100%; margin: 0 auto 32px; }
.cats-head h2 { margin: 10px 0 14px; font-size: var(--t-h2); line-height: 1.14; }
.cats-head p { color: var(--ink-soft); }
.cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cat {
  position: relative;
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.cat:hover {
  border-color: var(--hm-clay-500);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -12px rgba(234,88,12,.30);
}
.cat .catico {
  width: 44px; height: 44px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  flex-shrink: 0;
}
.cat .cbod h3 { font-size: var(--t-base); margin: 0 0 4px; color: var(--brand); font-weight: 600; line-height: 1.25; letter-spacing: -.015em; }
.cat .cbod p { font-size: var(--t-sm); color: var(--muted); line-height: 1.45; }
.cat .arr {
  margin-left: auto; color: var(--muted);
  transition: transform .2s ease, color .2s ease;
  flex-shrink: 0;
}
.cat:hover .arr { transform: translateX(3px); color: var(--hm-clay-600); }

/* =======================================================
   FEATURED PRODUCTS — "Kiemelt termekek"
   ======================================================= */
.featured { padding: 48px 0; }
.sec-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 32px; gap: 24px; flex-wrap: wrap; }
.sec-head .left { flex: 1 1 320px; min-width: 0; }
.sec-head a.more { flex-shrink: 0; }
.sec-head .left h2, .featured h2 { margin-top: 8px; font-size: var(--t-h2); line-height: 1.14; }
.sec-head a.more { color: var(--brand); font-weight: 600; font-size: var(--t-base); text-decoration: none; border-bottom: 1.5px solid var(--accent); padding-bottom: 2px; }

.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.prod {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  display: flex; flex-direction: column;
  transition: box-shadow .2s ease, transform .2s ease;
}
.prod:hover { transform: translateY(-3px); border-color: var(--hm-clay-500); box-shadow: 0 12px 24px -12px rgba(234,88,12,.30); }
.prod .thumb {
  background: #f8f8f8;
  border-radius: 10px;
  aspect-ratio: 1 / 1;
  padding: 20px;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}
.prod .thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* Fallback: ha az aspect-ratio nem támogatott (régi WebView, Facebook in-app browser),
   a padding-bottom trükkel garantáljuk az 1:1 dobozt. */
@supports not (aspect-ratio: 1 / 1) {
  .prod .thumb {
    height: 0;
    padding: 0 0 100% 0;
  }
  .prod .thumb img {
    position: absolute;
    top: 10%; left: 10%;
    width: 80%;
    height: 80%;
  }
}
.prod .pbadge {
  position: absolute; top: 12px; left: 12px;
  background: var(--accent); color: #fff;
  font-size: var(--t-xs); font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
  z-index: 2;
}
.prod .pbadge.is-clay { background: var(--hm-clay-100); color: var(--hm-clay-600); }
.prod h3 { font-size: var(--t-md); margin: 2px 0 4px; color: var(--brand); font-weight: 700; line-height: 1.25; letter-spacing: -.015em; }
.prod .cat-lab { font-size: var(--t-xs); color: var(--muted); letter-spacing: .04em; }
.prod .stars { color: #E0B84A; letter-spacing: 1px; font-size: var(--t-sm); margin-top: 8px; }
.prod .stars span { color: var(--muted); font-size: var(--t-xs); margin-left: 4px; letter-spacing: 0; }
.prod .foot { margin-top: auto; padding-top: 16px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.prod .price { font-size: var(--t-lg); font-weight: 700; color: var(--brand); font-variant-numeric: tabular-nums; }
.prod .price small { color: var(--muted); font-weight: 500; font-size: var(--t-xs); margin-left: 4px; }

/* =======================================================
   MISSION — "Kuldetesunk"
   ======================================================= */
.mission { padding: 56px 0; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.mission h2 { margin: 12px 0 18px; font-size: var(--t-h2); line-height: 1.14; }
.mission p { font-size: var(--t-md); line-height: 1.7; margin-bottom: 16px; }
.mission .big-quote {
  font-family: var(--hm-font-sans);
  font-size: var(--t-xl); line-height: 1.45;
  color: var(--brand);
  font-weight: 700;
  padding-left: 22px;
  border-left: 3px solid var(--accent);
  margin: 24px 0 28px;
  text-wrap: balance;
}
.mission-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(160deg, rgba(12,49,78,.15), rgba(22,163,74,.08)),
    linear-gradient(120deg, #E6F1EA, #CDE6D4);
}
.mission-visual .placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: var(--brand);
  opacity: .85;
}
.mission-visual .placeholder svg { width: 46%; height: auto; opacity: .55; }
.mv-stats {
  position: absolute; left: 24px; right: 24px; bottom: 24px;
  background: var(--bg);
  border-radius: 14px;
  padding: 18px 22px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 36px -18px rgba(12,49,78,.2);
}
.mv-stat .n { font-family: var(--hm-font-sans); font-size: var(--t-xl); font-weight: 700; color: var(--brand); line-height: 1; }
.mv-stat .l { font-size: var(--t-xs); color: var(--muted); margin-top: 4px; }

/* =======================================================
   TESTIMONIALS
   ======================================================= */
.testi { padding: 56px 0; }
.testi-head { text-align: center; margin-bottom: 32px; }
.testi-head h2 { margin: 10px 0 8px; font-size: var(--t-h2); line-height: 1.14; text-align: center; }
.testi-head .sub { color: var(--muted); font-size: var(--t-sm); }
.testi-head .sub b { color: var(--brand); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card { background: var(--hm-page); border-radius: 16px; padding: 28px; border: 1px solid var(--line); }
.testi-card .stars { color: #E0B84A; letter-spacing: 2px; font-size: var(--t-base); margin-bottom: 14px; }
.testi-card blockquote {
  margin: 0 0 20px; font-size: var(--t-base); line-height: 1.6;
  color: var(--brand); font-weight: 700;
  font-family: var(--hm-font-sans);
}
.testi-card .who { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--line); padding-top: 16px; }
.testi-card .avatar { width: 40px; height: 40px; border-radius: 999px; background: var(--brand); color: var(--bg); display: grid; place-items: center; font-weight: 600; font-size: var(--t-sm); font-family: var(--hm-font-sans); flex-shrink: 0; }
.testi-card .who b { color: var(--brand); font-weight: 600; font-size: var(--t-sm); display: block; font-family: var(--hm-font-sans); }
.testi-card .who span { color: var(--muted); font-size: var(--t-xs); }

/* =======================================================
   BLOG / TUDASTAR
   ======================================================= */
.blog { padding: 48px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post { display: flex; flex-direction: column; gap: 14px; text-decoration: none; color: inherit; }
.post .img {
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent-tint));
  display: grid; place-items: center;
  color: var(--accent);
  overflow: hidden;
  position: relative;
  transition: transform .4s ease;
}
.post:hover .img { transform: scale(1.01); }
.post .img svg { width: 44%; opacity: .55; }
.post .tag { font-size: var(--t-xs); letter-spacing: .1em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.post h3 { font-size: var(--t-md); line-height: 1.3; color: var(--brand); margin-bottom: 6px; font-weight: 700; letter-spacing: -.015em; }
.post p { font-size: var(--t-sm); color: var(--ink-soft); line-height: 1.5; }
.post .meta { font-size: var(--t-xs); color: var(--muted); }

/* =======================================================
   NEWSLETTER (10% kedvezmeny)
   ======================================================= */
.news { padding: 48px 0; }
.news-card {
  background: var(--brand); color: var(--bg);
  border-radius: 24px;
  padding: 56px 64px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center;
  position: relative; overflow: hidden;
}
.news-card::before {
  content: ""; position: absolute; inset: -40%;
  background: radial-gradient(circle at 78% 28%, rgba(22,163,74,.22), transparent 58%);
  pointer-events: none;
}
.news-card h2 { color: var(--bg); position: relative; margin-bottom: 14px; font-size: var(--t-h2); line-height: 1.14; }
.news-card p { position: relative; color: rgba(255,255,255,.78); font-size: var(--t-base); line-height: 1.6; max-width: 440px; }
.news-card .badge-10 {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--hm-clay-100);
  padding: 8px 14px; border-radius: 999px;
  font-size: var(--t-sm); font-weight: 600; letter-spacing: .04em;
  margin-bottom: 16px; color: var(--hm-clay-600);
  position: relative;
  white-space: nowrap;
}
.news-card .badge-10 b { color: var(--hm-clay-600); font-size: var(--t-base); }
.news-form { position: relative; display: flex; flex-direction: column; gap: 12px; }
.news-form .field {
  display: flex; background: var(--bg); border-radius: 12px; padding: 6px; gap: 6px;
  border: 1px solid rgba(255,255,255,.2);
}
.news-form input {
  flex: 1; border: none; outline: none; font: inherit;
  padding: 12px 14px; font-size: var(--t-base);
  background: transparent; color: var(--ink);
  font-family: var(--hm-font-sans);
}
.news-form input::placeholder { color: var(--muted); }
.news-form button { padding: 12px 22px; border: none; border-radius: 8px; background: var(--accent); color: #fff; font-family: var(--hm-font-sans); font-weight: 600; font-size: var(--t-sm); cursor: pointer; transition: background .2s ease; }
.news-form button:hover { background: var(--accent-2); }
.news-legal { font-size: var(--t-xs); color: rgba(255,255,255,.6); line-height: 1.5; position: relative; display: flex; align-items: flex-start; gap: 8px; }
.news-legal input[type="checkbox"] { accent-color: var(--accent); margin-top: 2px; }
.news-legal a { color: #fff; text-decoration: underline; }

/* =======================================================
   FAQ
   ======================================================= */
.faq { padding: 40px 0 96px; }
.faq-grid { display: grid; grid-template-columns: 0.9fr 1.4fr; gap: 72px; align-items: flex-start; }
.faq-lead h2 { margin: 10px 0 14px; font-size: var(--t-h2); line-height: 1.14; }
.faq-lead p { margin-bottom: 18px; }
.faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  cursor: pointer; background: none; border: none; width: 100%;
  font-family: var(--hm-font-sans); font-weight: 700; color: var(--brand);
  font-size: var(--t-md); text-align: left; padding: 0;
}
.faq-q .plus { flex-shrink: 0; width: 28px; height: 28px; border-radius: 999px; border: 1px solid var(--line); display: grid; place-items: center; transition: transform .3s ease, background .2s ease, color .2s ease; color: var(--brand); }
.faq-item[open] .faq-q .plus { transform: rotate(45deg); background: var(--accent); color: #fff; border-color: var(--accent); }
.faq-a { font-size: var(--t-base); line-height: 1.65; color: var(--ink-soft); margin-top: 14px; padding-right: 36px; }

/* =======================================================
   FOOTER
   ======================================================= */
footer.site {
  background: var(--brand); color: var(--bg);
  padding: 64px 0 32px;
  margin-top: 40px;
}
footer.site .foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
footer.site .foot-about img { display: block; }
footer.site .foot-about p { color: rgba(255,255,255,.7); font-size: var(--t-sm); line-height: 1.6; max-width: 320px; }
footer.site h5 { font-size: var(--t-xs); letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.6); font-weight: 600; margin: 0 0 16px; font-family: var(--hm-font-sans); }
footer.site ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
footer.site a { color: rgba(255,255,255,.85); text-decoration: none; font-size: var(--t-sm); }
footer.site a:hover { color: var(--accent-2); }
footer.site .foot-bot { border-top: 1px solid rgba(255,255,255,.14); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: var(--t-xs); color: rgba(255,255,255,.55); }

/* =======================================================
   HEADER ICON CLEANUP — hide text labels, show only icons
   ======================================================= */
header.site .nav-row #wishlist-icon .header-btn span:not(.svg-stroke) { display: none !important; }
header.site .nav-row #cart-icon .header-btn span:not(.svg-fill) { display: none !important; }
header.site .nav-row #cart-icon .shopping-item { display: none; }
header.site .nav-row .icon-row .header-btn { flex-direction: row !important; gap: 0 !important; }
header.site .nav-row .logo img { height: 83px !important; width: auto !important; }

/* =======================================================
   RESPONSIVE
   ======================================================= */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { display: none; }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .trust-cell:nth-child(2) { border-right: none; }
  .trust-cell:nth-child(1), .trust-cell:nth-child(2) { border-bottom: 1px solid var(--line); }
  .cats-grid, .prod-grid, .testi-grid, .blog-grid { grid-template-columns: 1fr 1fr; }
  .mission-grid { grid-template-columns: 1fr; gap: 40px; }
  .news-card { grid-template-columns: 1fr; padding: 36px; gap: 28px; }
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  footer.site .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { display: none; }
}
@media (max-width: 620px) {
  .prod-grid, .testi-grid, .blog-grid { grid-template-columns: 1fr; }

  /* Cats szekció ("Miben segíthetünk Önnek?") elrejtve mobilon — user kérése 2026-05-17:
     a görgetési táv csökkentésére. Desktop nézetben változatlan. */
  .cats { display: none; }

  /* Trust: kompakt 2 oszlop, kisebb ikon es padding mobilon */
  .trust { grid-template-columns: 1fr 1fr; margin-top: 20px; }
  .trust-cell { padding: 14px 12px; gap: 10px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .trust-cell:nth-child(2n) { border-right: none; }
  .trust-cell:nth-last-child(-n+2) { border-bottom: none; }
  .trust-cell .ic { width: 42px; height: 42px; border-radius: 10px; }
  .trust-cell .ic svg, .trust-cell .ic img { width: 22px; height: 22px; }
  .trust-cell .txt b { font-size: 13.5px; }
  .trust-cell .txt span { font-size: 12px; }

  .hero h1 { font-size: var(--t-h2); }
  .news-card { padding: 28px; }
}

/* Főoldalon felesleges szekciók: a main.php layout-ban PHP feltétellel kezelve (Util::isMainPage()) */

/* Preventív horizontal overflow védelem */
html, body { overflow-x: clip; }
