*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #12151a;
  --ink-soft: #3a424c;
  --ink-muted: #8a929c;
  --ice: #0094e0;
  --ice-deep: #0a5fe0;
  --ice-faint: #e7f5fc;
  --surface: #f6f8fb;
  --surface-2: #eef2f7;
  --line: #e5ebf1;
  --white: #ffffff;
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Figtree', system-ui, sans-serif;
  --max: 1120px;
  --narrow: 640px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(var(--max), 100% - 40px);
  margin-inline: auto;
}

.container--narrow {
  width: min(var(--narrow), 100% - 40px);
  margin-inline: auto;
}

/* ── Header ── */
.site-header {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(var(--max), 100% - 40px);
  margin-inline: auto;
}

.logo {
  justify-self: start;
  display: flex;
  align-items: center;
}

.logo img {
  height: 48px;
  width: auto;
  display: block;
}

.header-tagline {
  justify-self: center;
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: none;
}

@media (min-width: 900px) {
  .header-tagline {
    display: block;
  }
}

.header-end {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 20px;
}

.language-switcher {
  position: relative;
  flex-shrink: 0;
}

.language-switcher-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 6px 10px;
  font-family: inherit;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  min-width: 42px;
  line-height: 1;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.language-switcher-toggle:hover,
.language-switcher.open .language-switcher-toggle {
  border-color: var(--ink);
}

.language-switcher-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  margin: 0;
  padding: 4px 0;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  min-width: 52px;
  max-height: min(320px, 70vh);
  overflow-y: auto;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(18, 21, 26, 0.08);
}

.language-switcher.open .language-switcher-menu {
  display: block;
}

.language-switcher-menu .lang-link {
  display: block;
  padding: 8px 12px;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: center;
  transition: color 0.15s var(--ease);
}

.language-switcher-menu .lang-link:hover,
.language-switcher-menu .lang-link.active {
  color: var(--ink);
}

.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a,
.nav-dropdown-toggle {
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  transition: color 0.25s var(--ease);
}

.main-nav a:hover,
.main-nav a.active,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active {
  color: var(--ink);
}

.nav-item--dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-chevron {
  transition: transform 0.2s var(--ease);
}

.nav-item--dropdown.open .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  padding: 8px 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  box-shadow: 0 12px 32px rgba(18, 21, 26, 0.08);
  z-index: 80;
}

.nav-item--dropdown.open .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  white-space: nowrap;
  text-transform: none;
  letter-spacing: 0;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  margin: 5px 0;
}

/* ── Home hero ── */
.home-hero {
  padding: clamp(56px, 10vw, 112px) 0 clamp(48px, 8vw, 80px);
}

.home-hero__visual {
  display: none;
}

@media (min-width: 769px) {
  .home-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
  }

  .home-hero__visual {
    display: block;
    width: 100%;
    max-width: 520px;
    justify-self: end;
    mix-blend-mode: multiply;
  }
}

.home-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  max-width: 16ch;
}

.home-hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-top: 20px;
  max-width: 12ch;
}

.home-hero__tagline span {
  display: block;
  color: var(--ice);
}

