:root {
  --bg: #f5f1ea;
  --surface: rgba(255, 252, 247, 0.88);
  --surface-strong: #fbf8f3;
  --surface-deep: #eae1d5;
  --text: #241b16;
  --muted: #6f635a;
  --line: rgba(36, 27, 22, 0.12);
  --accent: #8b6b4a;
  --accent-soft: rgba(139, 107, 74, 0.14);
  --shadow: 0 24px 80px rgba(43, 30, 18, 0.08);
  --shadow-soft: 0 16px 40px rgba(43, 30, 18, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 48px));
  --page-background:
    radial-gradient(circle at top left, rgba(195, 169, 139, 0.16), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(161, 133, 101, 0.12), transparent 22%),
    linear-gradient(180deg, #f8f5ef 0%, #f2ece3 100%);
  --grid-line-first: rgba(255, 255, 255, 0.2);
  --grid-line-second: rgba(255, 255, 255, 0.16);
  --topbar-background: linear-gradient(180deg, rgba(248, 245, 239, 0.92), rgba(248, 245, 239, 0.68));
  --topbar-button-bg: var(--text);
  --topbar-button-text: #fffaf4;
  --topbar-button-hover: #130d09;
  --secondary-button-bg: rgba(255, 255, 255, 0.32);
  --secondary-button-hover: rgba(255, 255, 255, 0.52);
}

body[data-theme="dark"] {
  --bg: #14110f;
  --surface: rgba(34, 28, 25, 0.9);
  --surface-strong: #26201d;
  --surface-deep: #1d1816;
  --text: #f2e8dd;
  --muted: #bdaea1;
  --line: rgba(246, 239, 230, 0.14);
  --accent: #d3a87a;
  --accent-soft: rgba(211, 168, 122, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.22);
  --page-background:
    radial-gradient(circle at top left, rgba(123, 87, 53, 0.22), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(92, 68, 48, 0.18), transparent 22%),
    linear-gradient(180deg, #181412 0%, #100d0c 100%);
  --grid-line-first: rgba(255, 255, 255, 0.04);
  --grid-line-second: rgba(255, 255, 255, 0.035);
  --topbar-background: linear-gradient(180deg, rgba(20, 17, 15, 0.92), rgba(20, 17, 15, 0.68));
  --topbar-button-bg: rgba(255, 255, 255, 0.03);
  --topbar-button-text: #f2e8dd;
  --topbar-button-hover: rgba(255, 255, 255, 0.08);
  --secondary-button-bg: rgba(255, 255, 255, 0.05);
  --secondary-button-hover: rgba(255, 255, 255, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--page-background);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(var(--grid-line-first) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line-second) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 88%);
  opacity: 0.45;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  z-index: 1;
}

.topbar,
.hero,
.all-products-hero,
.intro-grid,
.products-section,
.products-archive-section,
.all-products-section,
.products-cta-section,
.b2b-section,
.contact-section,
.partners-section {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  position: relative;
  z-index: 10;
  background: transparent;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 18px rgba(139, 107, 74, 0.12));
}

.topnav {
  display: inline-flex;
  gap: 28px;
  color: var(--muted);
}

.topnav a {
  position: relative;
}

.topnav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.topnav a:hover::after,
.topnav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.theme-toggle,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.theme-toggle,
.button-primary {
  background: var(--topbar-button-bg);
  color: var(--topbar-button-text);
}

.theme-toggle {
  min-height: 44px;
  width: 44px;
  min-width: 44px;
  padding: 0;
  border-color: var(--line);
  background: transparent;
  color: var(--muted);
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  transform: translateY(-1px);
  background: var(--topbar-button-hover);
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 250, 244, 0.96);
  color: var(--accent);
  border-color: rgba(139, 107, 74, 0.22);
}

.theme-toggle-icon {
  font-size: 0.9rem;
}

.theme-toggle-label {
  display: none;
}

.button-secondary {
  border: 1px solid var(--line);
  background: var(--secondary-button-bg);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  transform: translateY(-1px);
  background: var(--topbar-button-bg);
  color: #fff7ef;
  border-color: transparent;
}

body[data-theme="dark"] .button-secondary:hover,
body[data-theme="dark"] .button-secondary:focus-visible {
  background: #f2e8dd;
  color: #181312;
}

.button-full {
  width: 100%;
}

