/* CHL Forklift Catalog — Black & Yellow + Theme */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

:root,
[data-theme="light"] {
  --bg: #f4f4f1;
  --bg-soft: #ffffff;
  --bg-elevated: #ecece8;
  --yellow: #d4a017;
  --yellow-hover: #e8b41f;
  --yellow-dim: #b8890f;
  --text: #121212;
  --muted: #5c5c56;
  --border: #d8d8d2;
  --header-bg: rgba(244, 244, 241, 0.94);
  --card-hover: #ffffff;
  --table-head: #ecece8;
  --table-stripe: rgba(0, 0, 0, 0.02);
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max: 1200px;
  --radius: 2px;
  --header-h: 72px;
  color-scheme: light;
}

[data-theme="dark"] {
  --bg: #0a0a0a;
  --bg-soft: #141414;
  --bg-elevated: #1c1c1c;
  --yellow: #f5c518;
  --yellow-hover: #ffd84d;
  --yellow-dim: #c9a012;
  --text: #f7f7f5;
  --muted: #9a9a94;
  --border: #2a2a2a;
  --header-bg: rgba(10, 10, 10, 0.92);
  --card-hover: #1c1c1c;
  --table-head: #1a1a1a;
  --table-stripe: rgba(255, 255, 255, 0.02);
  --shadow: transparent;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

/* iOS safe areas */
@supports (padding: env(safe-area-inset-bottom)) {
  .site-footer {
    padding-bottom: calc(2rem + env(safe-area-inset-bottom));
  }
  .nav.open {
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
  }
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  transition: background 0.25s ease, color 0.25s ease;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: var(--header-h);
  gap: 1rem;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.logo-img--dark { display: none; }

[data-theme="dark"] .logo-img--light { display: none; }
[data-theme="dark"] .logo-img--dark { display: block; }

.logo-img--footer {
  height: 52px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  z-index: 2;
  grid-column: 3;
  grid-row: 1;
}

.header-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--bg) 70%, transparent);
  overflow: visible;
  transition: border-color 0.2s;
}

.header-search:focus-within {
  border-color: var(--yellow);
}

.header-search input[type="search"] {
  width: 11rem;
  max-width: 22vw;
  padding: 0.45rem 0.65rem 0.45rem 0.75rem;
  border: none;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 0.85rem;
  outline: none;
}

.header-search input[type="search"]::placeholder {
  color: var(--muted);
}

.header-search input[type="search"]::-webkit-search-cancel-button {
  appearance: none;
}

.header-search button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  flex-shrink: 0;
}

.header-search button:hover {
  color: var(--yellow);
}

.header-search button svg {
  width: 1.05rem;
  height: 1.05rem;
}

.search-suggest {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  right: 0;
  min-width: min(22rem, calc(100vw - 2rem));
  max-height: min(70vh, 28rem);
  overflow-y: auto;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
  z-index: 80;
}

.search-suggest[hidden] {
  display: none;
}

.search-suggest-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--border);
}

.search-suggest-item:last-child {
  border-bottom: none;
}

.search-suggest-item:hover,
.search-suggest-item.is-active {
  background: color-mix(in srgb, var(--yellow) 12%, transparent);
}

.search-suggest-item img {
  width: 2.75rem;
  height: 2.75rem;
  object-fit: contain;
  background: var(--bg);
  border-radius: 4px;
  flex-shrink: 0;
}

.search-suggest-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.search-suggest-text strong {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.25;
}

.search-suggest-text span {
  font-size: 0.75rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-suggest-empty,
.search-suggest-more {
  display: block;
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
}

.search-suggest-more {
  color: var(--yellow);
  font-weight: 600;
  border-top: 1px solid var(--border);
}

.search-suggest-more:hover {
  background: color-mix(in srgb, var(--yellow) 10%, transparent);
}

.search-result-meta {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  grid-column: 2;
  grid-row: 1;
  min-height: 0;
}

.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

.nav a:hover,
.nav a.active { color: var(--yellow); }

.theme-toggle {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--yellow);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}

.theme-toggle:hover {
  border-color: var(--yellow);
  background: var(--bg-elevated);
}

.theme-toggle svg { width: 20px; height: 20px; }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="light"] .theme-toggle .icon-sun { display: block; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  overflow: hidden;
}

.lang-btn {
  padding: 0.55rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
  transition: background 0.15s, color 0.15s;
}

.lang-btn:hover { color: var(--yellow); }

