/* =================================================================
   G-TIRE Gumiszerviz — publikus oldal stíluslapja
   Rendszerfontokkal (nincs külső betöltés -> gyors, blokkolásmentes render)
   ================================================================= */

:root {
  /* Sötét alap (hero, header, footer, kiemelt sávok) */
  --ink: #0E1013;
  --ink-soft: #181B20;
  --ink-soft-2: #21252C;
  --ink-border: rgba(255, 255, 255, 0.10);
  --ink-text: #F3F1EC;
  --ink-text-muted: #A9AEB8;

  /* Világos tartalmi blokkok */
  --paper: #FAF8F5;
  --paper-alt: #F0EBE3;
  --paper-border: #E4DED4;
  --body-text: #201E1B;
  --body-muted: #6B6459;

  /* Márka-akcentek */
  --accent: #FF6A1A;
  --accent-dark: #E1550D;
  --accent-ink: #1A0C00;
  --steel: #3E5A73;
  --steel-light: #5D7C97;
  --success: #2E9E5B;
  --success-bg: #EAF7EF;

  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 24px;
  --shadow-soft: 0 10px 30px -12px rgba(14, 16, 19, 0.35);
  --shadow-strong: 0 24px 60px -20px rgba(14, 16, 19, 0.55);

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

/* ---------------------------------------------------------------
   Reset
   --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--body-text);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
button { font: inherit; cursor: pointer; background: none; border: none; appearance: none; -webkit-appearance: none; color: inherit; }
input, textarea, select { font: inherit; }
:focus-visible { outline: 2.5px solid var(--accent); outline-offset: 3px; }

.icon { width: 1em; height: 1em; flex-shrink: 0; }

/* ---------------------------------------------------------------
   Elrendezés segédek
   --------------------------------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: clamp(56px, 8vw, 108px) 0; }
.section--tight { padding: clamp(40px, 6vw, 72px) 0; }
.section--dark { background: var(--ink); color: var(--ink-text); }
.section--alt { background: var(--paper-alt); }
.section-head {
  max-width: 680px;
  margin: 0 0 44px;
}
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}
h1, .h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); line-height: 1.08; font-weight: 800; letter-spacing: -0.01em; }
h2, .h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1.15; font-weight: 800; letter-spacing: -0.01em; }
h3, .h3 { font-size: 1.2rem; line-height: 1.3; font-weight: 700; }
.lede { font-size: 1.1rem; color: var(--body-muted); }
.section--dark .lede { color: var(--ink-text-muted); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; background: var(--accent); color: var(--accent-ink);
  padding: 10px 18px; border-radius: var(--radius-s); font-weight: 700; z-index: 999; transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

/* ---------------------------------------------------------------
   Gombok
   --------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13.5px;
  border: 1.5px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn .icon { width: 15px; height: 15px; }
.btn-primary { background: var(--accent); color: var(--accent-ink); box-shadow: 0 10px 24px -10px rgba(255,106,26,0.55); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-outline-light { border-color: rgba(255,255,255,0.35); color: var(--ink-text); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-outline-dark { border-color: rgba(20,20,20,0.25); color: var(--body-text); }
.btn-outline-dark:hover { border-color: var(--body-text); background: rgba(20,20,20,0.05); }
.btn-ghost { color: var(--accent); font-weight: 700; }
.btn-ghost:hover { color: var(--accent-dark); }
.btn-block { width: 100%; }
.btn-sm { padding: 8px 14px; font-size: 12.5px; }
.btn-sm .icon { width: 13px; height: 13px; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

/* ---------------------------------------------------------------
   Fejléc / navigáció
   --------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(14,16,19,0.92);
  border-bottom: 1px solid var(--ink-border);
}
/* A blur külön rétegen (::before), NEM közvetlenül a .site-header-en fut —
   backdrop-filter az ősön containing blockot hozna létre a benne lévő
   position:fixed .nav-mobile-nak, ami emiatt a fejléc sávjára zsugorodna
   össze a teljes viewport helyett (mobilon "eltörne" a hamburger menü). */
.site-header::before {
  content: "";
  position: absolute; inset: 0;
  backdrop-filter: saturate(140%) blur(10px);
  pointer-events: none;
  z-index: -1;
}
.site-header__bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 14px 0;
  /* .nav-mobile (position:fixed, z-index:99) különben a nem pozicionált
     fejléc-sáv fölé kerülne megnyitáskor — a teljes sávot (logó + gombok)
     kell a menü fölé emelni, nem csak a bezáró gombot, különben csak
     az X lógna látszólag a semmiben, a logó nélkül. */
  position: relative; z-index: 100;
}
.brand { display: flex; align-items: center; gap: 11px; color: var(--ink-text); }
.brand__mark {
  width: 42px; height: 42px; border-radius: 11px;
  background: linear-gradient(155deg, var(--accent), var(--accent-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-ink); font-weight: 800; font-size: 17px; letter-spacing: -0.02em;
  flex-shrink: 0;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-weight: 800; font-size: 17px; letter-spacing: -0.01em; }
.brand__tag { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-text-muted); }