.button i {
  font-size: 0.96rem;
  color: currentColor;
  transition: color 180ms ease;
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(22, 15, 10, 0.88);
  color: #fffaf4;
  box-shadow: 0 18px 42px rgba(43, 30, 18, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
  z-index: 30;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover,
.scroll-top:focus-visible {
  background: var(--text);
}

body[data-theme="dark"] .scroll-top {
  background: rgba(242, 232, 221, 0.1);
  color: var(--text);
  border-color: rgba(242, 232, 221, 0.12);
}

.badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(22, 15, 10, 0.9);
  color: #fff7ef;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  overflow: hidden;
  isolation: isolate;
}

.badge::after {
  content: "";
  position: absolute;
  inset: -45% -70%;
  z-index: -1;
  background: linear-gradient(
    110deg,
    transparent 36%,
    rgba(255, 217, 156, 0.2) 48%,
    transparent 62%
  );
  transform: translateX(-65%) rotate(8deg);
  animation: bestseller-sheen 5.8s ease-in-out infinite;
}

.badge i {
  color: #d89a32;
  filter: drop-shadow(0 0 5px rgba(216, 154, 50, 0.12));
  animation: bestseller-fire 3.6s ease-in-out infinite;
}

.badge-floating {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
}

@keyframes bestseller-sheen {
  0%,
  58% {
    transform: translateX(-65%) rotate(8deg);
    opacity: 0;
  }

  68% {
    opacity: 1;
  }

  84%,
  100% {
    transform: translateX(65%) rotate(8deg);
    opacity: 0;
  }
}

@keyframes bestseller-fire {
  0%,
  100% {
    color: #d89a32;
    transform: translateY(0) scale(1);
  }

  50% {
    color: #efb24c;
    transform: translateY(-1px) scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  .badge::after,
  .badge i {
    animation: none;
  }
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 104px);
  padding: 28px 0 44px;
}

.hero-copy {
  position: relative;
  padding: 26px 0;
}

.hero-copy::after {
  content: "";
  position: absolute;
  left: 0;
  right: 16%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(36, 27, 22, 0.18), transparent);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3.6rem, 7vw, 6.4rem);
  line-height: 0.95;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  line-height: 1;
}

h3 {
  font-size: 2rem;
  line-height: 1;
}

.hero-text,
.intro-card p,
.product-content p,
.b2b-card p,
.contact-card p,
.detail-content span,
.detail-content strong,
label {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 58ch;
  margin: 22px 0 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.hero-facts li,
.intro-card,
.product-card,
.b2b-card,
.contact-card {
  backdrop-filter: blur(22px);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

body[data-theme="dark"] .hero-facts li,
body[data-theme="dark"] .intro-card,
body[data-theme="dark"] .product-card,
body[data-theme="dark"] .b2b-card,
body[data-theme="dark"] .contact-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(40, 33, 29, 0.96), rgba(29, 24, 21, 0.92));
}

.hero-facts li {
  padding: 18px;
  border-radius: var(--radius-md);
}

.hero-facts strong {
  display: block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.hero-visual {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: none;
  position: absolute;
  inset: 10% 8% 18%;
  border-radius: 40px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(250, 241, 231, 0.14)),
    linear-gradient(135deg, rgba(139, 107, 74, 0.08), transparent 62%);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

body[data-theme="dark"] .hero-visual::before {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.visual-card {
  position: relative;
  width: min(100%, 520px);
  padding: 36px;
  border-radius: 36px;
  background: transparent;
  border: 0;
  box-shadow: 0 30px 80px rgba(76, 54, 35, 0.12);
}

body[data-theme="dark"] .visual-card {
  background: transparent;
  border: 0;
}

.visual-card-link {
  overflow: hidden;
}

.visual-card img {
  aspect-ratio: 0.9;
  object-fit: contain;
}

.visual-note {
  position: absolute;
  right: 0;
  bottom: 46px;
  min-width: 220px;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  background: rgba(22, 15, 10, 0.9);
  color: #fff7ef;
}

body[data-theme="dark"] .visual-note {
  background: rgba(246, 239, 230, 0.92);
  color: #1a1412;
}

body[data-theme="dark"] .visual-note span {
  color: rgba(26, 20, 18, 0.58);
}

.visual-note span {
  display: block;
  margin-bottom: 4px;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 247, 239, 0.66);
}

.visual-note strong {
  font-weight: 600;
}

.all-products-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 34px;
  align-items: center;
  min-height: calc(100vh - 104px);
  padding: 28px 0 44px;
}

.all-products-copy {
  position: relative;
  padding: 26px 0;
}

.all-products-copy::after {
  content: "";
  position: absolute;
  left: 0;
  right: 12%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(36, 27, 22, 0.18), transparent);
}