.lang-btn.active {
  background: var(--yellow);
  color: #0a0a0a;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 18px;
  background: var(--yellow);
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  border-radius: var(--radius);
}

.btn-primary {
  background: var(--yellow);
  color: #0a0a0a;
}

.btn-primary:hover {
  background: var(--yellow-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--yellow);
  border: 1px solid var(--yellow);
}

.btn-outline:hover {
  background: var(--yellow);
  color: #0a0a0a;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover { border-color: var(--yellow); color: var(--yellow); }

.btn-sm { padding: 0.5rem 1rem; font-size: 0.75rem; }
.btn-danger { background: #c0392b; color: #fff; }
.btn-danger:hover { background: #e74c3c; }

/* Hero */
.hero {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: center;
  padding: 3.5rem 0 4rem;
  overflow: visible;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--bg) 55%, transparent) 0%, color-mix(in srgb, var(--bg) 85%, transparent) 55%, var(--bg) 100%),
    radial-gradient(ellipse at 70% 40%, color-mix(in srgb, var(--yellow) 12%, transparent), transparent 55%),
    linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 80px,
      color-mix(in srgb, var(--yellow) 4%, transparent) 80px,
      color-mix(in srgb, var(--yellow) 4%, transparent) 81px
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  animation: fadeUp 0.8s ease both;
}

.hero-copy {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1 1 auto;
  min-width: 0;
  overflow: visible;
}

.hero-anim {
  flex: 0 0 16rem;
  width: 16rem;
  height: 14.5rem;
  min-height: 14.5rem;
  align-self: center;
  overflow: hidden;
  line-height: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}

.hero-anim video {
  position: absolute;
  top: 0;
  left: -22%;
  display: block;
  height: 100%;
  width: auto;
  max-width: none;
  margin: 0;
  object-fit: unset;
  pointer-events: none;
}

.hero-text {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: -0.75rem;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin: 0 0 0.85rem;
}

.hero-text h1 span { color: var(--yellow); }

.hero-text p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 28rem;
  margin: 0;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  flex: 0 0 auto;
  width: 16.5rem;
}

.hero-actions .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.hero-actions .btn-primary:hover {
  background: #fff;
  color: #0a0a0a;
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px var(--border);
}

/* Site search */
.search-section {
  padding-top: 0;
}

.site-search {
  max-width: 44rem;
}

.site-search-row {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
}

.site-search-row input[type="search"] {
  flex: 1;
  min-width: 0;
  padding: 0.95rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  color: var(--text);
  font: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.site-search-row input[type="search"]::placeholder {
  color: var(--muted);
}

.site-search-row input[type="search"]:focus {
  border-color: var(--yellow);
}

.site-search-row .btn {
  flex-shrink: 0;
  padding-inline: 1.75rem;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Sections */
.section { padding: 5rem 0; }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  letter-spacing: 0.03em;
  line-height: 1;
}

.section-desc {
  color: var(--muted);
  max-width: 28rem;
  font-size: 0.95rem;
}

.section-alt { background: var(--bg-soft); }

/* Category grid — 3 equal columns (2 rows of 3), boxed */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.cat-card {
  background: var(--bg);
  padding: 1.5rem 1.35rem;
  transition: background 0.25s;
  min-height: 180px;
  display: grid;
  grid-template-columns: minmax(120px, 42%) minmax(0, 1fr);
  align-items: stretch;
  column-gap: 1.15rem;
}

.cat-card:hover { background: var(--card-hover); }

.cat-card-media {
  position: relative;
  min-width: 0;
  min-height: 0;
  max-width: 200px;
  width: 100%;
  background: transparent;
}

.cat-card-media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: transparent;
  transition: transform 0.35s ease;
}

.cat-card:hover .cat-card-media img {
  transform: scale(1.03);
}

/* Stacker cutout has more empty frame; nudge size to match neighbors */
.cat-card--akulu-istif-makinesi .cat-card-media img {
  transform: scale(1.22);
  transform-origin: center center;
}

.cat-card--akulu-istif-makinesi:hover .cat-card-media img {
  transform: scale(1.26);
}

/* Diesel cover is tighter/smaller in frame vs electric forklift */
.cat-card--dizel-forklift .cat-card-media img {
  transform: scale(1.18);
  transform-origin: center center;
}

.cat-card--dizel-forklift:hover .cat-card-media img {
  transform: scale(1.22);
}

.cat-card-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cat-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
  line-height: 1.1;
}