.nav-desktop { display: none; }
.nav-desktop ul { display: flex; align-items: center; gap: 28px; }
.nav-desktop a {
  font-size: 14.5px; font-weight: 600; color: var(--ink-text-muted);
  padding: 6px 0; border-bottom: 2px solid transparent; transition: color .15s ease, border-color .15s ease;
}
.nav-desktop a:hover, .nav-desktop a.is-active { color: var(--ink-text); border-color: var(--accent); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  height: 42px; padding: 0 14px; border-radius: 999px;
  border: 1.5px solid var(--ink-border); background: transparent;
  color: var(--accent); font-weight: 800; font-size: 13px; letter-spacing: 0.02em;
  transition: border-color .15s ease, background-color .15s ease;
}
.theme-toggle:hover { border-color: var(--accent); background: rgba(255,255,255,0.05); }
.phone-pill {
  display: none;
  align-items: center; gap: 8px;
  color: var(--ink-text); font-weight: 700; font-size: 14.5px;
  border: 1.5px solid var(--ink-border); border-radius: 999px; padding: 9px 16px;
  white-space: nowrap; flex-shrink: 0;
}
.phone-pill .icon { color: var(--accent); width: 17px; height: 17px; }
.phone-pill:hover { border-color: rgba(255,255,255,0.4); }
.header-cta-desktop { display: none; }
@media (min-width: 1180px) { .header-cta-desktop { display: inline-flex; } }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 10px; border: 1.5px solid var(--ink-border);
  background: transparent; color: var(--ink-text);
}
.nav-toggle .icon { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-open .nav-toggle { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.3); }
.nav-open .nav-toggle .icon-menu { display: none; }
.nav-open .nav-toggle .icon-close { display: block; }

.nav-mobile {
  position: fixed; inset: 0; top: 0; z-index: 99;
  background:
    radial-gradient(ellipse 640px 380px at 100% 0%, rgba(255,106,26,0.16), transparent 65%),
    var(--ink);
  padding: 100px 20px 32px;
  transform: translateY(-8px);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  overflow-y: auto;
}
.nav-open .nav-mobile { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }

.nav-mobile ul { display: flex; flex-direction: column; gap: 8px; margin-bottom: 26px; }
.nav-mobile li {
  opacity: 0; transform: translateX(-10px);
  transition: opacity .25s ease, transform .25s ease;
}
.nav-open .nav-mobile li { opacity: 1; transform: translateX(0); }
.nav-mobile li:nth-child(1) { transition-delay: .04s; }
.nav-mobile li:nth-child(2) { transition-delay: .08s; }
.nav-mobile li:nth-child(3) { transition-delay: .12s; }
.nav-mobile li:nth-child(4) { transition-delay: .16s; }
.nav-mobile li:nth-child(5) { transition-delay: .2s; }
.nav-mobile li:nth-child(6) { transition-delay: .24s; }

.nav-mobile a {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px; border-radius: var(--radius-m);
  font-size: 16.5px; font-weight: 700; color: var(--ink-text);
  background: var(--ink-soft);
  border: 1px solid var(--ink-border);
  transition: background-color .15s ease, border-color .15s ease;
}
.nav-mobile a:active { background: var(--ink-soft-2); }
.nav-mobile a.is-active { background: rgba(255,106,26,0.14); border-color: rgba(255,106,26,0.35); }
.nav-mobile a.is-active .nav-mobile__icon { background: var(--accent); color: var(--accent-ink); }
.nav-mobile__icon {
  width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
  background: rgba(255,255,255,0.06); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.nav-mobile__icon .icon { width: 19px; height: 19px; }
.nav-mobile__label { flex: 1; }
.nav-mobile__chevron { width: 16px; height: 16px; color: var(--ink-text-muted); flex-shrink: 0; }

.nav-mobile__contact {
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 24px; border-top: 1px solid var(--ink-border);
}

@media (min-width: 960px) {
  .nav-desktop { display: block; }
  .phone-pill { display: inline-flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none; }
}

/* ---------------------------------------------------------------
   Hero
   --------------------------------------------------------------- */
.hero {
  position: relative;
  background: radial-gradient(ellipse 900px 500px at 85% -10%, rgba(255,106,26,0.20), transparent 60%),
              radial-gradient(ellipse 700px 500px at 5% 110%, rgba(62,90,115,0.28), transparent 60%),
              var(--ink);
  color: var(--ink-text);
  overflow: hidden;
  padding: clamp(64px, 11vw, 128px) 0 clamp(48px, 8vw, 96px);
}
.hero::after {
  content: "";
  position: absolute; right: -12%; top: 50%; transform: translateY(-50%);
  width: 620px; height: 620px; border-radius: 50%;
  border: 34px solid rgba(255,255,255,0.045);
  box-shadow: inset 0 0 0 96px rgba(255,255,255,0.02);
  pointer-events: none;
}
.hero::before {
  content: "";
  position: absolute; right: 6%; top: 50%; transform: translateY(-50%);
  width: 210px; height: 210px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,106,26,0.35), transparent 70%);
  filter: blur(6px);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; max-width: 660px; }
