:root {
  --ink: #1c2732;
  --muted: #6b7885;
  --line: #e5e9ee;
  --bg: #f6f8fa;
  --card: #ffffff;
  --brand: #1f6f78;      /* SpaTrend teal */
  --brand-dark: #16565d;
  --accent: #c8a15a;     /* premium gold */
  --ok: #2e7d5b;
  --sold: #b23b3b;
  --radius: 14px;
  --shadow: 0 2px 10px rgba(28,39,50,.06), 0 8px 24px rgba(28,39,50,.05);
}
* { box-sizing: border-box; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font: 16px/1.55 -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
a { color: var(--brand); text-decoration: none; }
h1 { font-size: 1.6rem; margin: .2em 0 .4em; }
h2 { font-size: 1.25rem; margin: 1.2em 0 .5em; }
h3 { font-size: 1.02rem; margin: 0 0 .3em; }
.muted { color: var(--muted); }
.small { font-size: .85rem; }
.center { text-align: center; margin-top: 1rem; }
.mt { margin-top: 1.2rem; }

/* header */
header.site {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; row-gap: .4rem;
  gap: 1rem; padding: .7rem 1rem; background: #fff; border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 10;
}
.brand { font-weight: 700; letter-spacing: .2px; display: inline-flex; align-items: center; gap: .6rem; }
.brand-logo-full { height: 34px; width: auto; display: block; flex: none; }
.brand-mark { color: var(--brand); }
.brand-sub { color: var(--ink); font-weight: 600; }
header nav { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; row-gap: .4rem; min-width: 0; }
header nav a { font-weight: 600; }

main { max-width: none; margin: 0 auto; padding: 1rem clamp(1rem, 4vw, 3rem); }

/* buttons */
.btn {
  display: inline-block; border: 1px solid var(--line); background: #fff; color: var(--ink);
  padding: .55rem .9rem; border-radius: 10px; font-weight: 600; cursor: pointer; font-size: .95rem;
}
.btn-primary { background: var(--brand); border-color: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); }
.btn-ghost { background: #fff; }
.btn-lg { padding: .75rem 1.3rem; font-size: 1.02rem; }
.btn-sm { padding: .35rem .6rem; font-size: .82rem; }

/* hero */
.hero {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff; border-radius: var(--radius); padding: 2rem 1.3rem; margin: .5rem 0 1.5rem;
}
.hero h1 { color: #fff; font-size: 1.8rem; margin-top: 0; }
.hero .lead { color: #e7f1f2; max-width: 640px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1rem; }
.hero .btn-ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.4); }

.lead { font-size: 1.05rem; color: var(--muted); }
.block { margin: 1.5rem 0; }
.narrow { max-width: 640px; margin-left: auto; margin-right: auto; }

/* grid + cards */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); color: var(--ink); display: block; transition: transform .08s ease; }
.card:hover { transform: translateY(-2px); }
.card-img { height: 170px; background-size: cover; background-position: center; position: relative; background-color: #dfe6ea; }
.card-body { padding: .7rem .8rem .9rem; }
.card-title { font-weight: 700; font-size: 1rem; line-height: 1.3; margin-bottom: .2rem; }
.card-meta { color: var(--muted); font-size: .85rem; }
.card-loc { margin-top: .1rem; }
.card-price { margin-top: .4rem; font-weight: 800; color: var(--brand-dark); font-size: 1.05rem; }

/* badges */
.badge { display: inline-block; font-size: .72rem; font-weight: 700; padding: .15rem .45rem; border-radius: 999px; margin: .3rem .3rem 0 0; }
.card-img .badge { position: static; float: left; margin: .5rem 0 0 .5rem; backdrop-filter: blur(2px); }
.badge-verified { background: rgba(31,111,120,.12); color: var(--brand-dark); border: 1px solid rgba(31,111,120,.3); }
.card-img .badge-verified { background: rgba(255,255,255,.92); }
.badge-featured { background: var(--accent); color: #3b2c07; }
.badge-sold { background: var(--sold); color: #fff; }

/* filters */
.filters { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: .7rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem; margin-bottom: 1rem; }
.filters .f { display: flex; flex-direction: column; gap: .25rem; }
.filters label { font-size: .8rem; color: var(--muted); font-weight: 600; }
.filters input, .filters select { padding: .5rem; border: 1px solid var(--line); border-radius: 8px; font-size: .95rem; }
.f-actions { flex-direction: row; align-items: flex-end; gap: .5rem; }

/* detail */
.gallery-main { height: 320px; background-size: contain; background-repeat: no-repeat; background-position: center; border-radius: var(--radius); background-color: #fff; }
.gallery-thumbs { display: flex; gap: .5rem; margin-top: .5rem; flex-wrap: wrap; }
.thumb { width: 76px; height: 60px; background-size: cover; background-position: center; border-radius: 8px; background-color: #dfe6ea; }
.detail-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; margin-top: 1rem; }
.price-big { font-size: 1.6rem; font-weight: 800; color: var(--brand-dark); }
.facts { list-style: none; padding: 0; margin: .8rem 0; border-top: 1px solid var(--line); }
.facts li { display: flex; justify-content: space-between; padding: .5rem 0; border-bottom: 1px solid var(--line); }
.facts li span { color: var(--muted); }
.desc { margin-top: .8rem; }
.detail-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem; box-shadow: var(--shadow); }

/* forms */
form.stack label, .detail-form label { display: block; margin-bottom: .7rem; font-weight: 600; font-size: .9rem; }
form input, form select, form textarea { width: 100%; padding: .6rem; border: 1px solid var(--line); border-radius: 8px; font-size: 1rem; font-family: inherit; margin-top: .2rem; }
.row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: .7rem; }
.consent { font-weight: 400 !important; font-size: .85rem !important; color: var(--muted); display: flex; gap: .5rem; align-items: flex-start; }
.consent input { width: auto; margin-top: .2rem; }

/* banners */
.banner { border-radius: var(--radius); padding: 1rem 1.1rem; margin: .8rem 0; }
.banner-ok { background: rgba(46,125,91,.1); border: 1px solid rgba(46,125,91,.3); color: #1c5e42; }
.banner-sold { background: rgba(178,59,59,.1); border: 1px solid rgba(178,59,59,.3); color: var(--sold); }
.banner-warn { background: rgba(196,148,42,.12); border: 1px solid rgba(196,148,42,.35); color: #7a5a14; }
.upload-box { display: block; border: 2px dashed rgba(46,125,91,.45); border-radius: var(--radius); padding: 1rem 1.1rem; background: rgba(46,125,91,.05); cursor: pointer; font-weight: 600; }
.upload-box .muted { display: block; font-weight: 400; margin: .3rem 0 .5rem; }
.upload-box input[type="file"] { margin-top: .2rem; }

/* why */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.why-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem; box-shadow: var(--shadow); }

/* table */
.tbl { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-bottom: 1.5rem; font-size: .9rem; }
.tbl th, .tbl td { text-align: left; padding: .55rem .6rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.tbl th { background: #f0f3f5; font-size: .8rem; text-transform: uppercase; letter-spacing: .03em; color: var(--muted); }

/* footer */
.site-foot { max-width: none; margin: 2rem auto 3rem; padding: 1.2rem clamp(1rem, 4vw, 3rem); border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem; }

@media (min-width: 780px) {
  .detail-grid { grid-template-columns: 1.4fr 1fr; }
  .hero { padding: 3rem 2.5rem; }
  .hero h1 { font-size: 2.2rem; }
}
@media (max-width: 560px) {
  .row { grid-template-columns: 1fr; }
}

/* language switcher */
.langsel { position: relative; }
.langsel > summary {
  list-style: none; cursor: pointer; font-weight: 600; color: var(--ink);
  padding: .35rem .55rem; border: 1px solid var(--line); border-radius: 10px;
  display: inline-flex; align-items: center; gap: .35rem; white-space: nowrap;
}
.langsel > summary::-webkit-details-marker { display: none; }
.langsel[open] > summary { border-color: var(--brand); }
.langmenu {
  position: absolute; right: 0; top: calc(100% + 6px); z-index: 30;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow); padding: .35rem; min-width: 170px;
  max-height: 60vh; overflow: auto;
}
.langmenu a {
  display: block; padding: .5rem .7rem; border-radius: 8px; color: var(--ink); font-weight: 500;
}
.langmenu a:hover { background: var(--bg); }
.langmenu a.cur { color: var(--brand); font-weight: 700; }
.eur { color: var(--muted); font-weight: 500; font-size: .88em; }
.auto-note { margin: .1rem 0 .6rem; }
.auto-note a { text-decoration: underline; }

/* mobile: the switchers must never widen the page */
@media (max-width: 640px) {
  header.site { padding: .55rem .7rem; gap: .5rem; }
  header nav { gap: .45rem; }
  header nav .btn { padding: .4rem .6rem; font-size: .85rem; }
  .langsel > summary { padding: .3rem .45rem; font-size: .85rem; }
}
html, body { overflow-x: hidden; }

/* ---------- structure v2 (2026-09-11) ---------- */
nav.mainnav { flex: 1; gap: 1rem; }
nav.mainnav a { color: var(--ink); font-size: .92rem; white-space: nowrap; }
nav.mainnav a:hover { color: var(--brand); }
.hero2 { background: url('/public/site/hero-aria.webp') center 38%/cover no-repeat; position: relative; color: #fff; }
.hero2::before { content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(7,42,63,.92) 0%, rgba(9,55,84,.75) 38%, rgba(11,70,104,.35) 65%, rgba(11,57,84,.15) 100%); }
.hero2-inner { position: relative; max-width: 1100px; margin: 0 auto; padding: 3.4rem 1.2rem 3.8rem;
  display: flex; align-items: center; gap: 2.2rem; }
.hero2-txt { flex: 1.25; }
.kicker { display: inline-block; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.35);
  padding: .3rem .85rem; border-radius: 999px; font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: .9rem; }
.hero2 h1 { font-size: 2.3rem; line-height: 1.15; margin: 0 0 .5rem; }
.hero2 p { color: #dff1f8; max-width: 34rem; }
.hero2-ctas { display: flex; gap: .7rem; margin-top: 1.2rem; flex-wrap: wrap; }
.hero2-img { flex: 1; text-align: center; }
.hero2-img img { max-width: 300px; width: 100%; filter: drop-shadow(0 20px 34px rgba(0,20,35,.5)); }
.btn-white { background: #fff; color: #0b3954; }
.btn-outline { background: rgba(255,255,255,.12); border: 1.5px solid rgba(255,255,255,.55); color: #fff; }
.btn-gold { background: var(--accent); color: #3b2b07; border: 0; cursor: pointer; }
.usps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: .9rem; }
.usp { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: .9rem 1rem;
  display: flex; gap: .7rem; align-items: center; box-shadow: var(--shadow); }
.usp-ic { font-size: 1.4rem; }
.usp b { display: block; font-size: .95rem; }
.usp span { font-size: .82rem; color: var(--muted); }
.catgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; }
.catcard { border-radius: var(--radius); overflow: hidden; position: relative; min-height: 300px;
  display: flex; flex-direction: column; justify-content: flex-end; color: #fff; box-shadow: var(--shadow); }
.catcard-ph { position: absolute; inset: 0; background-size: cover; background-position: center; }
.catcard::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,40,60,0) 30%, rgba(8,40,60,.55) 62%, rgba(6,32,49,.9) 100%); }
.catcard-body { position: relative; z-index: 1; padding: 1.1rem 1.2rem; }
.catcard-tag { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #bfe6f4; }
.catcard h3 { color: #fff; font-size: 1.35rem; margin: .2rem 0 .3rem; }
.catcard-go { font-weight: 700; font-size: .88rem; color: #fff; }
.picker-band { background: #eaf6fb; border-radius: var(--radius); padding: 1.3rem 1.5rem;
  display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.picker-q { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, #3fb7d8, #1273a8);
  color: #fff; font-size: 1.4rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex: none; }
.picker-band .btn { margin-left: auto; }
.sechead { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.knowgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.knowcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem;
  box-shadow: var(--shadow); color: var(--ink); display: block; }
.knowcard b { display: block; margin: .4rem 0 .3rem; font-size: 1.02rem; }
.knowcard-dark { background: linear-gradient(150deg, #0b3954, #1273a8); color: #fff; border: 0; }
.knowcard-dark b { color: #fff; }
.knowcard-dark p { color: #cfe7f2; }
.lead-band { background: linear-gradient(115deg, #0b3954, #1273a8 60%, #2b9cc4); border-radius: 16px; color: #fff;
  padding: 1.6rem 1.8rem; display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }
.lead-band h3 { color: #fff; font-size: 1.25rem; margin-bottom: .2rem; }
.lead-band p { color: #d5ecf6; margin: 0; font-size: .92rem; max-width: 30rem; }
.sub-form { margin-left: auto; display: flex; gap: .6rem; align-items: center; flex-wrap: wrap; }
.sub-form input[type=email], .sub-form-v input[type=email] { border: 1px solid rgba(255,255,255,.5);
  background: rgba(255,255,255,.14); color: #fff; border-radius: 999px; padding: .65rem 1.1rem; font-size: .9rem; min-width: 220px; }
.sub-form input::placeholder, .sub-form-v input::placeholder { color: #bfe0ee; }
.sub-form .consent, .sub-form-v .consent { color: #cfe7f2; display: flex; gap: .35rem; align-items: center; max-width: 240px; }
.sub-form-v { display: flex; flex-direction: column; gap: .5rem; margin-top: .6rem; }
.sub-form-v input[type=email] { border-radius: 9px; min-width: 0; }
.cathero { min-height: 240px; background-size: cover; background-position: center; position: relative;
  display: flex; align-items: flex-end; color: #fff; }
.cathero-scrim { width: 100%; padding: 3.5rem 1.2rem 1.4rem;
  background: linear-gradient(180deg, rgba(8,40,60,0), rgba(6,32,49,.85)); }
.cathero-scrim > * { max-width: 1100px; margin-left: auto; margin-right: auto; display: block; }
.cathero h1 { color: #fff; margin-top: .3rem; }
.narrowish { max-width: 820px; margin-left: auto; margin-right: auto; }
.article h2 { margin-top: 1.4em; }
.faq { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: .8rem 1rem; margin-bottom: .6rem; }
.faq summary { font-weight: 700; cursor: pointer; }
.faq p { margin: .6rem 0 .2rem; color: var(--muted); }
.pick-q { margin-top: 1.4rem; }
.pick-opts { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .5rem; }
.pick-opt { border: 1.5px solid var(--line); background: #fff; border-radius: 999px; padding: .55rem 1rem;
  font-size: .9rem; cursor: pointer; }
.pick-opt.on { border-color: var(--brand); background: #eaf6fb; font-weight: 700; }
.pick-result { margin-top: 1.6rem; }
.pick-prod { display: flex; gap: 1rem; align-items: center; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1rem; box-shadow: var(--shadow); color: var(--ink); }
.pick-prod img { width: 110px; height: 110px; object-fit: contain; }
.pick-price { font-weight: 800; color: #0b3954; margin-top: .3rem; }
.pool-facts { border: 1px solid var(--line); border-radius: 10px; padding: .8rem 1rem; margin: .8rem 0; }
.pool-facts legend { font-weight: 700; font-size: .92rem; padding: 0 .4rem; }
@media (max-width: 860px) {
  .hero2-inner { flex-direction: column; text-align: left; }
  .hero2-img { display: none; }
  nav.mainnav { order: 3; width: 100%; overflow-x: auto; }
}

/* ---------- mobile nav + labeled switchers (2026-09-11 delutan) ---------- */
.switch-wrap { display: inline-flex; align-items: center; gap: .25rem; background: #f2f7fa;
  border: 1px solid var(--line); border-radius: 999px; padding: .15rem .5rem; }
.switch-ic { font-size: .95rem; }
.switch-wrap select.switcher { border: 0; background: transparent; font-size: .85rem; padding: .2rem .1rem; }
.burger { display: none; border: 1px solid var(--line); background: #fff; border-radius: 9px;
  font-size: 1.25rem; line-height: 1; padding: .35rem .6rem; cursor: pointer; }
.mnav { display: none; }
@media (max-width: 900px) {
  nav.mainnav { display: none; }
  .burger { display: inline-flex; align-items: center; justify-content: center; }
  .hdr-right .switch-wrap { display: none; }
  /* Mobile header: logo centered on top; cart + language on the left, larger hamburger top-right. */
  header.site { position: relative; justify-content: center; min-height: 3.4rem; padding: .5rem .6rem; }
  .brand { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); white-space: nowrap; }
  .brand .brand-sub { display: none; }                       /* only the logo centered on mobile */
  .brand-logo-full { height: 25px; }                         /* compact so the logo clears the cart */
  .hdr-right { position: static; }
  .cart-link .cart-txt { display: none; }
  .cart-link .cart-ic { font-size: 1.55rem; }
  .hdr-right .switch-wrap { display: none; }                 /* country switch -> mobile menu */
  /* language switch stays visible but compact: globe icon + arrow, name hidden until tapped */
  .hdr-right .switch-wrap:last-of-type { display: inline-flex; position: absolute; left: .5rem; top: 50%; transform: translateY(-50%);
    padding: .2rem .3rem; max-width: 3.4rem; }
  .hdr-right .switch-wrap:last-of-type .switch-ic { display: inline; font-size: 1.15rem; }
  .hdr-right .switch-wrap:last-of-type select.switcher { color: transparent; width: 1.3rem; padding: .2rem 0; }
  .hdr-right .cart-link { position: absolute; right: 3rem; left: auto; top: 50%; transform: translateY(-50%); padding: .25rem; }
  .burger { position: absolute; right: .5rem; top: 50%; transform: translateY(-50%);
    width: 2.9rem; height: 2.9rem; font-size: 1.7rem; border-radius: 11px; }
  .mnav.open { display: block; background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(28,39,50,.12); }
  .mnav a { display: block; padding: .85rem 1.2rem; border-bottom: 1px solid #eef3f6;
    font-weight: 600; color: var(--ink); }
  .mnav-switch { display: flex; align-items: center; justify-content: space-between; gap: .8rem;
    padding: .7rem 1.2rem; border-bottom: 1px solid #eef3f6; font-size: .9rem; }
  .mnav-switch select.switcher { max-width: 55%; }
}

/* ---------- cart icon + badge (header) ---------- */
.cart-link { position: relative; display: inline-flex; align-items: center; gap: .35rem; font-weight: 600; padding: .35rem .5rem; border-radius: 10px; }
.cart-link:hover { background: rgba(31,111,120,.08); }
.cart-ic { font-size: 1.15rem; line-height: 1; }
.cart-badge { min-width: 1.2rem; height: 1.2rem; padding: 0 .35rem; border-radius: 999px; background: var(--brand); color: #fff; font-size: .72rem; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; }
.cart-badge[hidden] { display: none; }

/* ---------- quantity stepper ---------- */
.stepper { display: inline-flex; align-items: stretch; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: #fff; width: max-content; }
.stepper .step { width: 2.2rem; border: 0; background: #f0f3f5; color: var(--brand-dark); font-size: 1.1rem; font-weight: 700; cursor: pointer; line-height: 1; padding: 0; margin: 0; }
.stepper .step:hover { background: var(--brand); color: #fff; }
.stepper .step-val { width: 2.6rem; border: 0; border-left: 1px solid var(--line); border-right: 1px solid var(--line); text-align: center; font-size: 1rem; font-weight: 700; padding: .45rem 0; margin: 0; border-radius: 0; }
.stepper .step-val:focus { outline: 2px solid rgba(31,111,120,.35); outline-offset: -2px; }
.qty-row { display: flex; align-items: center; gap: .7rem; margin: .6rem 0 1rem; }
.qty-lbl { font-weight: 600; }
.add-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem; box-shadow: var(--shadow); margin-top: .8rem; }

/* ---------- cart table ---------- */
.cart-tbl td { vertical-align: middle; }
.cart-prod { display: flex; align-items: center; gap: .7rem; }
.cart-thumb { display: block; width: 54px; height: 54px; border-radius: 8px; background-size: cover; background-position: center; background-color: #eef3f6; border: 1px solid var(--line); flex: none; }
.cart-title { display: flex; align-items: center; gap: .5rem; }
.cart-title-ic { font-size: 1.5rem; line-height: 1; }
.cart-name { font-weight: 600; color: var(--ink); }
.cart-name:hover { color: var(--brand); }
.cart-unit { color: var(--muted); white-space: nowrap; }
.cart-line b { font-size: 1rem; color: var(--brand-dark); white-space: nowrap; }
.rm-btn { width: 2rem; height: 2rem; border-radius: 8px; border: 1px solid var(--line); background: #fff; color: var(--muted); font-size: 1.3rem; line-height: 1; cursor: pointer; }
.rm-btn:hover { background: #fdecec; border-color: #f0b4b4; color: #c0392b; }
.cart-row.busy { opacity: .5; pointer-events: none; }
.cart-summary { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.2rem; box-shadow: var(--shadow); max-width: 22rem; margin-left: auto; display: grid; gap: .45rem; }
.cart-summary .total { font-size: 1.15rem; border-top: 1px solid var(--line); padding-top: .55rem; margin-top: .2rem; }
.cart-summary .total b { color: var(--brand-dark); }
.cart-summary .btn { margin-top: .5rem; text-align: center; }

@media (max-width: 640px) {
  /* Portrait mobile cart row = card: large product photo on the left, details on the right,
     remove (X) pinned top-right so it never overlaps the product name. */
  .cart-tbl thead { display: none; }
  .cart-tbl, .cart-tbl tbody { display: block; width: 100%; }
  .cart-row { display: grid; grid-template-columns: 84px 1fr; column-gap: .9rem; row-gap: .25rem;
    align-items: center; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: .8rem;
    padding: .7rem 2.6rem .7rem .7rem; position: relative; background: #fff; }
  .cart-row > td:not(.cart-rm) { display: contents; }
  .cart-prod { display: contents; }
  .cart-thumb { grid-column: 1; grid-row: 1 / span 3; width: 84px; height: 84px; align-self: start; }
  .cart-name { grid-column: 2; font-size: 1rem; line-height: 1.3; }
  .cart-unit { grid-column: 2; color: var(--muted); font-size: .9rem; }
  .cart-row .stepper { grid-column: 2; }
  .cart-line { grid-column: 2; }
  .cart-line b { font-size: 1.05rem; }
  .cart-rm { display: block; position: absolute; top: .5rem; right: .5rem; margin: 0; }
  .cart-summary { max-width: none; }
}

/* ---------- lead wizard ---------- */
.wizard { max-width: 34rem; margin: 1rem auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.6rem 1.5rem 1.4rem; }
.wz-progress { height: 6px; background: #eef3f6; border-radius: 999px; overflow: hidden; margin-bottom: 1.4rem; }
.wz-bar { display: block; height: 100%; background: var(--brand); transition: width .3s ease; }
.wz-step h1 { font-size: 1.4rem; margin: 0 0 .3rem; }
.wz-step > .muted { margin: 0 0 1.1rem; }
.wz-input { width: 100%; padding: .7rem .8rem; border: 1px solid var(--line); border-radius: 10px; font-size: 1.05rem; font-family: inherit; }
.wz-input:focus { outline: 2px solid rgba(31,111,120,.35); outline-offset: -1px; border-color: var(--brand); }
.wz-input.wz-err { border-color: #d9534f; background: #fdf2f2; }
.wz-lbl { display: block; font-weight: 600; margin: 0 0 .9rem; font-size: .95rem; }
.wz-lbl .wz-input { margin-top: .3rem; font-weight: 400; }
.wz-row { display: flex; gap: .8rem; }
.wz-row .wz-lbl { flex: 1; min-width: 0; }
.wz-cats { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; margin-bottom: 1rem; }
.wz-cat { padding: 1rem .8rem; border: 1.5px solid var(--line); border-radius: 12px; background: #fff; color: var(--ink); font-weight: 600; font-size: 1rem; cursor: pointer; text-align: center; font-family: inherit; transition: all .1s ease; }
.wz-cat:hover { border-color: var(--brand); background: rgba(31,111,120,.05); }
.wz-cat.sel { border-color: var(--brand); background: var(--brand); color: #fff; }
.wz-consent { display: flex; align-items: flex-start; gap: .5rem; margin: .3rem 0 0; padding: .6rem; border-radius: 8px; }
.wz-consent.wz-err { background: #fdf2f2; }
.wz-consent input { margin-top: .2rem; }
.wz-nav { display: flex; justify-content: space-between; gap: .8rem; margin-top: 1.3rem; }
.wz-nav .wz-next, .wz-nav .wz-submit { margin-left: auto; }
.wz-done { text-align: center; }
.wz-check { width: 3.4rem; height: 3.4rem; border-radius: 50%; background: var(--brand); color: #fff; font-size: 1.8rem; display: inline-flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
@media (max-width: 460px) { .wz-cats { grid-template-columns: 1fr; } .wz-row { flex-direction: column; gap: 0; } }

/* Finn intro band */
.finn-band{display:grid;grid-template-columns:1fr 1.2fr;gap:32px;align-items:center;background:linear-gradient(135deg,#eef7fb,#e3f0fa);border-radius:18px;padding:36px}
.finn-band h2{margin:6px 0 10px}
.ytwrap{position:relative;width:100%;aspect-ratio:16/9;border-radius:14px;overflow:hidden;box-shadow:0 10px 30px rgba(6,114,177,.18)}
.ytwrap iframe{position:absolute;inset:0;width:100%;height:100%;border:0}
@media (max-width:800px){.finn-band{grid-template-columns:1fr;padding:22px;gap:18px}}
/* legal pages (2026-09-17) */
.seller-box{background:var(--card-bg,#f4f9fc);border:1px solid rgba(6,114,177,.18);border-radius:12px;padding:14px 16px;margin:10px 0 16px;line-height:1.55}
.foot-legal a{color:inherit;text-decoration:underline;text-underline-offset:2px}
.foot-legal{margin:6px 0}

/* ---------- desktop-atalakitas (2026-09-18, Roland spec: GardenTrend-szeru; mobil valtozatlan) ---------- */
@media (min-width: 901px) {
  /* 1) teljes felso menusor, ala-huzasos hoverrel; a szlogen helyett a logo beszel */
  header.site { padding: .8rem clamp(1rem, 3vw, 2.2rem); }
  .brand .brand-sub { display: none; }
  nav.mainnav { justify-content: center; gap: clamp(.65rem, 1.3vw, 1.3rem); }
  nav.mainnav a { font-size: .93rem; padding: .3rem 0; border-bottom: 2px solid transparent; }
  nav.mainnav a:hover { border-bottom-color: var(--brand); }
  .brand-logo-full { height: 38px; }

  /* 2) hero vagas nelkul: a teljes foto contain-nel jobbra, szoveg a bal savban */
  .hero2 { background-size: contain; background-position: right center; background-color: #072a3f; }
  .hero2-inner { max-width: none; padding: 0 clamp(1.5rem, 5vw, 4.5rem); min-height: clamp(430px, 33vw, 540px); }
  .hero2-txt { flex: 0 1 44%; }
  .hero2 h1 { font-size: clamp(2.4rem, 2.6vw, 3rem); }
  .hero2-img { display: none; } /* a foto maga a hero, a flakon-montazs ne takarja a kompoziciot */

  /* 4) termekkepek vagas nelkul (lista + termekoldal galeria) */
  .card-img { height: 220px; background-size: contain; background-repeat: no-repeat; background-color: #fff;
    background-origin: content-box; padding: .7rem; }
  .gallery-main { height: 420px; background-size: contain; background-repeat: no-repeat; background-color: #fff;
    background-origin: content-box; padding: 1rem; }
}
@media (min-width: 901px) and (max-width: 1199px) {
  .catgrid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1200px) {
  /* teljes menusor EGY sorban szeles kijelzon */
  header.site { flex-wrap: nowrap; gap: 1.1rem; }
  header nav { flex-wrap: nowrap; }
  nav.mainnav { flex-wrap: nowrap; flex: 1 1 auto; min-width: 0; }
  /* 3) kategoria-racs: 5 kartya egy sorban, nincs arva masodik sor */
  .catgrid { grid-template-columns: repeat(5, 1fr); gap: 1.1rem; }
  .catcard { min-height: 340px; }
  main { max-width: 1440px; }
}

/* --- product video (Finn mascot) --- */
.product-video { margin-top: 1.1rem; }
.product-video .video-h { font-size: 1.05rem; margin: 0 0 .5rem; }
.product-video video { width: 100%; border-radius: var(--radius); background: #000; display: block; }

/* --- product image gallery thumbnails --- */
.gallery-thumbs { display: flex; gap: .5rem; margin-top: .6rem; flex-wrap: wrap; }
.gallery-thumb { width: 64px; height: 64px; border-radius: 8px; border: 2px solid transparent; background-size: cover; background-position: center; background-color: #dfe6ea; cursor: pointer; padding: 0; }
.gallery-thumb.active { border-color: #2a7d8c; }

/* --- cart icon in add-to-cart button --- */
.btn-cart { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; }
.btn-cart .cart-ico { flex: none; }