.cat-card p {
  font-size: 0.85rem;
  color: var(--muted);
  flex: 1;
  line-height: 1.4;
}

.cat-card .link-arrow {
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.series-group {
  margin-bottom: 0.5rem;
}

.series-group--divided {
  margin-top: 2.75rem;
  padding-top: 2.25rem;
  border-top: 2px solid var(--yellow);
}

.series-group-header {
  margin-bottom: 1.25rem;
}

.series-group-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0;
}

.product-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.product-card:hover {
  border-color: var(--yellow-dim);
  transform: translateY(-3px);
}

.product-card-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-card-wrap .product-card {
  flex: 1;
}

.compare-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--muted);
  cursor: pointer;
  user-select: none;
  padding: 0 0.15rem;
}

.compare-check input {
  accent-color: var(--yellow);
  width: 1rem;
  height: 1rem;
}

.compare-check:has(input:checked) {
  color: var(--yellow);
}

/* Compare page */
.page-hero-desc {
  color: var(--muted);
  max-width: 40rem;
  margin-top: 0.75rem;
  line-height: 1.6;
}

.compare-picker {
  margin-bottom: 2.5rem;
}

.compare-picker-label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--muted);
}

.compare-picker-label span { color: var(--yellow); }

.compare-picker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.compare-pick-item {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.compare-pick-item.is-checked,
.compare-pick-item:has(input:checked) {
  border-color: var(--yellow);
  background: color-mix(in srgb, var(--yellow) 8%, var(--bg-soft));
}

.compare-pick-item input {
  margin-top: 0.2rem;
  accent-color: var(--yellow);
}

.compare-pick-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.compare-pick-body strong {
  font-size: 0.88rem;
  line-height: 1.3;
}

.compare-pick-body small {
  color: var(--muted);
  font-size: 0.75rem;
}

.compare-picker-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.compare-heads {
  display: grid;
  grid-template-columns: minmax(160px, 1.1fr) repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 1px;
}

.compare-head-label {
  background: var(--table-head);
  padding: 1rem;
  display: flex;
  align-items: flex-end;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.compare-head-product {
  background: var(--bg);
  padding: 1rem;
  position: relative;
  text-align: center;
}

.compare-head-product a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.compare-head-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
}

.compare-head-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.compare-head-product strong {
  font-size: 0.85rem;
  line-height: 1.3;
}

.compare-remove {
  position: absolute;
  top: 0.4rem;
  right: 0.5rem;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1;
}

.compare-remove:hover { color: var(--yellow); }

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 0.9rem;
}

.compare-table th,
.compare-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.compare-table th {
  text-align: left;
  width: 22%;
  background: var(--bg-soft);
  font-weight: 600;
  color: var(--muted);
  font-size: 0.82rem;
}

.compare-table td {
  text-align: center;
  background: var(--bg);
}

.compare-table tr.is-diff td {
  color: var(--text);
  font-weight: 600;
}

.compare-table tr.is-same td {
  color: var(--muted);
}

.compare-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: var(--header-bg);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(12px);
  padding: 0.85rem 0;
  transform: translateY(110%);
  transition: transform 0.25s;
}

.compare-bar.is-open { transform: translateY(0); }

.compare-bar-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.compare-bar-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
}

.compare-bar-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  font-size: 0.78rem;
}

.compare-bar-chip button {
  border: 0;
  background: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}

.compare-bar-actions {
  display: flex;
  gap: 0.5rem;
}

body.has-compare-bar { padding-bottom: 5.5rem; }

.whatsapp-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 95;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  padding: 0;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, bottom 0.25s ease;
}
.whatsapp-fab:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}
.whatsapp-fab:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.whatsapp-fab-icon {
  display: block;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  aspect-ratio: 1 / 1;
}
body.has-compare-bar .whatsapp-fab {
  bottom: 5.75rem;
}
@media (max-width: 640px) {
  .whatsapp-fab {
    right: 1rem;
    bottom: 1rem;
    width: 3.25rem;
    height: 3.25rem;
  }
  body.has-compare-bar .whatsapp-fab {
    bottom: 5.5rem;
  }
}

.product-card-img {
  aspect-ratio: 4/3;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-img img {
  transform: scale(1.04);
}

.product-card-body {
  padding: 1.25rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.product-series {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
}

.product-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
}

.product-type {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--muted);
}

.product-meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: auto;
  padding-top: 0.75rem;
}