.hero__title { margin-bottom: 20px; }
.hero__title .accent { color: var(--accent); }
.hero__lede { font-size: 1.15rem; color: var(--ink-text-muted); max-width: 540px; margin-bottom: 34px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 22px 32px; padding-top: 28px; border-top: 1px solid var(--ink-border); }
.hero__trust-item { display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 600; color: var(--ink-text-muted); }
.hero__trust-item .icon { color: var(--accent); width: 20px; height: 20px; }

/* ---------------------------------------------------------------
   Kártyák — szolgáltatások
   --------------------------------------------------------------- */
.grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.card {
  background: #fff;
  border: 1px solid var(--paper-border);
  border-radius: var(--radius-m);
  padding: 30px 26px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: transparent; }
.card__icon {
  width: 52px; height: 52px; border-radius: var(--radius-s);
  background: linear-gradient(155deg, #FFF1E6, #FFE1CC);
  color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card__icon .icon { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--body-muted); font-size: 14.5px; }
.card__link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; font-size: 14px; font-weight: 700; color: var(--accent-dark);
}
.card__link .icon { width: 15px; height: 15px; transition: transform .15s ease; }
.card__link:hover .icon { transform: translateX(3px); }
.card__meta { margin-top: 14px; font-size: 12.5px; color: var(--body-muted); display: flex; gap: 14px; flex-wrap: wrap; }
.card__meta span { display: inline-flex; align-items: center; gap: 5px; }
.card__meta .icon { width: 14px; height: 14px; }

/* ---------------------------------------------------------------
   Miért minket (dark, ikonos rács)
   --------------------------------------------------------------- */
.feature {
  padding: 26px 22px;
  border: 1px solid var(--ink-border);
  border-radius: var(--radius-m);
  background: var(--ink-soft);
}
.feature__icon {
  width: 46px; height: 46px; border-radius: 11px;
  background: rgba(255,106,26,0.14); color: var(--accent);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.feature__icon .icon { width: 23px; height: 23px; }
.feature h3 { color: var(--ink-text); margin-bottom: 8px; font-size: 1.05rem; }
.feature p { color: var(--ink-text-muted); font-size: 14px; }

/* ---------------------------------------------------------------
   Értékelések
   --------------------------------------------------------------- */
.rating-badge {
  display: inline-flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--paper-border); border-radius: 999px;
  padding: 12px 22px 12px 14px; box-shadow: var(--shadow-soft);
}
.rating-badge__score {
  width: 46px; height: 46px; border-radius: 50%; background: var(--ink);
  color: #fff; font-weight: 800; font-size: 15px; display: flex; align-items: center; justify-content: center;
}
.rating-badge__stars { display: flex; gap: 2px; color: var(--accent); }
.rating-badge__stars .icon { width: 15px; height: 15px; }
.rating-badge__count { font-size: 12.5px; color: var(--body-muted); }
.review-card {
  background: #fff; border: 1px solid var(--paper-border); border-radius: var(--radius-m);
  padding: 26px; height: 100%;
}
.review-card__quote { color: var(--paper-border); margin-bottom: 12px; }
.review-card__quote .icon { width: 26px; height: 26px; }
.review-card__stars { display: flex; gap: 2px; color: var(--accent); margin-bottom: 12px; }
.review-card__stars .icon { width: 14px; height: 14px; }
.review-card__text { font-size: 14.5px; color: var(--body-text); margin-bottom: 16px; }
.review-card__author { font-size: 13px; font-weight: 700; color: var(--body-muted); }

/* ---------------------------------------------------------------
   BHPgumi kiemelt sáv
   --------------------------------------------------------------- */