.all-products-highlight {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.all-products-highlight::before {
  content: "";
  position: absolute;
  inset: 8% 8% 14%;
  border-radius: 40px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(250, 241, 231, 0.14)),
    linear-gradient(135deg, rgba(139, 107, 74, 0.08), transparent 62%);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

body[data-theme="dark"] .all-products-highlight::before {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.catalog-highlight-card {
  position: relative;
  width: min(100%, 500px);
}

.catalog-highlight-frame {
  position: relative;
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 239, 230, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 30px 80px rgba(76, 54, 35, 0.12);
}

body[data-theme="dark"] .catalog-highlight-frame {
  background: linear-gradient(180deg, rgba(39, 33, 30, 0.96), rgba(28, 24, 22, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.catalog-highlight-frame img {
  aspect-ratio: 0.92;
  object-fit: contain;
}

.catalog-highlight-note {
  position: absolute;
  right: 0;
  bottom: 28px;
  min-width: 220px;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  background: rgba(22, 15, 10, 0.9);
  color: #fff7ef;
}

body[data-theme="dark"] .catalog-highlight-note {
  background: rgba(246, 239, 230, 0.92);
  color: #1a1412;
}

.catalog-highlight-note span {
  display: block;
  margin-bottom: 4px;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 247, 239, 0.66);
}

body[data-theme="dark"] .catalog-highlight-note span {
  color: rgba(26, 20, 18, 0.58);
}

.catalog-highlight-note strong {
  font-weight: 600;
}

.all-products-section,
.products-cta-section {
  padding: 110px 0 0;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.catalog-card {
  min-height: 100%;
}

.catalog-card-link {
  display: grid;
  grid-template-columns: minmax(220px, 0.86fr) minmax(0, 1fr);
  min-height: 100%;
  border-radius: 32px;
  overflow: hidden;
  backdrop-filter: blur(22px);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  transition: border-color 220ms ease;
}

body[data-theme="dark"] .catalog-card-link {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(40, 33, 29, 0.96), rgba(29, 24, 21, 0.92));
}

.catalog-card-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.catalog-card-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 28px;
  background: transparent;
}

body[data-theme="dark"] .catalog-card-image img {
  background: transparent;
}

.catalog-card-image .badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
}

.catalog-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 28px 28px 4px;
}

.catalog-card-body h3 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 0.98;
}

.catalog-card-body p {
  color: var(--muted);
  line-height: 1.7;
}

.catalog-card-body .product-link {
  margin-top: 16px;
}

.products-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
  border-radius: var(--radius-xl);
  backdrop-filter: blur(22px);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

body[data-theme="dark"] .products-cta-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(40, 33, 29, 0.96), rgba(29, 24, 21, 0.92));
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  padding: 28px 0 0;
  margin-bottom: 34px;
}

.intro-card,
.b2b-card,
.contact-card {
  border-radius: var(--radius-xl);
  padding: 30px;
}

.accent-card {
  background:
    linear-gradient(160deg, rgba(139, 107, 74, 0.1), rgba(255, 255, 255, 0.88)),
    var(--surface);
}

body[data-theme="dark"] .accent-card {
  background:
    linear-gradient(160deg, rgba(211, 168, 122, 0.08), rgba(34, 28, 25, 0.92)),
    var(--surface);
}

.products-section,
.b2b-section,
.contact-section {
  padding: 110px 0 0;
}

.products-section {
  position: relative;
  margin-top: 0;
  padding: 110px 34px 34px;
  border-radius: 40px;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.64), rgba(255, 252, 247, 0.28)),
    radial-gradient(circle at top right, rgba(139, 107, 74, 0.14), transparent 30%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

body[data-theme="dark"] .products-section {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(25, 21, 19, 0.92), rgba(18, 15, 14, 0.82)),
    radial-gradient(circle at top right, rgba(211, 168, 122, 0.14), transparent 30%);
}

.products-section::before {
  content: none;
}

.products-section > * {
  position: relative;
  z-index: 1;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 28px;
}

.section-heading h2 {
  max-width: 15ch;
}

@media (min-width: 761px) {
  .products-section .section-heading h2 {
    max-width: none;
    white-space: nowrap;
  }
}

.carousel-button {
  width: 56px;
  height: 56px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  color: var(--text);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

body[data-theme="dark"] .carousel-button {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

body[data-theme="dark"] .carousel-button:hover,
body[data-theme="dark"] .carousel-button:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.carousel-button:hover,
.carousel-button:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(36, 27, 22, 0.24);
}

.carousel-button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  transform: none;
}