/* Page hero (inner) */
.page-hero {
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse at 0% 0%, color-mix(in srgb, var(--yellow) 8%, transparent), transparent 50%),
    var(--bg);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  letter-spacing: 0.03em;
  line-height: 1;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb span { color: var(--border); }

/* Product detail */
.product-detail {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  padding: 2rem 0 3rem;
}

.gallery-wrap { display: flex; flex-direction: column; gap: 0.75rem; }

.product-gallery {
  background: #ffffff;
  border: 1px solid var(--border);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow: hidden;
}

.product-gallery img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 0.5rem;
}

.gallery-thumb {
  aspect-ratio: 1;
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 0.35rem;
  cursor: pointer;
  transition: border-color 0.2s;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-thumb:hover,
.gallery-thumb.active { border-color: var(--yellow); }

.product-info .series {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.75rem;
}

.product-info h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 0.35rem;
}

.product-info .product-type {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--muted);
  margin: 0 0 1rem;
  line-height: 1.35;
}

.product-info .lead {
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.quick-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin: 1.25rem 0 1.5rem;
}

.quick-spec {
  background: var(--bg-soft);
  padding: 0.9rem 1rem;
}

.quick-spec span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.quick-spec strong {
  font-size: 0.95rem;
  font-weight: 600;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.product-actions .btn {
  flex: 1 1 0;
  min-width: 0;
  box-sizing: border-box;
  padding: 0.7rem 0.55rem;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  line-height: 1.25;
  white-space: normal;
  text-align: center;
  overflow-wrap: anywhere;
}
  hyphens: auto;
}

/* Catalog content blocks */
.catalog-block {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

.catalog-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: 0.03em;
  margin-bottom: 1.25rem;
}

.catalog-intro {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  width: 100%;
}

.catalog-intro p + p {
  margin-top: 1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
}

.feature-item {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-left: 3px solid var(--yellow);
  padding: 1.25rem 1.35rem;
  font-size: 0.92rem;
  line-height: 1.55;
  min-height: 100%;
}

.feature-item h3,
.feature-item strong {
  display: block;
  color: var(--yellow);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.feature-item p {
  margin: 0;
}

.product-highlights {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.product-highlights-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.15rem;
}

.product-highlight {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  line-height: 1.45;
}

.product-highlight:last-child { border-bottom: none; }

.product-highlight strong {
  color: var(--text);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-highlight span { color: var(--muted); }

.key-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin: 1.25rem 0 0.5rem;
}

.key-spec {
  background: var(--bg-soft);
  padding: 0.85rem 1rem;
}

.key-spec span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.key-spec strong {
  font-size: 0.92rem;
  font-weight: 600;
}

/* Technical table — catalog style, comparison-ready */
.specs-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  margin-top: 1.25rem;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  font-size: 0.9rem;
}

.specs-table thead th {
  background: var(--table-head);
  color: var(--yellow);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.95rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.specs-table thead th:first-child {
  text-align: left;
  color: var(--muted);
}

.specs-table tbody th {
  text-align: left;
  font-weight: 500;
  color: var(--muted);
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.specs-table td {
  text-align: center;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}

.specs-table tbody tr:nth-child(even) { background: var(--table-stripe); }
.specs-table tbody tr:last-child th,
.specs-table tbody tr:last-child td { border-bottom: none; }

.specs-group-row th {
  background: var(--bg-elevated);
  color: var(--yellow) !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700 !important;
  padding: 0.7rem 1rem !important;
}

.specs-note {
  margin-top: 0.85rem;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Filters */
.filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.filters-bar {
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
}

.filter-chips {
  display: grid;
  grid-template-columns: repeat(var(--chip-count, 7), minmax(0, 1fr));
  gap: 0.4rem;
  width: 100%;
}

.filter-search {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-left: 0;
  max-width: 28rem;
}

.filter-search input[type="search"] {
  padding: 0.5rem 1rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text);
  min-width: 0;
  flex: 1;
  outline: none;
}

.filter-search input[type="search"]:focus {
  border-color: var(--yellow);
}

.filter-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 0;
  padding: 0.55rem 0.4rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.25;
  text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: all 0.2s;
  border-radius: var(--radius);
  hyphens: auto;
}

.filter-chip:hover,
.filter-chip.active {
  border-color: var(--yellow);
  color: var(--yellow);
  background: color-mix(in srgb, var(--yellow) 8%, transparent);
}

@media (max-width: 1099px) {
  .filter-chips {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 0.2rem;
    mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 1.25rem), transparent 100%);
  }

  .filter-chip {
    flex: 0 0 auto;
    padding: 0.5rem 0.85rem;
    font-size: 0.7rem;
    white-space: nowrap;
  }
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  margin-top: auto;
  background: var(--bg-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 22rem;
}