.bhp-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #171A1F 0%, #23272E 60%, #2B211B 100%);
  color: var(--ink-text);
  border-radius: var(--radius-l);
  padding: clamp(36px, 6vw, 64px);
  display: grid; gap: 36px;
  grid-template-columns: 1fr;
  overflow: hidden;
  border: 1px solid var(--ink-border);
}
.bhp-band::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle 340px at 100% 0%, rgba(255,106,26,0.22), transparent 70%);
  pointer-events: none;
}
.bhp-band__content { position: relative; z-index: 1; max-width: 620px; }
.bhp-band__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,106,26,0.15); color: var(--accent);
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em;
  padding: 7px 14px; border-radius: 999px; margin-bottom: 18px;
}
.bhp-band__badge .icon { width: 15px; height: 15px; }
.bhp-band p { color: var(--ink-text-muted); margin: 16px 0 26px; font-size: 1.02rem; }
.bhp-band__steps { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.bhp-band__step { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: var(--ink-text); }
.bhp-band__step-num {
  width: 26px; height: 26px; border-radius: 50%; background: var(--accent); color: var(--accent-ink);
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 12.5px; flex-shrink: 0;
}
.bhp-band__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

@media (min-width: 860px) {
  .bhp-band { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
}

/* ---------------------------------------------------------------
   Kapcsolat
   --------------------------------------------------------------- */
.contact-grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.15fr; } }
.contact-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item__icon {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: var(--paper-alt); color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
}
.contact-item__icon .icon { width: 20px; height: 20px; }
.contact-item h3 { font-size: 15px; margin-bottom: 3px; }
.contact-item p, .contact-item a { color: var(--body-muted); font-size: 14.5px; }
.contact-item a:hover { color: var(--accent-dark); }
.hours-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.hours-table td { padding: 7px 0; border-bottom: 1px dashed var(--paper-border); }
.hours-table td:first-child { color: var(--body-muted); }
.hours-table td:last-child { text-align: right; font-weight: 700; }
.hours-table tr.is-today td { color: var(--accent-dark); font-weight: 700; }
.hours-note { font-size: 13.5px; color: var(--body-muted); margin-top: 10px; }
.map-frame {
  border-radius: var(--radius-m); overflow: hidden; border: 1px solid var(--paper-border);
  box-shadow: var(--shadow-soft); background: var(--paper-alt);
  aspect-ratio: 4 / 3.4; width: 100%;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ---------------------------------------------------------------
   Lábléc
   --------------------------------------------------------------- */
.site-footer { background: var(--ink); color: var(--ink-text-muted); }
.footer-top { padding: 64px 0 40px; display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .footer-top { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }
.footer-brand p { margin: 16px 0 20px; font-size: 14px; max-width: 320px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--ink-border);
  display: flex; align-items: center; justify-content: center;
}
.footer-social .icon { width: 17px; height: 17px; }
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }
.footer-col h4 { color: var(--ink-text); font-size: 13.5px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14.5px; transition: color .15s ease; }
.footer-col a:hover { color: var(--ink-text); }
.footer-bottom {
  border-top: 1px solid var(--ink-border); padding: 22px 0;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
  font-size: 13px;
}
.footer-bottom button {
  background: none; border: none; color: var(--ink-text-muted); font-size: 13px; padding: 0;
}
.footer-bottom button:hover { color: var(--ink-text); text-decoration: underline; }

/* ---------------------------------------------------------------
   Mobil sticky CTA sáv (telefon + időpont)
   --------------------------------------------------------------- */
.mobile-cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--ink); border-top: 1px solid var(--ink-border);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.mobile-cta-bar a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px; border-radius: 12px; font-weight: 700; font-size: 14px;
}
.mobile-cta-bar a:first-child { border: 1.5px solid var(--ink-border); color: var(--ink-text); }
.mobile-cta-bar a:last-child { background: var(--accent); color: var(--accent-ink); }
.mobile-cta-bar .icon { width: 17px; height: 17px; }
/* A lenti sáv saját magassága env(safe-area-inset-bottom)-tal nő (pl. "home
   indikátoros" iPhone-okon) — a fenntartott helynek is követnie kell ezt,
   különben a sáv eltakarja a lap alján lévő tartalom (pl. lábléc) alját. */
body.has-mobile-cta { padding-bottom: calc(74px + env(safe-area-inset-bottom)); }
@media (min-width: 960px) { .mobile-cta-bar { display: none; } body.has-mobile-cta { padding-bottom: 0; } }