.home-hero__lead {
  margin-top: 24px;
  max-width: 420px;
  font-size: 1.0625rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.home-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.home-hero__cta:hover {
  color: var(--ice-deep);
  border-color: var(--ice-deep);
}

.home-hero__cta svg {
  transition: transform 0.25s var(--ease);
}

.home-hero__cta:hover svg {
  transform: translateX(4px);
}

/* ── Spotlight ── */
.spotlight {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.spotlight__visual {
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(32px, 6vw, 64px);
  border-right: 1px solid var(--line);
}

.spotlight__visual img {
  max-height: min(420px, 50vh);
  object-fit: contain;
  mix-blend-mode: multiply;
}

.spotlight__info {
  padding: clamp(40px, 6vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spotlight__label {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 20px;
}

.spotlight__model {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
}

.spotlight__title {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  margin-bottom: 28px;
  max-width: 360px;
}

.spotlight__price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.spotlight__links {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.spotlight__links a {
  color: var(--ink-muted);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.spotlight__links a:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.spotlight__links a.primary {
  color: var(--ice-deep);
  border-color: var(--ice-deep);
}

/* ── Spec strip ── */
.spec-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.spec-strip__item {
  padding: clamp(28px, 4vw, 40px);
  text-align: center;
  border-right: 1px solid var(--line);
}

.spec-strip__item:last-child {
  border-right: none;
}

.spec-strip__value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ice);
  display: block;
}

.spec-strip__label {
  font-size: 0.75rem;
  color: var(--ink-muted);
  margin-top: 6px;
  letter-spacing: 0.04em;
}

/* ── Category index ── */
.category-index {
  border-top: 1px solid var(--line);
  padding: clamp(48px, 6vw, 72px) 0;
}

.category-index__head {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 32px;
}

.category-list {
  display: flex;
  flex-direction: column;
}

.category-list a {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: baseline;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.3s var(--ease);
}

.category-list a:first-child {
  border-top: 1px solid var(--line);
}

.category-list a:hover {
  padding-left: 8px;
}

.category-list__num {
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--ice);
  font-weight: 600;
}

.category-list__name {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.category-list__count {
  font-size: 0.8125rem;
  color: var(--ink-muted);
}

/* ── Catalog ── */
.catalog {
  padding: clamp(48px, 6vw, 72px) 0;
}

.catalog__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 40px;
  gap: 16px;
}

.catalog__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.catalog__head a {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
}

.catalog__head a:hover {
  color: var(--ink);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.product-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background 0.25s var(--ease);
}

.product-card:hover {
  background: var(--surface);
}

.product-card__image {
  aspect-ratio: 1;
  padding: clamp(16px, 3vw, 28px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--surface);
}

.product-card:hover .product-card__image {
  background: var(--surface-2);
}

.product-card__image img {
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ice-deep);
}

.product-card__body {
  padding: 16px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__model {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}

.product-card__spec {
  font-size: 0.75rem;
  color: var(--ink-muted);
  margin-bottom: 12px;
  flex: 1;
}

.product-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.product-card__price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

.product-card__price del {
  font-size: 0.75rem;
  color: var(--ink-muted);
  font-weight: 400;
  margin-left: 6px;
}

.product-card__arrow {
  font-size: 1rem;
  color: var(--ink-muted);
  transition: transform 0.25s var(--ease), color 0.25s var(--ease);
}

.product-card:hover .product-card__arrow {
  transform: translateX(3px);
  color: var(--ice);
}

/* ── Page headers ── */
.page-head {
  padding: clamp(48px, 6vw, 72px) 0 0;
}

.page-head h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.page-head p {
  margin-top: 12px;
  color: var(--ink-muted);
  font-size: 0.9375rem;
}

.page-head__intro {
  color: var(--ink-soft) !important;
  max-width: 42rem;
  line-height: 1.65;
}

.page-head__count {
  margin-top: 8px;
}

.category-cross {
  max-width: 42rem;
  line-height: 1.65;
  margin-top: 12px;
}

.category-cross a {
  color: var(--ice-deep);
  border-bottom: 1px solid var(--ice-faint);
}

.category-cross a:hover {
  color: var(--ink);
}

.filter-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.filter-tabs::-webkit-scrollbar {
  display: none;
}

.filter-tabs a {
  position: relative;
  flex: 0 0 auto;
  padding: 14px 20px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  white-space: nowrap;
  transition: color 0.2s;
}

.filter-tabs a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: transparent;
}

.filter-tabs a:hover,
.filter-tabs a.active {
  color: var(--ink);
}

.filter-tabs a:hover::after,
.filter-tabs a.active::after {
  background: var(--ice);
}

.filter-tabs + .catalog-grid {
  border-top: none;
}

/* ── Product page ── */
.product-page {
  padding-bottom: clamp(64px, 8vw, 96px);
}

.product-hero {
  background: var(--surface);
  padding: clamp(32px, 6vw, 72px) 0;
  border-bottom: 1px solid var(--line);
}

.product-hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.product-hero__image,
.product-gallery__main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 360px;
  padding: 24px;
}

.product-hero__image img,
.product-gallery__main img {
  max-height: min(460px, 58vh);
  width: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.product-gallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-gallery__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  padding: 4px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}

.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-gallery__thumb:hover,
.product-gallery__thumb.is-active {
  border-color: var(--ice);
}

.product-hero__model {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 12px;
}

.product-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.product-hero__desc {
  color: var(--ink-soft);
  font-size: 0.9375rem;
  max-width: 400px;
  margin-bottom: 24px;
}

.product-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8125rem;
  color: var(--ink-muted);
  margin-bottom: 32px;
}

.product-hero__meta .rating {
  color: var(--ink);
}

.product-hero__meta a {
  color: var(--ice-deep);
  border-bottom: 1px solid var(--ice-faint);
}

.product-buy {
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
}

.product-buy__price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.product-buy__price del {
  font-size: 1rem;
  color: var(--ink-muted);
  font-weight: 400;
  margin-left: 8px;
}

.btn-buy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.25s var(--ease);
}

.btn-buy:hover {
  background: var(--ice-deep);
}

.product-buy-sticky {
  display: none;
}

.product-buy-sticky__inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.product-affiliate-note {
  margin-top: 14px;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 36em;
}

.product-affiliate-note a {
  color: var(--ice-deep);
  border-bottom: 1px solid var(--ice-faint);
}

.product-specs,
.product-insight,
.product-alternatives,
.product-faq {
  padding: clamp(32px, 4vw, 48px) 0 0;
}