.carousel-frame {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 88px;
  align-items: center;
  gap: 14px;
}

.carousel-button-side {
  width: 76px;
  height: 76px;
  margin: 0 auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 40px rgba(43, 30, 18, 0.08);
  font-size: 1.4rem;
}

.carousel-shell {
  overflow: hidden;
  padding-bottom: 6px;
  border-radius: 36px;
}

.carousel-track {
  display: flex;
  gap: 22px;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  touch-action: pan-y;
  will-change: transform;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  flex: 0 0 100%;
  border-radius: 36px;
  overflow: hidden;
  min-height: 520px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body[data-theme="dark"] .product-card {
  border: 0;
  background: transparent;
}

.product-image {
  padding: 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-link {
  position: relative;
  display: block;
  width: 100%;
}

.product-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 28px;
  background: transparent;
}

body[data-theme="dark"] .product-image img {
  background: transparent;
}

body[data-theme="dark"] .product-content h3 a,
body[data-theme="dark"] .product-link,
body[data-theme="dark"] .status-line-active {
  color: var(--text);
}

body[data-theme="dark"] .status-line {
  background: rgba(255, 255, 255, 0.12);
}

.product-content {
  padding: 24px 32px 24px 8px;
}

.product-content h3 {
  margin-bottom: 14px;
}

.product-content h3 a {
  transition: color 180ms ease;
}

.product-content h3 a:hover,
.product-content h3 a:focus-visible {
  color: var(--accent);
}

.product-index {
  margin: 0 0 10px;
  color: var(--accent);
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-link::after {
  content: "\2192";
  transition: transform 180ms ease;
}

.product-link:hover::after,
.product-link:focus-visible::after {
  transform: translateX(4px);
}

.carousel-status {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
  color: var(--muted);
}

.products-archive-section {
  padding-top: 26px;
}

.products-archive-cta {
  margin-top: 0;
}

.products-archive-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px;
  border-radius: 26px;
  backdrop-filter: blur(22px);
  background:
    linear-gradient(135deg, rgba(255, 252, 247, 0.84), rgba(255, 252, 247, 0.56)),
    radial-gradient(circle at top right, rgba(139, 107, 74, 0.12), transparent 42%);
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
  transition:
    border-color 220ms ease,
    background-color 220ms ease;
}

body[data-theme="dark"] .products-archive-link {
  background:
    linear-gradient(135deg, rgba(34, 28, 25, 0.92), rgba(24, 20, 18, 0.86)),
    radial-gradient(circle at top right, rgba(211, 168, 122, 0.12), transparent 40%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.products-archive-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.products-archive-copy .eyebrow {
  margin: 0;
}

.products-archive-copy strong {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 300;
  line-height: 1;
  color: var(--text);
}

.products-archive-copy span:last-child {
  color: var(--muted);
  line-height: 1.6;
}

.products-archive-action {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(22, 15, 10, 0.92);
  color: #fff7ef;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

body[data-theme="dark"] .products-archive-action {
  background: rgba(242, 232, 221, 0.9);
  color: #181312;
}

.products-archive-action:hover,
.products-archive-action:focus-visible {
  background: rgba(255, 250, 244, 0.96);
  color: var(--accent);
  border-color: rgba(139, 107, 74, 0.22);
}

.status-line {
  position: relative;
  width: 180px;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(36, 27, 22, 0.12);
}

.status-line-active {
  position: absolute;
  inset: 0 auto 0 0;
  width: 20%;
  border-radius: inherit;
  background: var(--text);
  transition: width 320ms ease;
}

.b2b-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  padding-bottom: 60px;
}

.partners-section {
  padding: 24px 0 72px;
}

.partners-marquee {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.72), rgba(255, 252, 247, 0.42)),
    radial-gradient(circle at top right, rgba(139, 107, 74, 0.08), transparent 38%);
  box-shadow: var(--shadow-soft);
}

body[data-theme="dark"] .partners-marquee {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(25, 21, 19, 0.94), rgba(18, 15, 14, 0.84)),
    radial-gradient(circle at top right, rgba(211, 168, 122, 0.12), transparent 36%);
}

.partners-marquee::before,
.partners-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 2;
  pointer-events: none;
}

.partners-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.partners-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}

.partners-track {
  display: flex;
  align-items: stretch;
  gap: 18px;
  width: max-content;
  padding: 22px;
  animation: partners-marquee 28s linear infinite;
}