/* ---------------------------------------------------------------
   Cookie sáv
   --------------------------------------------------------------- */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 90px; z-index: 200;
  max-width: 640px; margin: 0 auto;
  background: var(--ink); color: var(--ink-text);
  border: 1px solid var(--ink-border); border-radius: var(--radius-m);
  padding: 22px 24px; box-shadow: var(--shadow-strong);
  display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { font-size: 13.5px; color: var(--ink-text-muted); margin-bottom: 16px; }
.cookie-banner a { color: var(--ink-text); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
@media (min-width: 960px) { .cookie-banner { left: auto; right: 24px; bottom: 24px; } }
.cookie-banner__link-btn { color: var(--ink-text-muted); font-weight: 700; font-size: 13px; text-decoration: underline; }
.cookie-banner__link-btn:hover { color: var(--ink-text); }
.cookie-banner__detail { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--ink-border); }
.cookie-cat { margin-bottom: 14px; }
.cookie-cat .field-check { color: var(--ink-text); }
.cookie-cat .field-check input { margin-top: 2px; }
.cookie-cat p.hint { color: var(--ink-text-muted); margin: 4px 0 0 26px; font-size: 12px; }

/* ---------------------------------------------------------------
   Egyéb oldal-fejlécek (belső oldalak)
   --------------------------------------------------------------- */
.page-hero {
  background: var(--ink); color: var(--ink-text);
  padding: 52px 0 44px; border-bottom: 1px solid var(--ink-border);
}
.breadcrumbs { display: flex; gap: 8px; flex-wrap: wrap; font-size: 13px; color: var(--ink-text-muted); margin-bottom: 16px; }
.breadcrumbs a:hover { color: var(--ink-text); }
.page-hero p.lede { max-width: 620px; margin-top: 12px; }

.prose { max-width: 760px; }
.prose h2 { margin: 36px 0 14px; font-size: 1.4rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 14px; color: var(--body-text); }
.prose ul { margin-bottom: 14px; }
.prose li { position: relative; padding-left: 20px; margin-bottom: 8px; color: var(--body-text); }
.prose li::before { content: ""; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

/* ---------------------------------------------------------------
   Formok (foglalás / kapcsolat / checkout közös alap)
   --------------------------------------------------------------- */
.form-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .form-grid--2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 620px) { .form-grid--3 { grid-template-columns: repeat(3, 1fr); } }
/* Spam-csapda mező: valós látogatóknak láthatatlan, de nem display:none (azt
   néhány egyszerű bot ellenőrzi) — screen readerből is kimarad. */
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Kártyázott űrlap-konténer (pl. Kapcsolat oldal üzenetküldés) — kiemeli az
   űrlapot a szekció hátteréből, halvány gumi-vízjellel a sarokban. */