.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Empty / alerts */
.empty-state {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--muted);
  border: 1px dashed var(--border);
}

.alert {
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  border-left: 3px solid;
}

.alert-success { background: rgba(39,174,96,0.12); border-color: #27ae60; color: #27ae60; }
.alert-error { background: rgba(192,57,43,0.12); border-color: #c0392b; color: #c0392b; }
.alert-info { background: color-mix(in srgb, var(--yellow) 12%, transparent); border-color: var(--yellow); color: var(--yellow); }

body.modal-open { overflow: hidden; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.modal[hidden] { display: none !important; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 26rem);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 1.5rem 1.35rem 1.25rem;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.modal-dialog h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  margin: 0 1.5rem 0.65rem 0;
}

.modal-text {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 1.15rem;
}

.modal-close {
  position: absolute;
  top: 0.55rem;
  right: 0.65rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover { color: var(--text); }

.brochure-form .form-group { margin-bottom: 1rem; }

.brochure-form label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.brochure-form input[type="email"] {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font: inherit;
}

.brochure-form-msg {
  font-size: 0.9rem;
  margin: 0 0 0.85rem;
  line-height: 1.4;
}

.brochure-form-msg--success { color: #27ae60; }
.brochure-form-msg--error { color: #c0392b; }

.modal-actions {
  display: flex;
  gap: 0.65rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: 0;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.15rem;
  font-weight: 600;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  float: right;
  color: var(--yellow);
  font-weight: 700;
}

.faq-item[open] summary::after { content: '–'; }

.faq-item p {
  margin: 0;
  padding: 0 1.15rem 1.15rem;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item .faq-guide-link {
  padding-top: 0;
  margin-top: -0.5rem;
}

.faq-item .faq-guide-link a {
  color: var(--yellow);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.faq-item .faq-guide-link a:hover {
  text-decoration: underline;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.guide-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 2rem 1.5rem;
  min-height: 180px;
  background: var(--bg);
  color: inherit;
  text-decoration: none;
  transition: background 0.25s;
}

.guide-card:hover {
  background: var(--card-hover);
}

.guide-card h2,
.guide-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.5rem;
  color: var(--text);
  line-height: 1.1;
  text-transform: uppercase;
}

.guide-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
  font-size: 0.85rem;
}

.guide-card-cta {
  margin-top: 1.25rem;
  color: var(--yellow);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 2.5rem;
  align-items: start;
}

.guide-section {
  margin-bottom: 1.75rem;
}

.guide-section h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.03em;
  margin: 0 0 0.65rem;
  color: var(--text);
}

.guide-section p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  line-height: 1.75;
}

.guide-section p:last-child {
  margin-bottom: 0;
}

.guide-section ul {
  margin: 0.15rem 0 0;
  padding-left: 1.25rem;
  color: var(--muted);
  line-height: 1.7;
}

.guide-section ul li {
  margin-bottom: 0.45rem;
}

.guide-section ul li:last-child {
  margin-bottom: 0;
}

.guide-section ul + p,
.guide-section p + ul {
  margin-top: 0.85rem;
}

.guide-table-wrap {
  margin: 0.85rem 0 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.guide-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  line-height: 1.55;
}

.guide-table th,
.guide-table td {
  border: 1px solid var(--border);
  padding: 0.75rem 0.9rem;
  vertical-align: top;
  text-align: left;
  color: var(--muted);
}

.guide-table th {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text);
  background: var(--bg-soft);
}

.guide-table td:first-child,
.guide-table th:first-child {
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  width: 6.5rem;
}

.guide-table td ul {
  margin: 0;
  padding-left: 1.1rem;
}

.guide-table td ul li {
  margin-bottom: 0.35rem;
}

.guide-table td ul li:last-child {
  margin-bottom: 0;
}

.guide-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.guide-aside-block {
  border-top: 2px solid var(--yellow);
  padding: 1.1rem 0 1.35rem;
  margin-bottom: 0.5rem;
  background: transparent;
}

.guide-aside-block h3 {
  margin: 0 0 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
}

.guide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.guide-tags a {
  border-bottom: 1px solid var(--border);
  padding: 0.25rem 0;
  margin-right: 0.65rem;
  font-size: 0.85rem;
  color: var(--text);
  text-decoration: none;
}

.guide-tags a:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.guide-aside-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.guide-aside-list li {
  margin-bottom: 0.55rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--border);
}

.guide-aside-list li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.guide-aside-list a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.4;
}