.partner-card {
  width: 240px;
  flex: 0 0 auto;
  padding: 22px 20px;
  border-radius: 24px;
  backdrop-filter: blur(20px);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

body[data-theme="dark"] .partner-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(40, 33, 29, 0.96), rgba(29, 24, 21, 0.92));
}

.partner-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: inherit;
}

.partner-logo {
  display: grid;
  place-items: center;
  min-height: 92px;
  width: 100%;
  margin-bottom: 0;
  border-radius: 18px;
  border: 1px dashed rgba(139, 107, 74, 0.24);
  background: rgba(255, 255, 255, 0.42);
  color: var(--muted);
  font-size: 0.86rem;
  text-align: center;
}

.partner-logo img {
  max-width: 100%;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
}

body[data-theme="dark"] .partner-logo {
  border-color: rgba(211, 168, 122, 0.12);
  background: rgba(255, 248, 240, 0.92);
  box-shadow: inset 0 0 0 1px rgba(211, 168, 122, 0.08);
}

body[data-theme="dark"] .partner-logo img {
  filter: saturate(0.96) contrast(1.04);
}

.partner-card strong {
  display: none;
  color: var(--text);
  font-size: 1rem;
}

.site-footer {
  width: var(--container);
  margin: 72px auto 32px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer-inner p {
  margin: 0;
}

.site-footer-inner a {
  color: var(--text);
  transition: color 180ms ease;
}

.site-footer-inner a:hover,
.site-footer-inner a:focus-visible {
  color: var(--accent);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 252, 247, 0.94);
  box-shadow: 0 20px 50px rgba(43, 30, 18, 0.14);
  backdrop-filter: blur(20px);
}

body[data-theme="dark"] .cookie-banner {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(28, 23, 20, 0.94);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-copy {
  max-width: 62ch;
}

.cookie-banner-copy strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.cookie-banner-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-link {
  color: var(--text);
  font-size: 0.92rem;
}

.cookie-link:hover,
.cookie-link:focus-visible {
  color: var(--accent);
}

.legal-page {
  width: var(--container);
  margin: 0 auto;
  padding: 28px 0 0;
}

.legal-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 34px;
  border-radius: var(--radius-xl);
  backdrop-filter: blur(22px);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

body[data-theme="dark"] .legal-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(40, 33, 29, 0.96), rgba(29, 24, 21, 0.92));
}

.legal-card > * + * {
  margin-top: 18px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card ul {
  margin: 0;
  padding-left: 20px;
}

.error-page {
  width: var(--container);
  margin: 0 auto;
  min-height: calc(100vh - 220px);
  display: grid;
  align-items: center;
  padding: 28px 0 0;
}

.error-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 34px;
  align-items: center;
  padding: clamp(28px, 4vw, 52px);
  overflow: hidden;
  border-radius: var(--radius-xl);
  backdrop-filter: blur(22px);
  background:
    linear-gradient(135deg, rgba(255, 252, 247, 0.9), rgba(255, 252, 247, 0.58)),
    radial-gradient(circle at 85% 18%, rgba(139, 107, 74, 0.14), transparent 38%);
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

body[data-theme="dark"] .error-card {
  background:
    linear-gradient(135deg, rgba(40, 33, 29, 0.96), rgba(29, 24, 21, 0.92)),
    radial-gradient(circle at 85% 18%, rgba(211, 168, 122, 0.16), transparent 38%);
  border-color: rgba(255, 255, 255, 0.08);
}

.error-copy {
  position: relative;
  z-index: 1;
}

.error-copy h1 {
  max-width: 10ch;
}

.error-copy .button {
  margin-top: 28px;
}

.error-visual {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(240, 231, 219, 0.52));
  border: 1px solid rgba(255, 255, 255, 0.68);
}

body[data-theme="dark"] .error-visual {
  background: linear-gradient(180deg, rgba(35, 29, 25, 0.86), rgba(20, 17, 15, 0.82));
  border-color: rgba(255, 255, 255, 0.08);
}

.error-visual span {
  position: absolute;
  inset: auto 16px 4px auto;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(6rem, 12vw, 10rem);
  font-weight: 300;
  line-height: 0.85;
  color: rgba(139, 107, 74, 0.12);
  letter-spacing: -0.08em;
}

body[data-theme="dark"] .error-visual span {
  color: rgba(211, 168, 122, 0.14);
}

.error-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  filter: drop-shadow(0 30px 46px rgba(43, 30, 18, 0.12));
}