.form-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--paper-border);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-soft);
  padding: clamp(22px, 4vw, 34px);
  overflow: hidden;
}
.form-card__tire { position: absolute; right: -22px; top: -22px; width: 120px; height: 120px; opacity: 0.05; pointer-events: none; }
.form-card__foot { display: flex; justify-content: flex-end; margin-top: 4px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 13.5px; font-weight: 700; color: var(--body-text); }
.field .hint { font-size: 12.5px; color: var(--body-muted); font-weight: 400; }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--paper-border); border-radius: var(--radius-s);
  padding: 12px 14px; font-size: 15px; background: #fff; color: var(--body-text);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 4px rgba(255,106,26,0.14); outline: none;
}
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #D6493A; }
.field-error { font-size: 12.5px; color: #D6493A; font-weight: 600; }
fieldset { border: none; padding: 0; margin: 0; }
legend { font-weight: 800; font-size: 1.05rem; margin-bottom: 16px; padding: 0; }

.alert { border-radius: var(--radius-s); padding: 14px 18px; font-size: 14.5px; margin-bottom: 22px; display: flex; gap: 10px; align-items: flex-start; }
.alert .icon { width: 19px; height: 19px; flex-shrink: 0; margin-top: 1px; }
.alert-success { background: var(--success-bg); color: #1E7A46; }
.alert-error { background: #FDEBE8; color: #B23A2C; }
.alert-info { background: #EAF1F7; color: #2B5578; }

/* ---------------------------------------------------------------
   Foglalás lépések / dátum-idősáv választó
   --------------------------------------------------------------- */
.steps { display: flex; gap: 10px; margin-bottom: 36px; flex-wrap: wrap; }
.step-pill {
  display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700;
  color: var(--body-muted); padding: 8px 14px; border-radius: 999px; border: 1.5px solid var(--paper-border);
}
.step-pill__num { width: 20px; height: 20px; border-radius: 50%; background: var(--paper-alt); display: flex; align-items: center; justify-content: center; font-size: 11.5px; }
.step-pill.is-active { border-color: var(--accent); color: var(--accent-dark); background: #FFF4EC; }
.step-pill.is-active .step-pill__num { background: var(--accent); color: var(--accent-ink); }
.step-pill.is-done .step-pill__num { background: var(--success); color: #fff; }

.service-pick { display: grid; gap: 14px; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
.service-option {
  border: 1.5px solid var(--paper-border); border-radius: var(--radius-m); padding: 18px;
  cursor: pointer; transition: border-color .15s ease, background .15s ease;
  display: block; position: relative;
}
.service-option:hover { border-color: var(--steel-light); }
.service-option input { position: absolute; opacity: 0; pointer-events: none; }
.service-option.is-selected,
.service-option:has(input:checked) { border-color: var(--accent); background: #FFF7F1; box-shadow: 0 0 0 3px rgba(255,106,26,0.12); }
.service-option h4 { font-size: 15px; margin-bottom: 6px; }
.service-option .meta { font-size: 12.5px; color: var(--body-muted); display: flex; gap: 6px; align-items: center; }

/* ---------------------------------------------------------------
   Checkout: jelölőnégyzetek, elfogadási feltételek, form-actions
   --------------------------------------------------------------- */
.field-check { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.field-check input { width: auto; margin-top: 3px; flex-shrink: 0; }
.form-actions { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }

.consent-check {
  display: flex; align-items: flex-start; gap: 12px;
  border: 1.5px solid var(--paper-border); border-radius: var(--radius-s);
  padding: 14px 16px; margin-bottom: 12px; background: #fff;
}
.consent-check input { width: auto; margin-top: 2px; flex-shrink: 0; }
.consent-check label { font-size: 14px; line-height: 1.45; cursor: pointer; }
.consent-check a { text-decoration: underline; font-weight: 600; }
.consent-check.is-required { border-color: rgba(255,106,26,0.35); }

.checkout-review__row { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px dashed var(--paper-border); font-size: 14.5px; }
.checkout-review__row:last-child { border-bottom: none; }
.checkout-review__row.total { font-weight: 800; font-size: 17px; border-top: 1.5px solid var(--paper-border); border-bottom: none; padding-top: 14px; margin-top: 6px; }

.date-picker { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 10px; margin-bottom: 22px; scroll-snap-type: x proximity; }
.date-chip {
  scroll-snap-align: start; flex: 0 0 auto; width: 76px; text-align: center;
  border: 1.5px solid var(--paper-border); border-radius: var(--radius-m); padding: 12px 6px;
  cursor: pointer; background: #fff;
}
.date-chip .dow { font-size: 11.5px; color: var(--body-muted); text-transform: uppercase; letter-spacing: .04em; }
.date-chip .num { font-size: 19px; font-weight: 800; margin: 4px 0 2px; }
.date-chip .mon { font-size: 11px; color: var(--body-muted); }
.date-chip.is-selected { border-color: var(--accent); background: var(--accent); color: var(--accent-ink); }
.date-chip.is-selected .dow, .date-chip.is-selected .mon { color: var(--accent-ink); opacity: .8; }
.date-chip[aria-disabled="true"] { opacity: .35; cursor: not-allowed; }

.slot-grid { display: grid; gap: 10px; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); margin-bottom: 8px; }
.slot-btn {
  border: 1.5px solid var(--paper-border); border-radius: var(--radius-s); padding: 11px 8px;
  font-weight: 700; font-size: 14px; text-align: center; background: #fff;
}
.slot-btn:hover { border-color: var(--steel-light); }
.slot-btn.is-selected { border-color: var(--accent); background: var(--accent); color: var(--accent-ink); }
.slot-btn[disabled] { opacity: .3; cursor: not-allowed; text-decoration: line-through; }
.empty-state { text-align: center; padding: 40px 20px; color: var(--body-muted); }
.empty-state .icon { width: 40px; height: 40px; color: var(--paper-border); margin: 0 auto 14px; }

.loading-dots::after { content: '…'; animation: dots 1.2s steps(4, end) infinite; }
@keyframes dots { 0%,20%{content:'.'} 40%{content:'..'} 60%,100%{content:'...'} }

/* ---------------------------------------------------------------
   Webshop
   --------------------------------------------------------------- */
.shop-toolbar { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.shop-layout { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 920px) { .shop-layout { grid-template-columns: 260px 1fr; } }
.filter-panel { background: #fff; border: 1px solid var(--paper-border); border-radius: var(--radius-m); padding: 22px; align-self: start; }
@media (min-width: 920px) { .filter-panel { position: sticky; top: 96px; } }
.filter-group { padding: 16px 0; border-bottom: 1px solid var(--paper-border); }
.filter-group:last-child { border-bottom: none; }
.filter-group h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 12px; color: var(--body-muted); }
.filter-checks { display: flex; flex-direction: column; gap: 9px; font-size: 14px; }
.filter-checks label { display: flex; align-items: center; gap: 9px; }
.filter-range { display: flex; gap: 8px; align-items: center; }
.filter-range input {
  width: 100%; min-width: 0;
  padding: 9px 12px; font-size: 14px;
  border: 1.5px solid var(--paper-border); border-radius: var(--radius-s);
  background: #fff; color: var(--body-text);
  transition: border-color .15s ease;
}
.filter-range input:focus { border-color: var(--accent); outline: none; }
.filter-range input::-webkit-inner-spin-button,
.filter-range input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.filter-range input[type="number"] { -moz-appearance: textfield; appearance: textfield; }
.filter-range span { color: var(--body-muted); font-weight: 600; flex-shrink: 0; }

.product-card { background: #fff; border: 1px solid var(--paper-border); border-radius: var(--radius-m); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .18s ease, transform .18s ease; }
.product-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-3px); }
.product-card__img {
  aspect-ratio: 1.3/1; position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,106,26,0.10), transparent 55%),
    repeating-linear-gradient(135deg, rgba(20,22,26,0.035) 0 2px, transparent 2px 14px),
    var(--paper-alt);
  display: flex; align-items: center; justify-content: center;
}
.product-card__img .icon-badge {
  width: 68px; height: 68px; border-radius: 50%;
  background: linear-gradient(155deg, #FFF1E6, #FFE1CC);
  color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
}
.product-card__img .icon { width: 30px; height: 30px; }
.product-card__badge { position: absolute; top: 12px; left: 12px; background: var(--accent); color: var(--accent-ink); font-size: 11.5px; font-weight: 800; padding: 5px 10px; border-radius: 999px; }
.product-card__body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-card__brand { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--body-muted); font-weight: 700; }
.product-card__name { font-size: 15px; font-weight: 700; }
.product-card__size { font-size: 13px; color: var(--body-muted); }
.product-card__price { margin-top: auto; display: flex; align-items: baseline; gap: 8px; padding-top: 10px; }
.product-card__price strong { font-size: 19px; }
.product-card__price .old { text-decoration: line-through; color: var(--body-muted); font-size: 13px; }
.product-card__foot { display: flex; gap: 8px; padding: 0 18px 18px; }

.product-detail { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 860px) { .product-detail { grid-template-columns: 1fr 1fr; } }
.product-gallery__main {
  aspect-ratio: 1.15/1; border-radius: var(--radius-m); border: 1px solid var(--paper-border);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,106,26,0.10), transparent 55%),
    repeating-linear-gradient(135deg, rgba(20,22,26,0.035) 0 2px, transparent 2px 14px),
    var(--paper-alt);
}
.product-gallery__main .icon-badge {
  width: 96px; height: 96px; border-radius: 50%;
  background: linear-gradient(155deg, #FFF1E6, #FFE1CC);
  color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
}
.product-gallery__main .icon { width: 42px; height: 42px; }
.product-gallery__main span.caption { font-size: 13px; color: var(--body-muted); font-weight: 600; }
.spec-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.spec-table td { padding: 9px 0; border-bottom: 1px solid var(--paper-border); }
.spec-table td:first-child { color: var(--body-muted); width: 45%; }
.spec-table td:last-child { font-weight: 700; text-align: right; }
.qty-input { display: inline-flex; align-items: center; border: 1.5px solid var(--paper-border); border-radius: 999px; overflow: hidden; }
.qty-input button { width: 38px; height: 40px; background: none; border: none; font-size: 18px; }
.qty-input input { width: 46px; text-align: center; border: none; font-weight: 700; }

.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; font-size: 12.5px; text-transform: uppercase; letter-spacing: .04em; color: var(--body-muted); padding-bottom: 12px; border-bottom: 1.5px solid var(--paper-border); }
.cart-table td { padding: 16px 8px; border-bottom: 1px solid var(--paper-border); vertical-align: middle; }
.cart-table td:first-child { padding-left: 0; }
.cart-row__name { font-weight: 700; font-size: 14.5px; }
.cart-row__meta { font-size: 12.5px; color: var(--body-muted); }
.cart-summary { background: #fff; border: 1px solid var(--paper-border); border-radius: var(--radius-m); padding: 24px; }
@media (min-width: 880px) { .cart-summary { position: sticky; top: 96px; } }
.cart-summary .row { display: flex; justify-content: space-between; padding: 9px 0; font-size: 14.5px; }
.cart-summary .row.total { border-top: 1.5px solid var(--paper-border); margin-top: 8px; padding-top: 16px; font-size: 18px; font-weight: 800; }
.cart-page-layout { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 880px) { .cart-page-layout { grid-template-columns: 1fr 320px; } }
.mini-cart-badge { position: relative; }
.mini-cart-badge__count {
  position: absolute; top: -7px; right: -9px; background: var(--accent); color: var(--accent-ink);
  font-size: 10.5px; font-weight: 800; min-width: 18px; height: 18px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center; padding: 0 4px;
}

/* ---------------------------------------------------------------
   Pagináció / badge / apró elemek
   --------------------------------------------------------------- */
.badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; padding: 5px 11px; border-radius: 999px; }
.badge-neutral { background: var(--paper-alt); color: var(--body-muted); }
.badge-success { background: var(--success-bg); color: #1E7A46; }
.badge-warning { background: #FFF3E0; color: #B4650A; }
.badge-danger { background: #FDEBE8; color: #B23A2C; }
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
.pagination a, .pagination span { min-width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: 10px; border: 1.5px solid var(--paper-border); font-size: 14px; font-weight: 700; }
.pagination a:hover { border-color: var(--accent); color: var(--accent-dark); }
.pagination .is-current { background: var(--ink); color: #fff; border-color: var(--ink); }

@media (max-width: 640px) {
  .section { padding: 44px 0; }
  .card { padding: 24px 20px; }
}

/* ---------------------------------------------------------------
   Gumiabroncs-illusztrációk (hero + BHP sáv díszítés) — igazi, forgó
   gumi/felni grafika a márka arculatához (ld. a cégkártya logóját).
   --------------------------------------------------------------- */
.tire-illustration { display: block; width: 100%; height: 100%; }

@keyframes gt-tire-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* A hero-illusztráció (alváz + két kerék) jobb alul "landol" a hero sávban,
   a szöveges tartalomtól (bal, max 660px) távol — így telefonon is elfér
   anélkül, hogy a szöveg alá lógna. Mindkét kerék ÁLLANDÓ, azonos sebességgel
   forog (nincs hover-gyorsítás): az animation-duration futás közbeni
   módosítása ugrálást / akadozást okozott ("hol gyors, hol lassú" hiba). */
.hero-tire {
  position: absolute; right: -2%; bottom: -9%;
  width: clamp(300px, 42vw, 560px);
  aspect-ratio: 760 / 260;
  height: auto;
  z-index: 1; pointer-events: none;
  filter: drop-shadow(0 20px 36px rgba(0,0,0,0.4));
}
.hero-tire__spin {
  width: 100%; height: 100%;
  animation: gt-tire-spin 16s linear infinite;
}
.tire-axle__wheel {
  animation: gt-tire-spin 5s linear infinite;
  transform-box: fill-box;
  transform-origin: 50% 50%;
}

.bhp-band__tire {
  position: absolute; right: 4%; bottom: -12%;
  width: clamp(120px, 14vw, 190px); height: clamp(120px, 14vw, 190px);
  opacity: 0.35; z-index: 0; pointer-events: none;
}
.bhp-band__tire .hero-tire__spin { animation-duration: 22s; }

@media (max-width: 900px) {
  .hero-tire {
    right: 50%; bottom: -5%; transform: translateX(50%);
    width: min(90vw, 420px);
    opacity: 0.7;
  }
}
@media (max-width: 460px) {
  .hero-tire { width: 96vw; bottom: -3%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-tire__spin, .tire-axle__wheel { animation: none; }
}

/* ---------------------------------------------------------------
   Jogi dokumentumok (ÁSZF, adatkezelés, elállás, stb.) — verziójelzés,
   nyomtatás/mentés. A .print-only tartalom csak nyomtatáskor jelenik meg
   (a képernyőn a page-hero címe már megjeleníti ugyanazt).
   --------------------------------------------------------------- */
.legal-doc__meta {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding-bottom: 18px; margin-bottom: 22px; border-bottom: 1px solid var(--paper-border);
  font-size: 13.5px; color: var(--body-muted);
}
.legal-doc__tools { margin-left: auto; }
.print-only { display: none; }
@media print {
  .site-header, .site-footer, .mobile-cta-bar, .cookie-banner, .no-print, .page-hero .breadcrumbs { display: none !important; }
  .print-only { display: block; }
  body { background: #fff; }
  .legal-doc__content { max-width: none; }
  a[href]::after { content: none !important; }
}