.product-faq {
  padding-bottom: clamp(48px, 6vw, 72px);
}

.product-specs h2,
.product-faq h2,
.product-insight h2,
.product-alternatives h2 {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 16px;
}

.spec-table,
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.spec-table th,
.spec-table td,
.compare-table th,
.compare-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.spec-table th {
  width: 38%;
  color: var(--ink-muted);
  font-weight: 500;
}

.compare-table-wrap {
  overflow-x: auto;
  margin: 28px 0;
}

.compare-table a {
  color: var(--ice-deep);
  border-bottom: 1px solid var(--ice-faint);
}

.product-insight__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 40px;
}

.product-insight ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.product-insight li {
  margin: 6px 0;
}

.product-alternatives__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.product-alternatives__list li {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.product-alternatives__list a {
  color: var(--ice-deep);
  border-bottom: 1px solid var(--ice-faint);
  font-weight: 600;
}

.product-alternatives__list span {
  color: var(--ink-soft);
  font-size: 0.9375rem;
}

.product-faq__item {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.product-faq__item h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.product-faq__item p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.category-seo {
  padding-top: clamp(24px, 4vw, 40px);
  padding-bottom: clamp(48px, 6vw, 72px);
}

.product-details {
  padding: clamp(48px, 6vw, 72px) 0;
}

.product-details .prose h2 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 36px 0 16px;
}

.product-details .prose h2:first-child {
  margin-top: 0;
}

.product-details .prose p,
.product-details .prose li {
  color: var(--ink-soft);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.product-details .prose a {
  color: var(--ice-deep);
  border-bottom: 1px solid var(--ice-faint);
}

.product-details .prose ul {
  list-style: none;
  padding: 0;
}

.product-details .prose li {
  padding: 10px 0 10px 16px;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.product-details .prose li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--ice);
}

.breadcrumbs {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  padding: 20px 0;
}

.breadcrumbs a:hover {
  color: var(--ink);
}

.breadcrumbs span {
  margin: 0 10px;
  opacity: 0.4;
}

/* ── About / legal ── */
.about-block {
  padding: clamp(56px, 8vw, 96px) 0;
}

.about-block h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}

.about-block h2 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 40px 0 12px;
}

.about-block p {
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 560px;
}

.about-block a {
  color: var(--ice-deep);
  border-bottom: 1px solid var(--ice-faint);
}

.about-block ul {
  margin: 12px 0 0;
  padding-left: 1.15rem;
  max-width: 560px;
  color: var(--ink-soft);
  line-height: 1.7;
  list-style: disc;
}

.about-block li {
  margin: 6px 0;
}

.about-block .breadcrumbs {
  margin-bottom: 20px;
}

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 32px;
  margin-top: auto;
  background: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  width: min(var(--max), 100% - 40px);
  margin-inline: auto;
}

.footer-meta {
  font-size: 0.75rem;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--ink-muted);
  border-radius: 50%;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.footer-social a:hover {
  color: var(--ink);
  background: rgba(10, 95, 224, 0.06);
}

.footer-nav {
  justify-self: end;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: flex-end;
}

.footer-nav a {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.footer-nav a:hover {
  color: var(--ink);
}

@media (max-width: 1024px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .header-tagline {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-end .main-nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: 93px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 24px;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s;
    z-index: 99;
  }

  .header-end .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav-item > a,
  .nav-dropdown-toggle {
    display: flex;
    width: 100%;
    padding: 12px 0;
    justify-content: space-between;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    display: none;
    min-width: 0;
    margin: 0 0 8px;
    padding: 0 0 0 12px;
    border: none;
    box-shadow: none;
    background: transparent;
  }

  .nav-item--dropdown.open .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown-menu a {
    padding: 10px 0;
    white-space: normal;
  }

  .spotlight {
    grid-template-columns: 1fr;
  }

  .spotlight__visual {
    border-right: none;
    border-bottom: 1px solid var(--line);
    min-height: 280px;
  }

  .spec-strip {
    grid-template-columns: 1fr;
  }

  .spec-strip__item {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .spec-strip__item:last-child {
    border-bottom: none;
  }

  .product-hero__inner {
    grid-template-columns: 1fr;
  }

  .product-insight__grid {
    grid-template-columns: 1fr;
  }

  .product-buy-sticky {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--line);
    transform: translateY(100%);
    transition: transform 0.25s var(--ease);
    pointer-events: none;
  }

  .product-buy-sticky.is-visible {
    transform: translateY(0);
    pointer-events: auto;
  }

  .product-buy-sticky .btn-buy {
    width: 100%;
    justify-content: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 18px;
  }

  .footer-nav {
    justify-self: center;
  }

  .footer-nav ul {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .logo img {
    height: 40px;
  }
}