.error-glitch {
  position: relative;
  z-index: 1;
  width: min(92%, 420px);
  isolation: isolate;
}

.error-glitch::before,
.error-glitch::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/404_img.webp") center / contain no-repeat;
  opacity: 0;
  pointer-events: none;
}

.error-glitch::before {
  filter: drop-shadow(8px 0 0 rgba(42, 192, 198, 0.42));
  mix-blend-mode: multiply;
  animation: error-glitch-shift 4.8s steps(1, end) infinite;
}

.error-glitch::after {
  background:
    repeating-linear-gradient(
      180deg,
      rgba(36, 27, 22, 0.08) 0 1px,
      transparent 1px 4px
    ),
    url("assets/404_img.webp") center / contain no-repeat;
  filter: drop-shadow(-7px 0 0 rgba(216, 154, 50, 0.28));
  mix-blend-mode: multiply;
  animation: error-glitch-scan 5.6s steps(1, end) infinite;
}

body[data-theme="dark"] .error-glitch::before,
body[data-theme="dark"] .error-glitch::after {
  mix-blend-mode: screen;
}

@keyframes error-glitch-shift {
  0%,
  72%,
  100% {
    opacity: 0;
    clip-path: inset(0 0 0 0);
    transform: translate(0);
  }

  74% {
    opacity: 0.78;
    clip-path: inset(12% 0 66% 0);
    transform: translate(9px, -2px);
  }

  76% {
    opacity: 0.42;
    clip-path: inset(52% 0 30% 0);
    transform: translate(-8px, 2px);
  }

  78% {
    opacity: 0.7;
    clip-path: inset(28% 0 48% 0);
    transform: translate(6px, 0);
  }
}