.guide-aside-list a:hover { color: var(--yellow); }

@media (max-width: 900px) {
  .guide-layout { grid-template-columns: 1fr; }
  .guide-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .guide-grid { grid-template-columns: 1fr; }
  .guide-card { min-height: 0; padding: 1.5rem 1.25rem; }
  .guide-card h2,
  .guide-card h3 { font-size: 1.35rem; }
}

/* BUMB — Bana Uygun Makineyi Bul */
.bumb-home {
  padding: 0;
}

.bumb-home-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.15rem 1.5rem;
  flex-wrap: wrap;
  padding: 1.1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.bumb-home-copy {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 34rem;
}

.bumb-home-copy .section-label {
  margin-bottom: 0.25rem;
}

.bumb-home-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.5vw, 2rem);
  letter-spacing: 0.03em;
  line-height: 1.05;
  margin: 0;
}

.bumb-home-copy p:last-child {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  max-width: 34rem;
  line-height: 1.45;
}

.bumb-home-inner .btn {
  flex: 0 0 auto;
}

@media (min-width: 721px) {
  .bumb-home-inner {
    max-width: 48rem;
    flex-wrap: nowrap;
  }
}

.section:has(.cat-grid) + .bumb-home {
  margin-top: -1.5rem;
}

.bumb-home + .section {
  padding-top: 3rem;
}

/* Advanced search */
.adv-section {
  padding-top: 2.5rem;
}

.adv-form {
  margin-bottom: 2.75rem;
  padding: 1.5rem 1.35rem;
  border: 1px solid var(--border);
  background: var(--bg);
}

.adv-form-row--search {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(12rem, 0.8fr) auto;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--border);
  align-items: end;
}

.adv-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.55rem;
}

.adv-hint {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}

.adv-spec-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.35rem;
}

.adv-field input[type="search"],
.adv-field select {
  display: block;
  width: 100%;
  padding: 0.65rem 0.85rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text);
  outline: none;
  font: inherit;
  border-radius: var(--radius);
  max-width: 100%;
}

.adv-field input[type="search"]:focus,
.adv-field select:focus {
  border-color: var(--yellow);
}

.adv-field select {
  cursor: pointer;
  appearance: auto;
}

.adv-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.adv-select-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.15rem;
}

.adv-results {
  margin-top: 0.5rem;
}

@media (max-width: 960px) {
  .adv-form-row--search {
    grid-template-columns: 1fr 1fr;
  }
  .adv-field--actions {
    grid-column: 1 / -1;
  }
  .adv-select-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .adv-form { padding: 1.15rem 1rem; }
  .adv-form-row--search {
    grid-template-columns: 1fr;
  }
  .adv-select-grid {
    grid-template-columns: 1fr;
  }
}

.page-hero--compact {
  padding-bottom: 1.5rem;
}

.bumb-hero-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.bumb-hero-row .page-hero-desc {
  margin-bottom: 0;
}

.bumb-section {
  padding-top: 1.5rem;
  padding-bottom: 4rem;
}

.bumb-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 920px;
}

.bumb-step {
  padding: 1.35rem 0 1.5rem;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.bumb-step.is-locked {
  opacity: 0.42;
  pointer-events: none;
}

.bumb-step-head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.9rem;
}

.bumb-step-num {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--yellow);
  line-height: 1.2;
  min-width: 1.6rem;
}

.bumb-step-head h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  margin: 0;
  line-height: 1.1;
}

.bumb-step-head p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.45;
}

.bumb-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.bumb-chips--grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.bumb-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.3;
  text-align: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.bumb-chip:hover {
  border-color: var(--yellow);
  color: var(--text);
}

.bumb-chip.is-active {
  border-color: var(--yellow);
  color: var(--text);
  background: color-mix(in srgb, var(--yellow) 12%, var(--bg));
  box-shadow: inset 0 0 0 1px var(--yellow);
}

.bumb-chip--block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  padding: 0.75rem 0.85rem;
  min-height: 4.5rem;
  gap: 0.3rem;
}

.bumb-chip--block strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  font-weight: 400;
  color: var(--text);
  line-height: 1.15;
}

.bumb-chip--block span {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--muted);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bumb-chip--block.is-active strong { color: var(--text); }

