/* ═══════════════════════════════════════════════════
   KLIMA.AL v2 — LG-inspired stylesheet
   ═══════════════════════════════════════════════════ */

:root {
  --red:        #9b1b2e;
  --red-dark:   #7a1523;
  --black:      #0b1220;
  --dark:       #141f2e;
  --dark2:      #0e1c2f;
  --ice:        #5ab0d0;
  --gray:       #6b7280;
  --gray-lt:    #f4f5f7;
  --bg-lt:      #f4f5f7;
  --white:      #ffffff;
  --border:     rgba(255,255,255,.12);
  --border-lt:  #e5e7eb;
  --radius:     10px;
  --shadow:     0 2px 20px rgba(0,0,0,.08);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.14);
  --font:       'Manrope', system-ui, sans-serif;
  --tr:         .25s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  background: var(--black);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: max(24px, env(safe-area-inset-left));
  padding-right: max(24px, env(safe-area-inset-right));
}

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 28px;
  border-radius: 6px;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .02em;
  transition: var(--tr);
  white-space: nowrap;
}
.btn-red  {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 16px rgba(155,27,46,.3);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-red::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -200%;
  width: 200%;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,.22) 50%, transparent 65%);
  transition: left .7s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  z-index: -1;
}
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-red:hover::after { left: 100%; }
.btn:active { transform: translateY(0) scale(.97); transition-duration: .08s; }
@media (prefers-reduced-motion: reduce) {
  .btn-red::after { display: none; }
}
.btn-sm   { padding: 9px 18px; font-size: .82rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-ghost-white { border: 2px solid rgba(255,255,255,.7); color: #fff; }
.btn-ghost-white:hover { background: rgba(255,255,255,.1); }
.btn-outline-dark { border: 2px solid var(--dark); color: var(--dark); }
.btn-outline-dark:hover { background: var(--dark); color: #fff; }

/* ── Logo image ──────────────────────────────────── */
.logo-img {
  height: 42px;
  width: auto;
  display: block;
  background: #fff;
  border-radius: 8px;
  padding: 4px 10px;
}
.footer .logo-img { height: 38px; opacity: .9; }

/* ── Section helpers ─────────────────────────────── */
.sec-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.sec-label::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin-left: 10px;
  opacity: .55;
  transition: width .7s cubic-bezier(.2,.6,.2,1);
}
.sec-label.in-view::after { width: 32px; }
@media (prefers-reduced-motion: reduce) {
  .sec-label::after { transition: none; }
  .sec-label.in-view::after { width: 32px; }
}
.sec-label.light { color: rgba(255,255,255,.7); }

.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 48px; flex-wrap: wrap; }
.sec-head h2 { font-size: 1.9rem; font-weight: 800; }
.sec-head--center { flex-direction: column; align-items: center; text-align: center; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════
   HEADER (DARK)
   ═══════════════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.header.scrolled {
  background: rgba(11,18,32,.78);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
          backdrop-filter: blur(16px) saturate(160%);
  border-bottom-color: rgba(255,255,255,.06);
  box-shadow: 0 4px 24px rgba(0,0,0,.32);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .header.scrolled { background: rgba(11,18,32,.96); }
}

.header-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 24px;
}

/* Logo */
.logo { font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; flex-shrink: 0; }
.logo-k   { color: #fff; }
.logo-dot { color: var(--red); }
.logo-al  { color: var(--red); }
.logo-white .logo-k { color: #fff; }

/* Nav */
.nav { margin: 0 auto; }
.nav-list { display: flex; gap: 0; }
.nav-list > li { position: relative; }
.nav-link {
  display: block;
  padding: 8px 16px;
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: var(--tr);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--tr);
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 60%; }

/* Dropdown */
.drop {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 220px;
  background: #121e2e;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--tr);
}
.has-drop:hover .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop li a {
  display: block;
  padding: 10px 16px;
  font-size: .86rem;
  color: rgba(255,255,255,.75);
  transition: var(--tr);
}
.drop li a:hover { color: #fff; background: rgba(255,255,255,.05); }

/* Header right */
.header-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.header-phone { font-size: .78rem; color: rgba(255,255,255,.6); white-space: nowrap; }
.header-phone:hover { color: #fff; }

/* Lang switcher */
.lang-sw { display: flex; align-items: center; gap: 3px; }
.lang-sw span { color: rgba(255,255,255,.3); font-size: .75rem; }
.lb { font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.45); letter-spacing: .06em; padding: 2px 4px; transition: var(--tr); }
.lb.lb-active { color: var(--red); }
.lb:hover:not(.lb-active) { color: #fff; }

/* Hamburger */
.burger { display: none; flex-direction: column; gap: 6px; padding: 10px; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.burger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: var(--tr); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════
   HERO (SPLIT)
   ═══════════════════════════════════════════════════ */
.hero {
  background: var(--black);
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 0;
  padding-left: max(24px, calc((100vw - 1200px) / 2));
}
.hero-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(155,27,46,.12);
  border: 1px solid rgba(155,27,46,.3);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  width: fit-content;
}
.hero-left h1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  letter-spacing: -.03em;
  margin-bottom: 24px;
  text-wrap: balance;
}
@media (max-width: 600px) {
  .hero-left h1 { line-height: 1.15; }
}
.hero-left p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-meta { display: flex; align-items: center; gap: 20px; }
.hm-item { display: flex; flex-direction: column; }
.hm-item strong { font-size: 1.4rem; font-weight: 800; color: #fff; line-height: 1; }
.hm-item span   { font-size: .72rem; color: rgba(255,255,255,.5); margin-top: 2px; }
.hm-div { width: 1px; height: 32px; background: rgba(255,255,255,.15); }

/* Hero right */
.hero-right {
  background: linear-gradient(135deg, #0b1220 0%, #0e1c2f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 55% 45%, rgba(90,176,208,.22) 0%, transparent 62%),
    radial-gradient(ellipse at 70% 70%, rgba(155,27,46,.08) 0%, transparent 70%);
  animation: heroGlow 9s ease-in-out infinite;
  transform-origin: 55% 45%;
  will-change: opacity, transform;
}
@keyframes heroGlow {
  0%, 100% { opacity: .72; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-right::before { animation: none; }
}
.hero-img-wrap { position: relative; z-index: 1; padding: 40px; }
.hero-product-img {
  max-height: 420px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.5));
  animation: floatImg 5s ease-in-out infinite;
}
@keyframes floatImg {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
.hero-chip {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  padding: 12px 16px;
  color: #fff;
  font-size: .78rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-chip span { opacity: .6; font-size: .7rem; }
.hero-chip strong { font-size: .9rem; }

/* ═══════════════════════════════════════════════════
   SHOP BY CATEGORY
   ═══════════════════════════════════════════════════ */
.cat-section { padding: 80px 0; background: var(--gray-lt, #f4f5f7); }
.cat-header { text-align: center; margin-bottom: 40px; }
.cat-header h2 { font-size: 1.9rem; font-weight: 800; }

.cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.cat-tile {
  position: relative;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #1a2638;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  transition: box-shadow var(--tr);
}
.cat-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: transform .9s cubic-bezier(.2,.6,.2,1), opacity .5s ease;
  will-change: transform;
}
.cat-tile.bg-ready::before { background-image: var(--bg); opacity: 1; }
.cat-tile:hover { box-shadow: 0 12px 36px rgba(0,0,0,.18); }
.cat-tile:hover::before { transform: scale(1.06); }
.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
  transition: var(--tr);
}
.cat-tile:hover .cat-overlay { background: linear-gradient(0deg, rgba(155,27,46,.55) 0%, rgba(0,0,0,.3) 60%, transparent 100%); }
.cat-body {
  position: relative;
  z-index: 1;
  padding: 28px;
  color: #fff;
  width: 100%;
}
.cat-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgba(155,27,46,.85);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}
.cat-body h3 { font-size: 1.35rem; font-weight: 800; margin-bottom: 4px; }
.cat-body p  { font-size: .8rem; opacity: .75; margin-bottom: 14px; }
.cat-arrow {
  font-size: 1.4rem;
  display: inline-block;
  transition: transform var(--tr);
}
.cat-tile:hover .cat-arrow { transform: translateX(8px); }

/* ═══════════════════════════════════════════════════
   PRODUCTS
   ═══════════════════════════════════════════════════ */
.products-section { padding: 96px 0; }

.filter-row { display: flex; gap: 8px; flex-wrap: wrap; }
.fb {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 600;
  border: 1.5px solid var(--border-lt, #e5e7eb);
  color: var(--gray);
  background: #fff;
  transition: var(--tr);
}
.fb:hover, .fb.fb-active { background: var(--dark); border-color: var(--dark); color: #fff; }

/* Product grid */
.pg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pc {
  border: 1.5px solid var(--border-lt, #e5e7eb);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  position: relative;
  transition: var(--tr);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.pc-name { color: var(--dark); }
.pc:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: transparent; }

/* Flag badges */
.pc-flag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.bestseller { background: var(--red);  color: #fff; }
.new-flag   { background: #0ea5e9;     color: #fff; }
.popular    { background: #f97316;     color: #fff; }
.commercial { background: #7c3aed;     color: #fff; }

/* Product image */
.pc-img {
  background: linear-gradient(135deg, #f9fafb 0%, #eef0f3 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6), inset 0 -1px 0 rgba(20,31,46,.04);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}
.pc-img img {
  height: 170px;
  object-fit: contain;
  transition: transform .4s ease;
}
.pc:hover .pc-img img { transform: scale(1.07); }

/* Card body */
.pc-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.pc-series { font-size: .7rem; font-weight: 700; color: var(--red); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 4px; }
.pc-name   { font-size: 1.05rem; font-weight: 700; margin-bottom: 14px; }

/* Specs table */
.pc-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border-lt, #e5e7eb);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 18px;
  font-size: .8rem;
}
.pc-specs > div {
  display: flex;
  flex-direction: column;
  padding: 8px 12px;
  border-right: 1px solid var(--border-lt, #e5e7eb);
  border-bottom: 1px solid var(--border-lt, #e5e7eb);
}
.pc-specs > div:nth-child(2n) { border-right: none; }
.pc-specs > div:nth-child(n+3) { border-bottom: none; }
.pc-specs span    { color: var(--gray); font-size: .72rem; }
.pc-specs strong  { color: var(--dark); font-weight: 700; margin-top: 1px; }

/* Card footer */
.pc-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.pc-price { font-size: .8rem; color: #4b5563; }
.pc-price strong { display: block; font-size: 1rem; color: var(--dark); font-weight: 800; }

/* ═══════════════════════════════════════════════════
   FEATURE SECTIONS (ALTERNATING)
   ═══════════════════════════════════════════════════ */
.feat-section { padding: 100px 0; }
.feat-dark { background: var(--dark); }

.feat-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feat-inner--rev { direction: rtl; }
.feat-inner--rev > * { direction: ltr; }

/* Feature image */
.feat-img {
  position: relative;
  background: rgba(255,255,255,.04);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}
.feat-img img {
  max-height: 300px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,.35));
}
.feat-img--light {
  background: #f0f4ff;
  border-radius: 20px;
}
.feat-img--light img { filter: none; }

.feat-temp-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--red);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(155,27,46,.4);
}

/* Feature text */
.feat-text .feat-label { display: block; margin-bottom: 12px; }
.feat-dark .feat-text .feat-label { color: rgba(255,255,255,.5); }

.feat-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -.02em;
}
.feat-dark .feat-text h2 { color: #fff; }

.feat-text p {
  font-size: .98rem;
  line-height: 1.78;
  margin-bottom: 24px;
  max-width: 480px;
}
.feat-dark .feat-text p { color: rgba(255,255,255,.7); }

.feat-bullets { margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.feat-bullets li { font-size: .9rem; }
.feat-dark .feat-bullets li { color: rgba(255,255,255,.75); }
.dark-bullets li { color: #374151; }

/* ═══════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════ */
.stats-bar { background: var(--black); padding: 40px 0; }
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
}
.stat-item strong { font-size: 2rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-item span   { font-size: .72rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; }
.stat-div { width: 1px; height: 40px; background: rgba(255,255,255,.12); }

/* ═══════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════ */
.services-section { padding: 96px 0; background: #f8f9fa; }
.srv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.srv-card {
  background: #fff;
  border: 1.5px solid var(--border-lt, #e5e7eb);
  border-radius: 14px;
  padding: 32px 24px;
  transition: var(--tr);
}
.srv-card:hover { box-shadow: var(--shadow); border-color: var(--red); transform: translateY(-3px); }
.srv-icon { font-size: 2rem; margin-bottom: 16px; }
.srv-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.srv-card p  { font-size: .86rem; color: var(--gray); line-height: 1.65; }

/* ═══════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════ */
.testi-section { padding: 96px 0; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  border: 1.5px solid var(--border-lt, #e5e7eb);
  border-radius: 14px;
  padding: 28px;
  transition: var(--tr);
}
.testi-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.testi-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 14px; }
.testi-stars span {
  display: inline-block;
  opacity: 0;
  transform: scale(.85);
  transition: opacity .35s ease, transform .35s cubic-bezier(.2,.6,.2,1);
}
.testi-stars span.lit { opacity: 1; transform: scale(1); }
@media (prefers-reduced-motion: reduce) {
  .testi-stars span { opacity: 1; transform: none; transition: none; }
}
.testi-card > p { font-size: .9rem; color: #374151; line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-client { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 40px; height: 40px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700; flex-shrink: 0;
}
.testi-client strong { display: block; font-size: .88rem; }
.testi-client small  { color: var(--gray); font-size: .76rem; }

/* ═══════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════ */
.contact-section {
  background: linear-gradient(135deg, #080e18 0%, #0d2244 100%);
  padding: 96px 0;
  color: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.contact-left h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.contact-left p  { opacity: .75; line-height: 1.7; margin-bottom: 28px; font-size: .95rem; }
.cinfo { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; font-size: .9rem; }
.cinfo li { opacity: .85; }
.social-links { display: flex; gap: 10px; }
.sl {
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px;
  font-size: .8rem;
  font-weight: 600;
  color: #fff;
  transition: var(--tr);
}
.sl:hover { background: rgba(255,255,255,.1); }

/* Form */
.contact-form {
  background: #fff;
  border-radius: 16px;
  padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { display: flex; flex-direction: column; margin-bottom: 16px; }
.fg label { font-size: .8rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.fg input, .fg select, .fg textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border-lt, #e5e7eb);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 16px; /* 16px prevents iOS auto-zoom on focus */
  color: var(--dark);
  outline: none;
  transition: var(--tr);
  background: #fff;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(155,27,46,.1);
}
.fg textarea { resize: vertical; }

/* Floating labels — modern browsers only, falls back to static layout above */
@supports selector(:has(*)) {
  .fg { position: relative; margin-bottom: 18px; }
  .fg input, .fg select, .fg textarea { width: 100%; }
  .fg label {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    font-size: 15px;
    font-weight: 500;
    color: var(--gray);
    background: #fff;
    padding: 0 6px;
    margin: 0;
    pointer-events: none;
    transition: top .2s ease, font-size .2s ease, color .2s ease, font-weight .2s ease;
    z-index: 1;
    max-width: calc(100% - 24px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .fg:has(textarea) label { top: 18px; transform: none; }

  .fg:has(input:focus) label,
  .fg:has(input:not(:placeholder-shown)) label,
  .fg:has(textarea:focus) label,
  .fg:has(textarea:not(:placeholder-shown)) label,
  .fg:has(select) label {
    top: 0;
    transform: translateY(-50%);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
  }
  .fg:has(input:focus) label,
  .fg:has(textarea:focus) label,
  .fg:has(select:focus) label { color: var(--red); }

  .fg input::placeholder,
  .fg textarea::placeholder { color: transparent; transition: color .2s ease; }
  .fg input:focus::placeholder,
  .fg textarea:focus::placeholder { color: var(--gray); opacity: .55; }
}
.fnote { font-size: .72rem; color: var(--gray); text-align: center; margin-top: 10px; }
.fsuccess {
  display: none;
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 14px;
  font-size: .88rem;
  font-weight: 600;
  text-align: center;
  margin-top: 12px;
}
.fsuccess.show { display: block; animation: fadeIn .4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer { background: #07101c; color: rgba(255,255,255,.75); }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.f-brand p { font-size: .85rem; opacity: .55; margin-top: 12px; line-height: 1.7; max-width: 260px; }
.f-me-logo { height: 22px; filter: brightness(0) invert(.5); margin-top: 16px; }
.f-col h5 { font-size: .86rem; font-weight: 700; color: #fff; margin-bottom: 16px; }
.f-col ul { display: flex; flex-direction: column; gap: 9px; }
.f-col li, .f-col a { font-size: .82rem; opacity: .55; transition: var(--tr); }
.f-col a:hover { opacity: 1; color: var(--red); }
.footer-bottom {
  padding: 18px 0;
  font-size: .75rem;
  opacity: .3;
}
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* ═══════════════════════════════════════════════════
   SCROLL-TO-TOP
   ═══════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 84px;
  right: 28px;
  z-index: 999;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: var(--tr);
}
.whatsapp-float:hover { background: #1ebe5d; transform: translateY(-3px); }
.sl-wa { background: rgba(37,211,102,.15); border-color: #25d366; color: #25d366; }
.sl-wa:hover { background: #25d366; color: #fff; }

.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(155,27,46,.35);
  opacity: 0;
  pointer-events: none;
  transition: var(--tr);
}
.scroll-top.show { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--red-dark); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { min-height: 380px; }
  .hero-left { padding: 60px 24px; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .pg { grid-template-columns: 1fr 1fr; }
  .feat-inner { gap: 48px; }
  .srv-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; position: fixed; inset: 64px 0 0; background: #111; padding: 24px; overflow-y: auto; z-index: 999; }
  .nav.open { display: block; }
  .nav-list { flex-direction: column; }
  .nav-link { font-size: 1.1rem; padding: 12px 16px; }
  .drop { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(255,255,255,.04); border: none; margin: 4px 0; }
  .burger { display: flex; }
  .header-right { gap: 10px; }
  .header-phone { display: none; }
  .hero-left h1 { font-size: 2.8rem; }
  .hero-right { min-height: 280px; padding: 24px; }
  .hero-img-wrap { padding: 12px; }
  .hero-product-img { max-height: 240px; }
  .cat-grid { grid-template-columns: 1fr; }
  .cat-tile { height: 280px; }
  .pg { grid-template-columns: 1fr; }
  .feat-inner, .feat-inner--rev { grid-template-columns: 1fr; direction: ltr; gap: 32px; }
  .feat-img { min-height: 260px; }
  .feat-text { text-align: center; }
  .feat-text p { margin-left: auto; margin-right: auto; }
  .feat-bullets { align-items: center; }
  .stats-inner { gap: 0; }
  .stat-item { padding: 0 24px; }
  .srv-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .f-brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .sec-head { flex-direction: column; align-items: flex-start; }
  .srv-grid { grid-template-columns: 1fr; }
  .stats-inner { flex-direction: column; gap: 24px; }
  .stat-div { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── Materials section (text-only product list) ──── */
.mat-section { padding: 80px 0; background: var(--gray-lt); }
.mat-grp {
  font-size: 1rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 36px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border-lt);
}
.mat-grp:first-of-type { margin-top: 32px; }
.mat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}
.mc {
  background: #fff;
  border: 1px solid var(--border-lt);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: var(--tr);
}
.mc:hover {
  border-color: var(--red);
  box-shadow: 0 2px 12px rgba(155,27,46,.08);
  transform: translateY(-2px);
}
.mc-img {
  width: 100%;
  aspect-ratio: 1;
  background: #f9fafb;
  border-radius: 6px;
  margin-bottom: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mc-img img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}
.mc-img svg.mc-svg {
  width: 60%;
  height: 60%;
  max-width: 80px;
}
.mc-img { position: relative; }
.mc-tape-dot {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.mc-name-big {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #f9fafb 0%, #eef2f7 100%);
  border-radius: 6px;
  margin-bottom: 6px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.mc-name {
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.35;
  flex: 1;
}
.mc-price {
  font-size: .95rem;
  font-weight: 800;
  color: var(--red);
  letter-spacing: .01em;
}
.mat-note {
  font-size: .8rem;
  color: var(--gray);
  margin-top: 32px;
  font-style: italic;
}

/* ───────── Search (header button + modal) ───────── */
.search-btn {
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.35);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--tr);
}
.search-btn:hover { background: var(--red); border-color: var(--red); }
.header.scrolled .search-btn { background: #fff; color: var(--dark); border-color: rgba(20,31,46,.3); box-shadow: 0 1px 3px rgba(20,31,46,.06); }
.header.scrolled .search-btn:hover { background: var(--red); color: #fff; border-color: var(--red); }

.search-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(14,28,47,.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 95;
}
.search-backdrop.show { opacity: 1; pointer-events: auto; }
.search-modal {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 105;
  display: flex;
  justify-content: center;
  padding: 64px 20px 20px;
  pointer-events: none;
  transform: translateY(-20px);
  opacity: 0;
  transition: transform .25s ease, opacity .2s ease;
}
.search-modal.open {
  pointer-events: auto;
  transform: translateY(0);
  opacity: 1;
}
.search-box {
  width: 100%;
  max-width: 640px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 100px);
}
.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-lt);
}
.search-bar-icon { color: var(--gray); flex-shrink: 0; }
.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  padding: 4px 0;
}
.search-bar input::placeholder { color: #9ca3af; }
.search-close {
  background: transparent;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--gray);
  width: 28px; height: 28px;
  border-radius: 4px;
  line-height: 1;
  transition: var(--tr);
}
.search-close:hover { background: var(--bg-lt); color: var(--dark); }
.search-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px;
}
.search-empty {
  text-align: center;
  color: var(--gray);
  padding: 28px 16px;
  font-size: .9rem;
  margin: 0;
}
.search-results { display: flex; flex-direction: column; gap: 4px; }
.search-result {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  align-items: center;
  transition: var(--tr);
}
.search-result:hover, .search-result:focus { background: var(--bg-lt); }
.search-result-img {
  width: 50px; height: 50px;
  border-radius: 6px;
  background: var(--bg-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.search-result-img img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.search-result-body { min-width: 0; }
.search-result-name {
  font-size: .9rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.search-result-meta {
  font-size: .72rem;
  color: var(--gray);
  margin-top: 1px;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 600;
}
.search-result-price {
  font-size: .85rem;
  font-weight: 700;
  color: var(--red);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .search-modal { padding: 48px 12px 12px; }
  .search-result { grid-template-columns: 44px 1fr auto; gap: 10px; }
  .search-result-price { font-size: .78rem; }
}

/* ───────── Cart (header button + drawer) ───────── */
.cart-btn {
  position: relative;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.35);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--tr);
  margin-right: 4px;
}
.cart-btn:hover { background: var(--red); border-color: var(--red); }
.header.scrolled .cart-btn { background: #fff; color: var(--dark); border-color: rgba(20,31,46,.3); box-shadow: 0 1px 3px rgba(20,31,46,.06); }
.header.scrolled .cart-btn:hover { background: var(--red); color: #fff; border-color: var(--red); }
.cart-badge {
  position: absolute;
  top: -5px; right: -5px;
  background: var(--red);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--dark);
  line-height: 1;
}
.header.scrolled .cart-badge { border-color: #fff; }
.cart-badge.show { display: inline-flex; }
.cart-badge.flash { animation: cart-flash .5s ease; }
@keyframes cart-flash {
  0% { transform: scale(1); }
  50% { transform: scale(1.4); background: #fff; color: var(--red); }
  100% { transform: scale(1); }
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(14,28,47,.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 90;
}
.cart-backdrop.show { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 100vw);
  height: 100vh;
  background: #fff;
  z-index: 100;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 32px rgba(0,0,0,.18);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--border-lt);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-head h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
  letter-spacing: -.01em;
}
.cart-close {
  background: transparent;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--gray);
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--tr);
  line-height: 1;
}
.cart-close:hover { background: var(--bg-lt); color: var(--dark); }
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.cart-empty {
  text-align: center;
  color: var(--gray);
  padding: 40px 12px;
  font-size: .95rem;
}
.cart-list { display: flex; flex-direction: column; gap: 12px; }
.cart-item {
  display: grid;
  grid-template-columns: 60px 1fr auto auto;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--border-lt);
  border-radius: 8px;
  align-items: center;
  background: #fff;
  transition: var(--tr);
}
.cart-item:hover { border-color: rgba(155,27,46,.3); }
.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  background: var(--bg-lt);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-item-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 6px;
}
.cart-item-body { min-width: 0; }
.cart-item-name {
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 2px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.cart-item-sub {
  font-size: .7rem;
  color: var(--gray);
  margin-bottom: 4px;
}
.cart-item-price {
  font-size: .82rem;
  font-weight: 700;
  color: var(--red);
  font-variant-numeric: tabular-nums;
}
.cart-item-qty {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--bg-lt);
  border-radius: 6px;
  padding: 2px;
}
.cart-qty-btn {
  background: transparent;
  border: none;
  width: 36px; height: 36px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  color: var(--dark);
  transition: var(--tr);
  line-height: 1;
}
.cart-qty-btn:hover { background: #fff; color: var(--red); }
.cart-qty-num {
  min-width: 22px;
  text-align: center;
  font-size: .9rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.cart-item-rm {
  background: transparent;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--gray);
  width: 36px; height: 36px;
  border-radius: 6px;
  transition: var(--tr);
  line-height: 1;
}
.cart-item-rm:hover { background: #fee; color: var(--red); }
.cart-foot {
  border-top: 1px solid var(--border-lt);
  padding: 18px 24px 22px;
  background: #fafafa;
}
.cart-total-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cart-total-lbl {
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.cart-total {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  font-variant-numeric: tabular-nums;
}
.cart-checkout {
  width: 100%;
  justify-content: center;
  text-align: center;
}
.cart-checkout:disabled { opacity: .45; cursor: not-allowed; pointer-events: none; filter: grayscale(.6); }
.cart-checkout:disabled::after { display: none; }
.cart-hint {
  font-size: .72rem;
  color: var(--gray);
  text-align: center;
  margin: 10px 0 0;
  font-style: italic;
  line-height: 1.4;
}

/* ───────── Add-to-cart button on product cards / catalog rows ───────── */
.atc-btn {
  background: var(--dark);
  color: #fff;
  border: none;
  padding: 7px 14px;
  border-radius: 6px;
  font-family: 'Manrope', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  transition: var(--tr);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.atc-btn:hover { background: var(--red); }
.atc-btn.atc-sm { padding: 4px 9px; font-size: .72rem; }
.cat-row-atc { margin-left: 14px; flex-shrink: 0; align-self: center; }
.cat-row { gap: 8px; }
.cat-row-name { padding-right: 0; }
.atc-btn svg { width: 13px; height: 13px; }

/* ───────── Category listing page (produkte.html) ───────── */
.category-page {
  padding: 110px 0 80px;
  background: #fff;
  min-height: 70vh;
}
.category-head {
  margin-bottom: 36px;
  text-align: left;
  max-width: 760px;
}
.category-head .sec-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.category-head h1 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  color: var(--dark);
  line-height: 1.1;
  margin: 0 0 10px;
  letter-spacing: -.02em;
}
.category-sub {
  color: var(--gray);
  font-size: .98rem;
  margin: 0;
}
.category-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray);
}
.category-empty p { margin-bottom: 18px; }

/* ───────── Product detail page ───────── */
.product-page {
  padding: 110px 0 80px;
  background: #fff;
  min-height: 70vh;
}
.product-loading, .product-error {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray);
}
.product-error h1 { color: var(--dark); font-size: 1.6rem; margin-bottom: 12px; }
.prod-crumbs {
  font-size: .82rem;
  color: var(--gray);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.prod-crumbs a {
  color: var(--gray);
  text-decoration: none;
  transition: var(--tr);
}
.prod-crumbs a:hover { color: var(--red); }
.prod-crumbs .crumb-current {
  color: var(--dark);
  font-weight: 600;
  max-width: 320px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.prod-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  margin-bottom: 56px;
}
.prod-gallery { display: flex; flex-direction: column; gap: 14px; }
.prod-hero {
  width: 100%;
  aspect-ratio: 1;
  background: var(--bg-lt);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prod-hero img {
  max-width: 92%;
  max-height: 92%;
  object-fit: contain;
}
.prod-hero-placeholder {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--dark);
  text-align: center;
  padding: 40px;
  letter-spacing: -.01em;
}
.prod-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.prod-thumb {
  background: var(--bg-lt);
  border: 2px solid transparent;
  border-radius: 8px;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  padding: 4px;
  cursor: pointer;
  transition: var(--tr);
  overflow: hidden;
}
.prod-thumb:hover { border-color: rgba(155,27,46,.4); }
.prod-thumb.active { border-color: var(--red); }
.prod-thumb img { width: 100%; height: 100%; object-fit: contain; }

.prod-info { padding-top: 8px; }
.prod-brand {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.prod-title {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  margin: 0 0 10px;
  letter-spacing: -.02em;
}
.prod-sub {
  font-size: 1rem;
  color: var(--gray);
  margin: 0 0 20px;
  line-height: 1.5;
}
.prod-features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.prod-features li {
  font-size: .9rem;
  color: var(--dark);
  padding-left: 22px;
  position: relative;
  line-height: 1.4;
}
.prod-features li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 800;
}
.prod-sizes {
  margin-bottom: 22px;
}
.prod-sizes-lbl {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 8px;
}
.prod-sizes-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.prod-size-btn {
  background: #fff;
  border: 1.5px solid var(--border-lt);
  padding: 8px 14px;
  border-radius: 7px;
  font-family: 'Manrope', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  transition: var(--tr);
}
.prod-size-btn:hover { border-color: var(--red); color: var(--red); }
.prod-size-btn.active { background: var(--dark); border-color: var(--dark); color: #fff; }
.prod-price-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--border-lt);
  border-bottom: 1px solid var(--border-lt);
  margin-bottom: 18px;
}
.prod-price-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.prod-price-lbl {
  font-size: .72rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .12em;
}
.prod-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -.01em;
  font-variant-numeric: tabular-nums;
}
.prod-price.on-request {
  font-size: 1.1rem;
  color: var(--gray);
  font-style: italic;
  font-weight: 600;
}
.prod-atc {
  margin-left: auto;
  font-size: .92rem;
  padding: 13px 22px;
}
.prod-brochure {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 14px;
  border: 1.5px solid var(--border-lt);
  border-radius: 6px;
  transition: var(--tr);
}
.prod-brochure:hover { border-color: var(--red); color: var(--red); }

.prod-section {
  margin-bottom: 48px;
}
.prod-section h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 18px;
  letter-spacing: -.01em;
}
.prod-desc {
  font-size: .98rem;
  color: var(--dark);
  line-height: 1.7;
  max-width: 800px;
}
.prod-desc p { margin: 0 0 14px; }
.prod-desc p:last-child { margin: 0; }
.prod-specs-wrap {
  overflow-x: auto;
  border: 1px solid var(--border-lt);
  border-radius: 10px;
}
.prod-specs {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
  font-variant-numeric: tabular-nums;
}
.prod-specs th {
  background: var(--bg-lt);
  padding: 12px 14px;
  text-align: left;
  font-weight: 700;
  color: var(--dark);
  border-bottom: 1px solid var(--border-lt);
  white-space: nowrap;
}
.prod-specs td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--border-lt);
  color: var(--dark);
}
.prod-specs tr:last-child td { border-bottom: none; }
.prod-specs tr:hover td { background: rgba(155,27,46,.02); }

.prod-back {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border-lt);
}
.prod-back a {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
  font-size: .92rem;
  transition: var(--tr);
}
.prod-back a:hover { transform: translateX(-3px); display: inline-block; }

@media (max-width: 768px) {
  .product-page { padding: 90px 0 60px; }
  .prod-grid { grid-template-columns: 1fr; gap: 28px; }
  .prod-price-row { flex-direction: column; align-items: flex-start; gap: 14px; }
  .prod-atc { margin-left: 0; width: 100%; justify-content: center; }
  .prod-thumb { width: 60px; height: 60px; }
  .prod-title { font-size: 1.5rem; }
}

/* ───────── Materiale dhe Aksesorë (text-only catalog page) ───────── */
.cat-page {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, #fbfaf7 0%, #ffffff 100%);
  min-height: 70vh;
}
.cat-page-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
  padding: 0 20px;
}
.cat-page-eyebrow {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.cat-page-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4.6vw, 3.2rem);
  line-height: 1.05;
  color: var(--dark);
  margin: 0 0 18px;
  letter-spacing: -.025em;
}
.cat-page-title em {
  font-style: normal;
  color: var(--red);
  font-weight: 800;
}
.cat-page-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 1.02rem;
  color: var(--gray);
  line-height: 1.65;
  font-weight: 400;
  margin: 0;
}
.cat-rule {
  width: 60px;
  height: 1px;
  background: var(--red);
  margin: 24px auto 0;
  opacity: .8;
}
.cat-list {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
}
.cat-group {
  margin-bottom: 56px;
}
.cat-group:last-child { margin-bottom: 0; }
.cat-group-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(20, 31, 46, .12);
}
.cat-group-num {
  font-family: 'Manrope', sans-serif;
  font-size: .78rem;
  color: var(--red);
  font-weight: 700;
  letter-spacing: .15em;
  flex-shrink: 0;
}
.cat-group-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  letter-spacing: -.01em;
}
.cat-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 14px 12px;
  margin: 0 -12px;
  border-radius: 8px;
  border-bottom: 1px dotted rgba(20, 31, 46, .14);
  transition: background-color .18s ease, transform .18s ease;
}
.cat-row:hover {
  background: rgba(155, 27, 46, .05);
  transform: translateX(2px);
}
.cat-row:hover .cat-row-name { color: var(--red); }
.cat-row:last-child { border-bottom: none; }
.cat-row-name {
  font-family: 'Manrope', sans-serif;
  font-size: .95rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: .005em;
  line-height: 1.45;
  flex: 0 1 auto;
}
.cat-row-leader {
  flex: 1 1 auto;
  border-bottom: 1px dotted rgba(20, 31, 46, .25);
  margin: 0 4px 6px;
  min-width: 24px;
}
.cat-row-price {
  font-family: 'Manrope', sans-serif;
  font-size: .98rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .01em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  flex-shrink: 0;
}
.cat-row-price-soft {
  font-weight: 500;
  font-style: italic;
  color: var(--gray);
  font-size: .9rem;
}
.cat-foot {
  max-width: 820px;
  margin: 64px auto 0;
  padding: 28px 20px 0;
  border-top: 1px solid rgba(20, 31, 46, .1);
  text-align: center;
}
.cat-foot p {
  font-family: 'Manrope', sans-serif;
  font-size: .85rem;
  color: var(--gray);
  font-style: italic;
  margin: 0 0 18px;
  line-height: 1.6;
}
.cat-foot .btn {
  margin-top: 4px;
}
@media (max-width: 600px) {
  .cat-page { padding: 56px 0 72px; }
  .cat-page-head { margin-bottom: 44px; }
  .cat-group { margin-bottom: 40px; }
  .cat-group-title { font-size: 1.3rem; }
  .cat-row {
    flex-wrap: wrap;
    padding: 12px 0;
  }
  .cat-row-leader { display: none; }
  .cat-row-name { flex: 1 1 100%; margin-bottom: 4px; }
  .cat-row-price { margin-left: 0; }
}

/* ───────── 404 page ───────── */
.not-found {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  background: linear-gradient(180deg, #fbfaf7 0%, #ffffff 100%);
}
.nf-inner { text-align: center; max-width: 520px; }
.nf-code {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(6rem, 18vw, 10rem);
  font-weight: 800;
  line-height: 1;
  color: var(--red);
  letter-spacing: -.06em;
  margin-bottom: 8px;
}
.not-found h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -.02em;
}
.not-found p { color: var(--gray); font-size: 1rem; margin-bottom: 28px; }
.nf-actions { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.btn.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--border-lt);
  color: var(--dark);
}
.btn.btn-ghost:hover { border-color: var(--dark); }

/* ───────── Loading skeleton (home / category grid) ───────── */
.pc-skeleton {
  border: 1.5px solid var(--border-lt);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  animation: skl-pulse 1.4s ease-in-out infinite;
}
.pc-skeleton .skl-img {
  width: 100%;
  aspect-ratio: 16/11;
  background: linear-gradient(90deg, #f3f4f6 0%, #e9eaee 50%, #f3f4f6 100%);
  background-size: 200% 100%;
  animation: skl-shimmer 1.4s linear infinite;
}
.pc-skeleton .skl-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.pc-skeleton .skl-line {
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(90deg, #f3f4f6 0%, #e9eaee 50%, #f3f4f6 100%);
  background-size: 200% 100%;
  animation: skl-shimmer 1.4s linear infinite;
}
.pc-skeleton .skl-line.short { width: 40%; }
.pc-skeleton .skl-line.med   { width: 75%; height: 18px; }
.pc-skeleton .skl-line.tall  { height: 24px; width: 55%; margin-top: 6px; }
@keyframes skl-shimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }
@keyframes skl-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .85; } }

/* ───────── Sticky mobile CTA bar on product detail ───────── */
.prod-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--border-lt);
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 60;
  box-shadow: 0 -4px 16px rgba(0,0,0,.06);
  align-items: center;
  gap: 12px;
}
.prod-sticky-cta .psc-price {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.prod-sticky-cta .psc-price-lbl {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray);
}
.prod-sticky-cta .psc-price-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--red);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.prod-sticky-cta .psc-price-val.on-request {
  font-size: .95rem;
  color: var(--gray);
  font-style: italic;
  font-weight: 600;
}
.prod-sticky-cta .btn { flex-shrink: 0; padding: 11px 18px; font-size: .9rem; }
@media (max-width: 768px) {
  .prod-sticky-cta { display: flex; }
  .product-page { padding-bottom: 110px; }
}

/* ───────── Sticky category title: removed (caused scroll feedback loop on mobile) ───────── */

/* ───────── Service section booking CTA (centered band) ───────── */
.srv-cta {
  margin-top: 56px;
  padding: 36px 32px;
  background: linear-gradient(135deg, #0e1c2f 0%, #1a2b4a 60%, #9b1b2e 100%);
  border-radius: 16px;
  text-align: center;
  color: #fff;
}
.srv-cta h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.srv-cta p {
  color: rgba(255,255,255,.78);
  margin-bottom: 22px;
  font-size: .98rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.srv-cta .btn { background: #fff; color: var(--dark); }
.srv-cta .btn:hover { background: var(--red); color: #fff; }

/* ───────── Google Maps embed in contact ───────── */
.contact-map {
  margin-top: 28px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  height: 280px;
  background: rgba(255,255,255,.04);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(.15) contrast(.95);
  transition: filter .3s ease;
}
.contact-map:hover iframe { filter: none; }
@media (max-width: 768px) {
  .contact-map { height: 220px; margin-top: 22px; }
}

/* ───────── Cart toast (replaces auto-open drawer) ───────── */
.cart-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 110;
  background: #fff;
  border: 1px solid var(--border-lt);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(14,28,47,.18);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  max-width: 360px;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform .25s cubic-bezier(.4,0,.2,1), opacity .2s ease;
}
.cart-toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cart-toast-icon {
  width: 32px; height: 32px;
  background: #16a34a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.cart-toast-body { flex: 1; min-width: 0; }
.cart-toast-line1 {
  font-size: .72rem;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.cart-toast-line2 {
  font-size: .9rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 1px;
}
.cart-toast-view {
  background: transparent;
  border: none;
  color: var(--red);
  font-weight: 700;
  font-size: .82rem;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 6px;
  flex-shrink: 0;
}
.cart-toast-view:hover { background: rgba(155,27,46,.08); }
@media (max-width: 768px) {
  .cart-toast {
    right: 12px; left: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    min-width: 0;
    max-width: none;
  }
}

/* ───────── Accessibility: focus & skip-link ───────── */
*:focus { outline: none; }
*:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
  border-radius: 4px;
}
.btn:focus-visible, .cart-btn:focus-visible, .search-btn:focus-visible,
.lb:focus-visible, .burger:focus-visible {
  outline-offset: 3px;
}
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 1px;
  border-color: var(--red);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 10000;
  background: var(--red);
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  font-size: .92rem;
  transition: top .15s ease;
}
.skip-link:focus-visible { top: 16px; outline: 2px solid #fff; outline-offset: 2px; }

/* Footer copyright contrast — was rgba(255,255,255,.75) × opacity .3 = ~1.6:1, fails AA */
.footer-bottom { opacity: 1; }
.footer-bottom .container > span { color: #8a93a3; opacity: 1; }
.footer-bottom .container > span:last-child { color: #6c7585; }

/* Header link "you are here" indicator */
.nav-link[aria-current="page"] { color: var(--red); }
.nav-link[aria-current="page"]::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: var(--red);
  margin-top: 4px;
}
@media (max-width: 768px) {
  .nav-link[aria-current="page"]::after { display: none; }
}

/* ───────── Hero trust badges (replaces duplicate hero-meta) ───────── */
.hero-trust {
  margin-top: 32px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.ht-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 9px 16px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  font-size: .82rem;
  color: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.ht-badge strong {
  font-weight: 800;
  color: var(--red);
  font-size: .92rem;
  letter-spacing: .01em;
}
@media (max-width: 480px) {
  .hero-trust { gap: 8px; }
  .ht-badge { padding: 6px 10px; font-size: .72rem; }
  .ht-badge strong { font-size: .82rem; }
}

/* ───────── Gallery ───────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.gallery-item {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border-lt, #e5e7eb);
  transition: var(--tr);
}
.gallery-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.gallery-photo {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #0e1c2f 0%, #1a2b4a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-photo img { width: 100%; height: 100%; object-fit: cover; }
.gallery-placeholder {
  position: relative;
  flex-direction: column;
  gap: 10px;
}
.gallery-soon {
  background: var(--red);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}
.gallery-tag {
  color: rgba(255,255,255,.45);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.gallery-item figcaption {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gallery-item figcaption strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}
.gallery-item figcaption span {
  font-size: .82rem;
  color: var(--red);
  font-weight: 600;
}

/* ───────── Blog ───────── */
.container--narrow { max-width: 760px; }
.blog-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 48px; }
.blog-card {
  display: block;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--border-lt, #e5e7eb);
  border-radius: 14px;
  text-decoration: none;
  transition: var(--tr);
}
.blog-card:hover { border-color: var(--red); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.blog-card h2, .blog-card h3 { font-size: 1.25rem; font-weight: 800; color: var(--dark); margin: 6px 0 8px; letter-spacing: -.01em; line-height: 1.3; }
.blog-card h3 { font-size: 1.05rem; }
.blog-card p { color: #4b5563; font-size: .92rem; line-height: 1.55; margin-bottom: 10px; }
.blog-date { font-size: .75rem; font-weight: 700; color: var(--red); letter-spacing: .08em; text-transform: uppercase; }
.blog-readmore { font-size: .82rem; font-weight: 700; color: var(--red); }
.blog-post .blog-head { padding-bottom: 24px; margin-bottom: 32px; border-bottom: 1px solid var(--border-lt, #e5e7eb); }
.blog-post h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; line-height: 1.2; letter-spacing: -.02em; color: var(--dark); margin: 8px 0 12px; text-wrap: balance; }
.blog-excerpt { font-size: 1.05rem; color: #4b5563; line-height: 1.6; }
.blog-body { font-size: 1.02rem; line-height: 1.75; color: #1f2937; }
.blog-body h2 { font-size: 1.35rem; font-weight: 800; color: var(--dark); margin: 36px 0 14px; letter-spacing: -.01em; }
.blog-body p { margin-bottom: 16px; }
.blog-body ul, .blog-body ol { margin: 0 0 18px 22px; padding: 0; }
.blog-body li { margin-bottom: 8px; }
.blog-body a { color: var(--red); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.blog-body strong { font-weight: 700; color: var(--dark); }
.blog-foot { margin-top: 40px; padding: 24px; background: linear-gradient(135deg, #f9fafb 0%, #eef0f3 100%); border-radius: 12px; text-align: center; }
.blog-foot p { color: var(--gray); font-size: .92rem; margin-bottom: 14px; }
.blog-related { margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--border-lt, #e5e7eb); }
.blog-related h2 { font-size: 1.2rem; margin-bottom: 16px; }
.blog-related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }

/* ───────── Energy calculator ───────── */
.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 48px;
}
.calc-form { display: flex; flex-direction: column; gap: 0; }
.calc-result {
  background: linear-gradient(135deg, #0e1c2f 0%, #1a2b4a 100%);
  color: #fff;
  border-radius: 16px;
  padding: 32px;
  position: sticky;
  top: 88px;
}
.calc-result-label { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-bottom: 14px; }
.calc-result-kwh { font-size: 1.1rem; color: rgba(255,255,255,.85); margin-bottom: 8px; }
.calc-result-kwh strong { font-size: 1.8rem; font-weight: 800; color: #fff; margin-right: 6px; letter-spacing: -.02em; }
.calc-result-cost { font-size: 1.1rem; color: rgba(255,255,255,.85); padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.15); margin-bottom: 18px; }
.calc-result-cost strong { font-size: 2.6rem; font-weight: 800; color: var(--red); margin-right: 8px; letter-spacing: -.02em; line-height: 1; }
.calc-result-detail p { font-size: .88rem; color: rgba(255,255,255,.75); margin-bottom: 6px; }
.calc-result-detail strong { color: #fff; font-weight: 700; }
.calc-disclaimer { font-size: .72rem; color: rgba(255,255,255,.5); margin-top: 18px; line-height: 1.5; }
@media (max-width: 768px) {
  .calc-grid { grid-template-columns: 1fr; }
  .calc-result { position: static; }
}

/* ───────── Team page ───────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}
.team-card {
  background: #fff;
  border: 1px solid var(--border-lt, #e5e7eb);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  transition: var(--tr);
}
.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: transparent; }
.team-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0e1c2f 0%, #1a2b4a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-initials { color: rgba(255,255,255,.4); font-size: 2rem; font-weight: 800; letter-spacing: .04em; }
.team-card h2 { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; letter-spacing: -.01em; }
.team-role {
  font-size: .8rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.team-creds {
  list-style: none;
  padding: 0;
  font-size: .85rem;
  color: #4b5563;
  text-align: left;
  line-height: 1.6;
}
.team-creds li { margin-bottom: 6px; }
.team-cta {
  background: linear-gradient(135deg, #0e1c2f 0%, #1a2b4a 60%, #9b1b2e 100%);
  color: #fff;
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center;
  margin: 40px 0;
}
.team-cta h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; margin-bottom: 12px; letter-spacing: -.01em; }
.team-cta p { color: rgba(255,255,255,.85); margin-bottom: 24px; max-width: 540px; margin-left: auto; margin-right: auto; }
.team-cta .btn { margin: 0 6px; }
.team-cta .btn-outline-dark { border-color: rgba(255,255,255,.5); color: #fff; }
.team-cta .btn-outline-dark:hover { background: #fff; color: var(--dark); }

/* ───────── Footer social icons ───────── */
.f-social {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  gap: 10px;
}
.f-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  transition: var(--tr);
}
.f-social a:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-2px);
}

/* ───────── Legal pages ───────── */
.legal-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin: 24px 0 10px; }
.legal-updated {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(155,27,46,.06);
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .02em;
  margin-bottom: 16px;
}
.legal-body code {
  background: #f3f4f6;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: .88em;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: #b91c1c;
}

/* ───────── Comparison hub (krahasime/index) ───────── */
.cmp-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.cmp-hub-card {
  display: block;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--border-lt, #e5e7eb);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: var(--tr);
}
.cmp-hub-card:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.cmp-hub-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
}
.cmp-hub-card h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  margin: 8px 0 12px;
  letter-spacing: -.01em;
}
.cmp-hub-card p {
  color: #4b5563;
  font-size: .9rem;
  line-height: 1.55;
  margin-bottom: 14px;
}
.cmp-hub-readmore {
  font-size: .85rem;
  font-weight: 700;
  color: var(--red);
}

/* ───────── Comparison tables (FAQ) ───────── */
.cmp-section { margin: 56px 0 0; }
.cmp-section h2 {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.01em;
  margin-bottom: 18px;
}
.cmp-wrap { overflow-x: auto; border-radius: 12px; border: 1px solid var(--border-lt, #e5e7eb); }
.cmp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
  min-width: 480px;
}
.cmp-table th, .cmp-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-lt, #e5e7eb);
}
.cmp-table thead th {
  background: linear-gradient(135deg, #0e1c2f 0%, #1a2b4a 100%);
  color: #fff;
  font-weight: 700;
  letter-spacing: .02em;
}
.cmp-table tbody tr:last-child td { border-bottom: none; }
.cmp-table tbody tr:hover { background: rgba(155,27,46,.04); }
.cmp-table td:first-child { font-weight: 600; color: #4b5563; }
.cmp-table td:not(:first-child) { color: var(--dark); }
.cmp-note {
  margin-top: 14px;
  padding: 14px 18px;
  background: rgba(155,27,46,.05);
  border-left: 3px solid var(--red);
  border-radius: 6px;
  font-size: .9rem;
  color: #374151;
  line-height: 1.6;
}

/* ───────── Service Areas hub ───────── */
.service-city {
  margin: 40px 0;
  padding: 24px 0;
  border-top: 1px solid var(--border-lt, #e5e7eb);
}
.service-city:first-of-type { border-top: none; padding-top: 0; }
.service-city h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.service-city-name { color: var(--dark); }
.service-city-en {
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: .04em;
}
.service-city p {
  color: #4b5563;
  margin-bottom: 16px;
  line-height: 1.6;
}
.service-sizes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 8px;
}
.service-size-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 8px;
  background: linear-gradient(135deg, #f9fafb 0%, #eef0f3 100%);
  border: 1px solid var(--border-lt, #e5e7eb);
  border-radius: 10px;
  text-decoration: none;
  transition: var(--tr);
}
.service-size-tile:hover {
  border-color: var(--red);
  background: rgba(155,27,46,.04);
  transform: translateY(-2px);
}
.service-size-tile strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
}
.service-size-tile span {
  font-size: .75rem;
  color: var(--red);
  font-weight: 600;
}

/* Contact form error state */
.fsuccess.error {
  background: rgba(220,38,38,.08);
  color: #b91c1c;
  border: 1px solid rgba(220,38,38,.3);
}


/* ───────── Favorites: heart on product cards ───────── */
.pc { position: relative; }
.pc-fav {
  position: absolute;
  top: 10px; right: 10px;
  z-index: 2;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(20,31,46,.12);
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--tr);
  backdrop-filter: blur(4px);
}
.pc-fav:hover { color: var(--red); border-color: rgba(155,27,46,.4); background: #fff; transform: scale(1.06); }
.pc-fav.is-fav { color: var(--red); border-color: var(--red); background: #fff; }
.pc-fav.is-fav svg { fill: var(--red); }
@keyframes favPop {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.35); }
  60%  { transform: scale(.92); }
  100% { transform: scale(1); }
}
.pc-fav.just-faved, .prod-fav.just-faved { animation: favPop .42s cubic-bezier(.34,1.56,.64,1); }
.pc-fav.just-faved svg, .prod-fav.just-faved svg { animation: favPop .42s cubic-bezier(.34,1.56,.64,1); }

.prod-fav {
  width: 44px; height: 44px;
  border: 1.5px solid var(--border-lt);
  border-radius: 8px;
  background: #fff;
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 8px;
  transition: var(--tr);
  flex-shrink: 0;
}
.prod-fav:hover { color: var(--red); border-color: var(--red); }
.prod-fav.is-fav { color: var(--red); border-color: var(--red); background: rgba(155,27,46,.06); }
.prod-fav.is-fav svg { fill: var(--red); }
.prod-price-row { gap: 10px; }
@media (max-width: 768px) {
  .prod-fav { width: 40px; height: 40px; margin-left: 0; }
  .prod-price-row { flex-wrap: wrap; }
}

.fav-btn {
  position: relative;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.35);
  color: #fff;
  width: 40px; height: 40px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--tr);
  margin-right: 4px;
}
.fav-btn:hover { background: var(--red); border-color: var(--red); }
.header.scrolled .fav-btn { background: #fff; color: var(--dark); border-color: rgba(20,31,46,.3); box-shadow: 0 1px 3px rgba(20,31,46,.06); }
.header.scrolled .fav-btn:hover { background: var(--red); color: #fff; border-color: var(--red); }
.fav-badge {
  position: absolute;
  top: -5px; right: -5px;
  background: var(--red);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--dark);
  line-height: 1;
}
.header.scrolled .fav-badge { border-color: #fff; }
.fav-badge.show { display: inline-flex; }

.fav-backdrop {
  position: fixed; inset: 0;
  background: rgba(14,28,47,.55);
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
  z-index: 90;
}
.fav-backdrop.show { opacity: 1; pointer-events: auto; }
.fav-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 100vw);
  height: 100vh;
  background: #fff;
  z-index: 100;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 32px rgba(0,0,0,.18);
}
.fav-drawer.open { transform: translateX(0); }
.fav-head {
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--border-lt);
  display: flex; align-items: center; justify-content: space-between;
}
.fav-head h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.15rem; font-weight: 800;
  color: var(--dark);
  margin: 0; letter-spacing: -.01em;
}
.fav-close {
  background: transparent; border: none;
  font-size: 1.6rem; cursor: pointer; color: var(--gray);
  width: 36px; height: 36px; border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: var(--tr); line-height: 1;
}
.fav-close:hover { background: var(--bg-lt); color: var(--dark); }
.fav-body { flex: 1; overflow-y: auto; padding: 16px 24px; }
.fav-empty {
  text-align: center; color: var(--gray);
  padding: 40px 12px; font-size: .95rem; line-height: 1.55;
}
.fav-list { display: flex; flex-direction: column; gap: 12px; }
.fav-item {
  position: relative;
  border: 1px solid var(--border-lt);
  border-radius: 8px; background: #fff;
  transition: var(--tr);
}
.fav-item:hover { border-color: rgba(155,27,46,.3); }
.fav-item-link {
  display: grid; grid-template-columns: 60px 1fr; gap: 12px;
  padding: 12px; text-decoration: none; color: inherit; align-items: center;
}
.fav-item-img {
  width: 60px; height: 60px; border-radius: 6px;
  background: var(--bg-lt); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.fav-item-img img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.fav-item-body { min-width: 0; }
.fav-item-name {
  font-size: .88rem; font-weight: 600;
  color: var(--dark); line-height: 1.3;
  margin-bottom: 2px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.fav-item-sub { font-size: .7rem; color: var(--gray); margin-bottom: 4px; }
.fav-item-price { font-size: .82rem; font-weight: 700; color: var(--red); font-variant-numeric: tabular-nums; }
.fav-item-rm {
  position: absolute; top: 8px; right: 8px;
  background: transparent; border: none;
  font-size: 1.2rem; cursor: pointer; color: var(--gray);
  width: 28px; height: 28px; border-radius: 4px;
  line-height: 1; transition: var(--tr);
}
.fav-item-rm:hover { background: #fee; color: var(--red); }
.fav-foot { border-top: 1px solid var(--border-lt); padding: 18px 24px 22px; background: #fafafa; }
.fav-compare { width: 100%; justify-content: center; }
.fav-compare:disabled { opacity: .5; cursor: not-allowed; }
.fav-hint { font-size: .72rem; color: var(--gray); text-align: center; margin: 10px 0 0; font-style: italic; }

.fav-toast {
  position: fixed; bottom: 90px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--dark); color: #fff;
  padding: 12px 18px; border-radius: 8px;
  font-size: .85rem; font-weight: 600;
  z-index: 120; opacity: 0; pointer-events: none;
  transition: transform .25s ease, opacity .2s ease;
}
.fav-toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* Compare page */
.compare-page { padding: 110px 0 80px; background: #fff; min-height: 70vh; }
.compare-grid { margin-top: 32px; }
.cmp-head {
  display: grid;
  grid-template-columns: repeat(var(--cols, 2), 1fr);
  gap: 16px;
}
.cmp-col {
  position: relative;
  border: 1px solid var(--border-lt);
  border-radius: 12px;
  padding: 18px;
  display: flex; flex-direction: column; gap: 12px;
  background: #fff;
}
.cmp-card { text-decoration: none; color: inherit; }
.cmp-img {
  width: 100%; aspect-ratio: 4 / 3;
  background: var(--bg-lt); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; margin-bottom: 8px;
}
.cmp-img img { max-width: 90%; max-height: 90%; object-fit: contain; }
.cmp-title {
  font-size: 1rem; font-weight: 700; color: var(--dark);
  margin: 0; letter-spacing: -.01em;
}
.cmp-rm {
  position: absolute; top: 10px; right: 10px;
  background: #fff;
  border: 1px solid var(--border-lt);
  border-radius: 50%;
  width: 28px; height: 28px;
  font-size: 1.1rem; cursor: pointer; color: var(--gray);
  line-height: 1; transition: var(--tr);
}
.cmp-rm:hover { color: var(--red); border-color: var(--red); }
.cmp-atc { width: 100%; justify-content: center; padding: 9px 14px; font-size: .85rem; }

.cmp-table { margin-top: 28px; border: 1px solid var(--border-lt); border-radius: 12px; overflow: hidden; background: #fff; }
.cmp-row {
  display: grid;
  grid-template-columns: 180px repeat(var(--cols, 2), 1fr);
  border-bottom: 1px solid var(--border-lt);
}
.cmp-row:last-child { border-bottom: none; }
.cmp-row-lbl {
  padding: 14px 16px;
  font-size: .78rem; font-weight: 700; color: var(--gray);
  text-transform: uppercase; letter-spacing: .08em;
  background: var(--bg-lt); border-right: 1px solid var(--border-lt);
}
.cmp-row-cell {
  padding: 14px 16px; font-size: .92rem; color: var(--dark);
  border-right: 1px solid var(--border-lt);
  font-variant-numeric: tabular-nums;
}
.cmp-row-cell:last-child { border-right: none; }
.cmp-feat-list { padding-left: 18px; margin: 0; font-size: .85rem; line-height: 1.5; color: var(--dark); }
.cmp-feat-list li { margin-bottom: 4px; }
.compare-empty { text-align: center; padding: 60px 20px; }
.compare-empty p { color: var(--gray); margin-bottom: 20px; }
@media (max-width: 768px) {
  .cmp-head, .cmp-row { grid-template-columns: 120px repeat(var(--cols, 2), 1fr); }
  .cmp-row-lbl { font-size: .68rem; padding: 10px 8px; }
  .cmp-row-cell { padding: 10px 8px; font-size: .8rem; }
  .compare-grid { overflow-x: auto; }
  .cmp-head, .cmp-table { min-width: 560px; }
}

/* Cart checkout success card */
.cart-success {
  text-align: center;
  padding: 32px 16px;
}
.cart-success-icon {
  width: 56px; height: 56px;
  background: #16a34a;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.cart-success h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 6px;
  letter-spacing: -.01em;
}
.cart-success p {
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.55;
  margin: 0 0 18px;
}

/* Avoid overlap of fixed floats with sticky product CTA on mobile */
@media (max-width: 768px) {
  body:has(.prod-sticky-cta) .whatsapp-float { bottom: 112px; }
  body:has(.prod-sticky-cta) .scroll-top     { bottom: 168px; }
}

/* ───────── Mobile edge & overflow hardening ───────── */
@media (max-width: 768px) {
  html, body { overflow-x: hidden; max-width: 100vw; }
  header, section, footer, main, .stats-bar { max-width: 100vw; overflow-x: clip; }
  /* Prevent long words / numbers blowing horizontal layout */
  h1, h2, h3, h4, .pc-name, .prod-title, .cat-page-title, .category-head h1, .cmp-title {
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
  }
  /* Tame iPhone notch landscape — symmetric padding only */
  .container {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }
  /* Keep hero CTAs above the fold on small screens */
  .hero { min-height: auto; }
  .hero-left { padding: 48px 16px; }
  .hero-left h1 { font-size: clamp(2.1rem, 9vw, 3rem); }
  /* Avoid huge feature paddings that push CTAs out */
  .feat-section { padding: 64px 0; }
}

/* iOS rubber-band fix: hide off-screen drawers/modals so they don't
   register as scrollable territory to the right of the viewport. */
.cart-drawer { visibility: hidden; }
.cart-drawer.open { visibility: visible; }
.fav-drawer  { visibility: hidden; }
.fav-drawer.open  { visibility: visible; }
.search-modal { visibility: hidden; }
.search-modal.open { visibility: visible; }

/* ───────── FAQ page ───────── */
.faq-page { padding: 110px 0 80px; background: #fff; min-height: 70vh; }
.faq-list { max-width: 820px; margin: 32px auto 0; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1px solid var(--border-lt);
  border-radius: 10px;
  background: #fff;
  transition: var(--tr);
  overflow: hidden;
}
.faq-item:hover { border-color: rgba(155,27,46,.3); }
.faq-item[open] {
  border-color: var(--red);
  box-shadow: 0 2px 12px rgba(155,27,46,.08);
}
.faq-item summary {
  cursor: pointer;
  padding: 18px 56px 18px 22px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
  position: relative;
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--red);
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--border-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: transform var(--tr), background var(--tr), color var(--tr);
}
.faq-item[open] summary::after {
  content: '−';
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.faq-a {
  padding: 0 22px 20px;
  font-size: .95rem;
  line-height: 1.7;
  color: var(--dark);
}
.faq-a a { color: var(--red); text-decoration: underline; }
.faq-a strong { font-weight: 700; }

.faq-cta {
  max-width: 600px;
  margin: 60px auto 0;
  padding: 36px 28px;
  text-align: center;
  background: linear-gradient(135deg, #0e1c2f 0%, #1a2b4a 60%, #9b1b2e 100%);
  border-radius: 14px;
  color: #fff;
}
.faq-cta h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 8px; letter-spacing: -.01em; }
.faq-cta p { color: rgba(255,255,255,.78); margin-bottom: 20px; font-size: .95rem; }
.faq-cta .btn { background: #fff; color: var(--dark); }
.faq-cta .btn:hover { background: var(--red); color: #fff; }

@media (max-width: 600px) {
  .faq-item summary { padding: 16px 50px 16px 16px; font-size: .92rem; }
  .faq-a { padding: 0 16px 18px; font-size: .88rem; }
  .faq-cta { padding: 28px 20px; }
}

/* ───────── Programmatic local landing pages ───────── */
.local-page { padding: 110px 0 80px; background: #fff; min-height: 70vh; }
.local-rec { margin-top: 32px; }
.local-rec-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: center;
}
.local-rec-text h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 14px; color: var(--dark); letter-spacing: -.01em; }
.local-rec-text p  { color: var(--gray); line-height: 1.7; margin-bottom: 22px; max-width: 540px; }
.local-rec-text .btn { margin-right: 10px; margin-bottom: 8px; }
.btn-ghost-dark { background: transparent; color: var(--dark); border: 1.5px solid var(--border-lt); }
.btn-ghost-dark:hover { border-color: var(--dark); background: var(--dark); color: #fff; }
.local-rec-card {
  display: block;
  border: 1px solid var(--border-lt);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: var(--tr);
  text-decoration: none;
  color: inherit;
}
.local-rec-card:hover { border-color: rgba(155,27,46,.3); box-shadow: 0 4px 24px rgba(0,0,0,.06); transform: translateY(-2px); }
.local-rec-img { aspect-ratio: 4/3; background: var(--bg-lt); display: flex; align-items: center; justify-content: center; padding: 18px; }
.local-rec-img img { max-width: 90%; max-height: 90%; object-fit: contain; }
.local-rec-body { padding: 18px 22px; }
.local-rec-body h3 { font-size: 1.15rem; font-weight: 800; margin: 4px 0 12px; color: var(--dark); }

.local-faq { margin-top: 60px; max-width: 820px; }
.local-faq h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 20px; color: var(--dark); }
.local-faq .faq-item { margin-bottom: 10px; }

.local-other { margin-top: 60px; }
.local-other h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 18px; color: var(--gray); }
.local-other-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; }
.local-other-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  border: 1px solid var(--border-lt);
  border-radius: 10px;
  text-decoration: none;
  background: #fff;
  transition: var(--tr);
}
.local-other-tile:hover { border-color: var(--red); transform: translateY(-2px); }
.local-other-tile strong { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.local-other-tile span { font-size: .78rem; color: var(--gray); font-variant-numeric: tabular-nums; }

@media (max-width: 768px) {
  .local-rec-grid { grid-template-columns: 1fr; gap: 24px; }
  .local-rec-text h2 { font-size: 1.4rem; }
}

/* ═══════════════════════════════════════════════════
   TRUST STRIP (under hero)
   ═══════════════════════════════════════════════════ */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--border-lt);
  padding: 18px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px 36px;
  flex-wrap: wrap;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: .02em;
  white-space: nowrap;
}
.trust-item svg { flex-shrink: 0; color: var(--red); opacity: .85; }
.trust-item strong { font-weight: 800; }
.trust-item + .trust-item::before {
  content: '';
  width: 1px;
  height: 14px;
  background: var(--border-lt);
  margin-right: 4px;
}
@media (max-width: 720px) {
  .trust-strip { padding: 14px 0; }
  .trust-inner { gap: 10px 18px; }
  .trust-item { font-size: .72rem; }
  .trust-item + .trust-item::before { display: none; }
}

/* ═══════════════════════════════════════════════════
   HOMEPAGE MINI-FAQ
   ═══════════════════════════════════════════════════ */
.home-faq { padding: 96px 0; background: #fff; }
.home-faq .faq-list { margin-top: 36px; }
.home-faq-foot {
  text-align: center;
  margin-top: 28px;
  font-size: .9rem;
  color: var(--dark);
  font-weight: 700;
}
.home-faq-foot a { color: var(--red); font-weight: 700; text-decoration: none; }
.home-faq-foot a:hover { text-decoration: underline; }