@keyframes error-glitch-scan {
  0%,
  64%,
  100% {
    opacity: 0;
    clip-path: inset(0 0 0 0);
    transform: translate(0);
  }

  66% {
    opacity: 0.55;
    clip-path: inset(8% 0 76% 0);
    transform: translate(-6px, 1px);
  }

  68% {
    opacity: 0.32;
    clip-path: inset(68% 0 12% 0);
    transform: translate(7px, -1px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-glitch::before,
  .error-glitch::after {
    animation: none;
  }
}

.hero-facts li,
.intro-card,
.b2b-card,
.products-archive-link,
.catalog-card-link,
.contact-card,
.products-cta-card,
.visual-card-link,
.partner-card {
  position: relative;
}

.hero-facts li::before,
.intro-card::before,
.b2b-card::before,
.products-archive-link::before,
.catalog-card-link::before,
.contact-card::before,
.products-cta-card::before,
.visual-card-link::before,
.partner-card::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(
    90deg,
    rgba(90, 61, 36, 0) 0%,
    rgba(90, 61, 36, 0.28) 18%,
    rgba(90, 61, 36, 0.9) 50%,
    rgba(90, 61, 36, 0.28) 82%,
    rgba(90, 61, 36, 0) 100%
  );
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.hero-facts li:hover::before,
.intro-card:hover::before,
.b2b-card:hover::before,
.products-archive-link:hover::before,
.catalog-card-link:hover::before,
.catalog-card-link:focus-visible::before,
.contact-card:hover::before,
.products-cta-card:hover::before,
.visual-card-link:hover::before,
.visual-card-link:focus-visible::before,
.partner-card:hover::before,
.scroll-highlight-active::before {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .partners-track:hover {
    animation-play-state: paused;
  }
}

@keyframes partners-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

label {
  display: grid;
  gap: 10px;
  font-size: 0.94rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(36, 27, 22, 0.12);
  border-radius: 18px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

body[data-theme="dark"] input,
body[data-theme="dark"] textarea {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

body[data-theme="dark"] .detail-content strong {
  color: var(--text);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(139, 107, 74, 0.55);
  box-shadow: 0 0 0 4px rgba(139, 107, 74, 0.12);
  background: #fff;
}

.contact-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--text);
}

.contact-brand .brand-mark {
  width: 42px;
  height: 42px;
}

.detail-block {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.detail-block:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.detail-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.55rem;
  opacity: 0.22;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    color 220ms ease;
}

.detail-block:hover .detail-icon,
.detail-block:focus-within .detail-icon {
  color: rgba(90, 61, 36, 0.9);
  opacity: 0.62;
}

.detail-content span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-content strong {
  color: var(--text);
  font-weight: 600;
}

.detail-content strong a {
  color: inherit;
  transition: color 180ms ease;
}

.detail-content strong a:hover,
.detail-content strong a:focus-visible {
  color: var(--accent);
}

body[data-theme="dark"] .detail-block:hover .detail-icon,
body[data-theme="dark"] .detail-block:focus-within .detail-icon {
  color: rgba(211, 168, 122, 0.9);
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 10px;
  }

  .all-products-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 10px;
  }

  .hero-visual {
    min-height: auto;
    order: -1;
  }

  .all-products-highlight {
    min-height: auto;
    order: -1;
  }

  .visual-note {
    right: 20px;
  }

  .catalog-highlight-note {
    right: 20px;
  }

  .intro-grid,
  .contact-grid,
  .b2b-grid {
    grid-template-columns: 1fr;
  }

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

  .product-card {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    min-height: 0;
  }

  .catalog-card-link {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  .carousel-frame {
    grid-template-columns: 72px minmax(0, 1fr) 72px;
    gap: 10px;
  }

  .carousel-button-side {
    width: 62px;
    height: 62px;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100vw - 28px, 100%);
    --radius-xl: 24px;
  }

  .topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand toggle"
      "nav nav";
    align-items: center;
    padding: 10px 0 14px;
    gap: 12px;
  }

  .brand {
    grid-area: brand;
    width: auto;
    justify-content: flex-start;
    gap: 12px;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .topnav {
    grid-area: nav;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: nowrap;
    font-size: 0.86rem;
    overflow-x: auto;
    padding: 2px 2px 6px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .topnav::-webkit-scrollbar {
    display: none;
  }

  .topnav a {
    flex: 0 0 auto;
    padding: 10px 14px;
    border-radius: 999px;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(36, 27, 22, 0.1);
    box-shadow: 0 10px 28px rgba(43, 30, 18, 0.06);
    transition:
      background-color 180ms ease,
      border-color 180ms ease,
      color 180ms ease,
      transform 180ms ease;
  }

  .topnav a:hover,
  .topnav a:focus-visible,
  .theme-toggle:hover,
  .theme-toggle:focus-visible {
    transform: translateY(-1px);
    background: var(--topbar-button-bg);
    border-color: transparent;
    color: #fff7ef;
  }

  body[data-theme="dark"] .topnav a {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--text);
    box-shadow: none;
  }

  body[data-theme="dark"] .topnav a:hover,
  body[data-theme="dark"] .topnav a:focus-visible,
  body[data-theme="dark"] .theme-toggle:hover,
  body[data-theme="dark"] .theme-toggle:focus-visible {
    background: #f2e8dd;
    border-color: transparent;
    color: #181312;
  }

  .theme-toggle {
    grid-area: toggle;
    justify-self: end;
    align-self: center;
    min-height: 48px;
    width: 48px;
    min-width: 48px;
  }

  .scroll-top {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.7rem, 13.5vw, 3.9rem);
    line-height: 0.96;
  }

  h2 {
    max-width: none;
    font-size: clamp(1.9rem, 10.5vw, 2.8rem);
  }

  .hero {
    gap: 26px;
    padding: 10px 0 18px;
  }

  .all-products-hero {
    gap: 20px;
    padding: 10px 0 18px;
  }

  .hero-text {
    margin-top: 18px;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero-actions {
    margin-top: 22px;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 54px;
  }

  .hero-copy {
    padding: 0;
  }

  .all-products-copy {
    padding: 0;
  }

  .hero-copy::after {
    right: 0;
  }

  .all-products-copy::after,
  .all-products-highlight::before {
    content: none;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-facts li {
    padding: 16px;
  }

  .hero-visual {
    min-height: 0;
    display: grid;
    padding-top: 8px;
    gap: 12px;
  }

  .all-products-highlight {
    min-height: 0;
    display: grid;
    padding-top: 8px;
    gap: 12px;
  }

  .hero-visual::before {
    content: none;
  }

  .visual-card {
    width: 100%;
    padding: 10px 0 0;
    border-radius: 18px;
    margin-bottom: 0;
    overflow: hidden;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .visual-card img {
    display: block;
    width: min(100%, 340px);
    max-height: 340px;
    margin: 0 auto;
  }

  .catalog-highlight-card {
    width: 100%;
  }

  .catalog-highlight-frame {
    padding: 18px 18px 10px;
    border-radius: 22px;
    box-shadow: none;
  }

  .catalog-highlight-frame img {
    display: block;
    width: min(100%, 340px);
    max-height: 340px;
    margin: 0 auto;
  }

  .visual-note {
    position: static;
    margin-top: 0;
    width: 100%;
    border-radius: 22px;
    box-shadow: none;
  }

  .badge-floating {
    top: 0;
    left: 0;
  }

  .catalog-highlight-note {
    position: static;
    margin-top: 12px;
    width: 100%;
    border-radius: 22px;
    box-shadow: none;
  }

  .visual-note strong {
    font-size: 1.08rem;
  }

  .intro-grid {
    gap: 16px;
    padding-top: 22px;
    margin-bottom: 26px;
  }

  .products-section,
  .all-products-section,
  .products-cta-section,
  .b2b-section,
  .contact-section {
    padding-top: 74px;
  }

  .products-section {
    padding: 74px 14px 18px;
    border-radius: 28px;
  }

  .carousel-frame {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .carousel-button-side {
    width: 58px;
    height: 58px;
    margin: 0;
    font-size: 1.15rem;
  }

  .carousel-button-side:first-child {
    justify-self: start;
  }

  .carousel-shell {
    order: -1;
    grid-column: 1 / -1;
  }

  .carousel-button-side:last-child {
    justify-self: end;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    margin-bottom: 18px;
  }

  .product-card {
    grid-template-columns: 1fr;
    gap: 0;
    border-radius: 28px;
  }

  .catalog-card-link {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .product-image {
    padding: 18px 18px 8px;
  }

  .catalog-card-image {
    padding: 18px 18px 8px;
  }

  .product-content {
    padding: 10px 18px 22px;
  }

  .catalog-card-body {
    padding: 10px 18px 22px;
  }

  .product-content h3 {
    font-size: clamp(1.95rem, 9vw, 2.4rem);
    line-height: 1;
  }

  .catalog-card-body h3 {
    font-size: clamp(1.95rem, 9vw, 2.4rem);
    line-height: 1;
  }

  .product-content p {
    line-height: 1.62;
  }

  .catalog-card-body p {
    line-height: 1.62;
  }

  .carousel-status {
    gap: 12px;
    margin-top: 18px;
    font-size: 0.95rem;
  }

  .products-archive-cta {
    margin-top: 0;
  }

  .products-archive-link {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 20px;
    border-radius: 22px;
  }

  .products-archive-action {
    width: 100%;
    justify-content: center;
  }

  .status-line {
    width: auto;
    flex: 1;
  }

  .intro-card,
  .b2b-card,
  .contact-card {
    padding: 24px 20px;
  }

  .products-cta-card {
    flex-direction: column;
    align-items: stretch;
    padding: 24px 20px;
  }

  .b2b-grid,
  .contact-grid {
    gap: 16px;
  }

  .contact-brand {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    gap: 12px;
  }

  .contact-brand .brand-mark,
  .detail-icon {
    width: 44px;
    height: 44px;
  }

  .detail-block {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
  }

  .contact-grid {
    padding-bottom: 36px;
  }

  .partners-section {
    padding: 34px 0 48px;
  }

  .partners-marquee {
    border-radius: 26px;
  }

  .partners-track {
    gap: 14px;
    padding: 16px;
    animation-duration: 24s;
  }

  .partner-card {
    width: 200px;
    padding: 18px 16px;
    border-radius: 20px;
  }

  .partner-logo {
    min-height: 78px;
    margin-bottom: 14px;
    border-radius: 16px;
    font-size: 0.8rem;
  }

  .site-footer {
    margin: 56px auto 24px;
    padding-top: 16px;
  }

  .site-footer-inner {
    flex-direction: column;
    align-items: start;
    font-size: 0.88rem;
  }

  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 20px;
  }

  .cookie-banner-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-link,
  .cookie-banner .button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .legal-page {
    padding-top: 12px;
  }

  .legal-card {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .error-page {
    min-height: auto;
    padding-top: 12px;
  }

  .error-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px 20px;
    border-radius: 24px;
  }

  .error-copy h1 {
    max-width: none;
  }

  .error-copy .button {
    width: 100%;
    margin-top: 22px;
  }

  .error-visual {
    min-height: 300px;
    order: -1;
    border-radius: 22px;
  }

  .error-visual img {
    width: min(82%, 320px);
  }

  .error-glitch {
    width: min(82%, 320px);
  }

  .contact-form {
    gap: 14px;
  }

  input,
  textarea {
    padding: 15px 16px;
    border-radius: 16px;
  }

  body[data-theme="dark"] input,
  body[data-theme="dark"] textarea {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
  }

  .detail-block {
    padding: 18px 0;
  }
}