.bumb-skip-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.bumb-results {
  padding-top: 2.5rem;
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.bumb-results-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.bumb-results-head .section-title {
  font-size: clamp(1.55rem, 3.5vw, 2.1rem);
}

.bumb-partial-hint {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.bumb-count {
  color: var(--yellow);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  padding-bottom: 0.35rem;
}

.bumb-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

@media (max-width: 900px) {
  .bumb-chips--grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .bumb-chips--grid { grid-template-columns: 1fr; }
  .bumb-chip--block { min-height: 0; }
}

/* About strip */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.section:has(.guide-grid) + .section:has(.about-strip) {
  padding-top: 2rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 3rem;
}

.stat-item {
  background: var(--bg);
  padding: 2rem 1.5rem;
  text-align: center;
}

.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item span {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* Contact form */
.contact-form {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 2rem;
}

.contact-form .form-group { margin-bottom: 1rem; }

.contact-form label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  outline: none;
}

.contact-form input:not([type="checkbox"]):focus,
.contact-form textarea:focus { border-color: var(--yellow); }

.contact-form textarea { resize: vertical; }

.form-consent { margin-top: 0.35rem; }

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.consent-check input[type="checkbox"] {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: var(--yellow);
}

.consent-check a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-check a:hover { color: var(--yellow); }

.legal-content {
  max-width: 44rem;
  line-height: 1.65;
}

.legal-content h2 {
  margin: 1.75rem 0 0.65rem;
  font-size: 1.15rem;
}

.legal-content h3 {
  margin: 1.25rem 0 0.5rem;
  font-size: 1rem;
  color: var(--text);
}

.legal-content p { margin: 0 0 0.85rem; color: var(--muted); }

.legal-content ul {
  margin: 0 0 1rem 1.15rem;
  color: var(--muted);
}

.legal-content li { margin-bottom: 0.35rem; }

.legal-updated {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.25rem !important;
}

.cookie-gate {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.cookie-gate[hidden] { display: none !important; }

.cookie-gate-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
}

.cookie-gate-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 28rem);
  background: var(--bg-elevated, #141414);
  border: 1px solid var(--border);
  padding: 1.5rem 1.35rem 1.35rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.cookie-gate-panel h2 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

.cookie-gate-panel p {
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

.cookie-gate-panel a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-gate-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-gate-actions .btn {
  min-width: 7.5rem;
}

body.cookie-locked {
  overflow: hidden;
  touch-action: none;
}

body.cookie-locked > *:not(.cookie-gate) {
  pointer-events: none;
  user-select: none;
}

body.cookie-locked .cookie-gate,
body.cookie-locked .cookie-gate * {
  pointer-events: auto;
  user-select: auto;
}

/* Responsive */
@media (max-width: 1100px) {
  .nav { gap: 1.25rem; }
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}

@media (max-width: 900px) {
  .container { width: min(100% - 1.5rem, var(--max)); }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .logo { grid-column: 1; grid-row: 1; }
  .header-actions { grid-column: 2; grid-row: 1; }

  .header-search input[type="search"] {
    width: 0;
    max-width: 0;
    padding-inline: 0;
    opacity: 0;
    pointer-events: none;
  }

  .header-search:focus-within input[type="search"],
  .header-search.open input[type="search"] {
    width: min(11rem, 42vw);
    max-width: 42vw;
    padding: 0.45rem 0.65rem 0.45rem 0.75rem;
    opacity: 1;
    pointer-events: auto;
  }

  .site-search-row {
    flex-direction: column;
  }

  .site-search-row .btn {
    width: 100%;
  }

  .nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 0 1rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
    z-index: 99;
    grid-column: auto;
    transform: none;
  }

  .nav.open { display: flex; }

  .nav a {
    padding: 0.95rem 1.25rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
  }

  .nav a:last-child { border-bottom: none; }

  .nav-toggle { display: flex; }

  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-detail,
  .about-strip,
  .footer-grid { grid-template-columns: 1fr; }

  .stat-row { grid-template-columns: 1fr 1fr; }
  .quick-specs { grid-template-columns: 1fr 1fr; }

  .section { padding: 3.5rem 0; }
  .section-header { margin-bottom: 1.75rem; }

  .product-detail {
    gap: 1.75rem;
    padding: 1.5rem 0 2.5rem;
  }

  .product-gallery { aspect-ratio: 4/3; }

  .product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }

  .product-actions .btn {
    width: 100%;
    white-space: normal;
    line-height: 1.25;
    min-height: 2.75rem;
  }

  .catalog-block { padding: 2.25rem 0; }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-highlight {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .key-specs {
    grid-template-columns: 1fr 1fr;
  }

  .filters {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-search {
    margin-left: 0;
    width: 100%;
    max-width: none;
  }

  .filter-search input[type="search"] {
    flex: 1;
    min-width: 0;
    width: 100%;
  }

  .filters input[type="search"],
  .filters .btn {
    flex: 1 1 auto;
    min-width: 0;
    margin-left: 0 !important;
  }

  .specs-wrap {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
    border-left: none;
    border-right: none;
  }

  .specs-table {
    font-size: 0.82rem;
    min-width: 480px;
  }

  .specs-table thead th,
  .specs-table tbody th,
  .specs-table td {
    padding: 0.7rem 0.75rem;
  }

  .specs-table tbody th {
    position: sticky;
    left: 0;
    background: var(--bg-soft);
    z-index: 1;
    box-shadow: 2px 0 0 var(--border);
  }

  .hero {
    padding: 2.5rem 0 2.75rem;
  }

  .hero-content {
    flex-direction: column;
    align-items: stretch;
    gap: 1.75rem;
  }

  .hero-copy {
    align-items: center;
    gap: 1.1rem;
    margin-left: -1rem;
  }

  .hero-anim {
    flex: 0 0 9.75rem;
    width: 9.75rem;
    height: 12rem;
    min-height: 12rem;
    align-self: center;
    overflow: hidden;
    margin: 0 0.55rem 0 0;
    z-index: 1;
  }

  .hero-anim video {
    left: -5.75rem;
    top: 2%;
    height: 96%;
    width: auto;
  }

  .hero-text {
    margin-left: 0;
    padding-left: 0.15rem;
    flex: 1 1 auto;
    min-width: 0;
    position: relative;
    z-index: 2;
  }

  .hero-text h1 {
    font-size: clamp(2.4rem, 10.5vw, 3.35rem);
    line-height: 0.95;
    letter-spacing: -0.01em;
  }

  .hero-text h1 span {
    white-space: nowrap;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-actions .btn { width: 100%; }

  .page-hero { padding: 2.25rem 0 1.75rem; }

  .contact-form { padding: 1.35rem; }
}

@media (max-width: 640px) {
  :root { --header-h: 64px; }

  .logo-img { height: 36px; }
  .logo-img--footer { height: 44px; }

  .theme-toggle,
  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cat-grid {
    grid-template-columns: 1fr;
  }

  .cat-card { min-height: 150px; padding: 1.25rem 1.1rem; column-gap: 0.9rem; grid-template-columns: minmax(100px, 38%) minmax(0, 1fr); }
  .cat-card-media { max-width: 150px; }
  .cat-card h3 { font-size: 1.25rem; }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .quick-specs,
  .key-specs { grid-template-columns: 1fr; }

  .stat-row { grid-template-columns: 1fr; }

  .section { padding: 2.75rem 0; }

  .section-title {
    font-size: clamp(1.55rem, 6.5vw, 2.2rem);
  }

  .hero-copy {
    gap: 0.95rem;
    margin-left: -1.1rem;
  }

  .hero-text h1 {
    font-size: clamp(2.1rem, 10.5vw, 2.85rem);
    line-height: 0.95;
    letter-spacing: -0.01em;
  }

  .hero-text h1 span {
    white-space: nowrap;
  }

  .hero-anim {
    flex: 0 0 8.75rem;
    width: 8.75rem;
    height: 11rem;
    min-height: 11rem;
    margin: 0 0.45rem 0 0;
  }

  .hero-anim video {
    left: -5.25rem;
    top: 2%;
    height: 96%;
  }

  .hero-text {
    margin-left: 0;
    padding-left: 0.1rem;
  }

  .hero-text p { font-size: 0.95rem; }

  .product-info h1 {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

  .gallery-thumbs {
    grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
  }

  .footer-grid { gap: 1.75rem; }

  .btn {
    padding: 0.9rem 1.25rem;
  }

  /* Search row on products page */
  .filter-search {
    flex-wrap: wrap;
  }

  .filter-search input[type="search"],
  .filter-search .btn {
    flex: 1 1 100%;
  }
}

@media (max-width: 400px) {
  .container { width: min(100% - 1.1rem, var(--max)); }
  .product-card-body { padding: 1rem 1.1rem 1.2rem; }
}
