﻿:root {
  --ink: #121820;
  --muted: #5c6670;
  --line: #d9dee3;
  --soft: #f4f6f7;
  --panel: #e9edf0;
  --steel: #8d969d;
  --steel-dark: #3c454d;
  --accent: #7f8fa2;
  --white: #ffffff;
}

@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat-ExtraBold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: inherit;
  background: var(--white);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.topbar {
  display: flex;
  justify-content: center;
  gap: 28px;
  min-height: 30px;
  padding: 7px 16px;
  color: #eef4f8;
  background: #233140;
  font-size: 13px;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0 18px;
  min-height: 118px;
  padding: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  grid-column: 2;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}

.brand img {
  display: block;
  width: clamp(180px, 17vw, 270px);
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.nav {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  gap: 34px;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 5vw;
  border-bottom: 4px solid #b69873;
  color: #fff;
  background: #020202;
  font-size: 14px;
  font-weight: 900;
  overflow: visible;
  white-space: nowrap;
}

.nav-compare {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 48px;
}

.nav a,
.nav-compare > a {
  color: inherit;
  text-decoration: none;
}

.compare-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 40;
  display: none;
  min-width: 274px;
  padding: 22px 30px;
  border: 1px solid #eceff1;
  background: #fff;
  box-shadow: 0 20px 40px rgba(14, 22, 30, .18);
  text-align: left;
}

.nav-compare:hover .compare-dropdown,
.nav-compare:focus-within .compare-dropdown {
  display: grid;
  gap: 14px;
}

.compare-dropdown a {
  color: #4d5965;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}

.header-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 38px;
}

.language-select,
.country-select {
  height: 34px;
  min-width: 74px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: white;
  color: var(--ink);
  font-weight: 900;
}

.country-select {
  max-width: 132px;
}

[dir="rtl"] .site-header,
[dir="rtl"] .topbar,
[dir="rtl"] .button-row,
[dir="rtl"] .header-actions {
  direction: rtl;
}

[dir="rtl"] .cart-drawer {
  right: auto;
  left: 0;
  transform: translateX(-105%);
}

[dir="rtl"] .cart-drawer.open {
  transform: translateX(0);
}

.site-notice {
  position: sticky;
  top: 108px;
  z-index: 19;
  padding: 12px 5vw;
  color: #102018;
  background: #e7f4ec;
  border-bottom: 1px solid #c6dfd0;
  font-weight: 800;
}

.site-notice.error {
  color: #391212;
  background: #fae8e8;
  border-color: #efc3c3;
}

.icon-button {
  position: relative;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  margin-left: 38px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.search-icon,
.user-icon,
.bag-icon {
  position: absolute;
  inset: 9px;
  border: 2px solid var(--ink);
}

.search-icon {
  border-radius: 50%;
}

.search-icon::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  right: -7px;
  bottom: -4px;
  background: var(--ink);
  transform: rotate(45deg);
}

.user-icon {
  top: 8px;
  left: 12px;
  right: 12px;
  height: 9px;
  border-radius: 50%;
}

.user-icon::after {
  content: "";
  position: absolute;
  left: -7px;
  right: -7px;
  top: 13px;
  height: 14px;
  border: 2px solid var(--ink);
  border-top: 0;
  border-radius: 0 0 14px 14px;
}

.bag-icon {
  top: 12px;
  left: 9px;
  right: 9px;
  bottom: 6px;
  border-radius: 2px 2px 6px 6px;
}

.bag-icon::before {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: -8px;
  height: 8px;
  border: 2px solid var(--ink);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  place-items: center;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  color: white;
  background: var(--ink);
  border-radius: 50%;
  font-size: 10px;
}

.hero {
  position: relative;
  min-height: 610px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 35%, rgba(255,255,255,.85), transparent 22%),
    linear-gradient(100deg, #c8d0d7 0%, #f3f6f7 48%, #b8c2cb 100%);
}

.hero.has-banner-image {
  aspect-ratio: 16 / 9;
  min-height: auto;
  background: #f4f6f7 var(--banner-image) center / contain no-repeat;
  transition: background-image .45s ease;
}

.hero.has-banner-image .hero-media {
  opacity: 0;
  pointer-events: none;
  min-height: 0;
}

.hero-media {
  position: relative;
  height: 100%;
  min-height: 610px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 590px;
  padding: 72px 56px 90px 20px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 12px;
  font-size: clamp(48px, 6vw, 88px);
  line-height: .92;
  font-weight: 500;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
}

h3 {
  margin-bottom: 6px;
}

.hero-copy p:not(.eyebrow) {
  max-width: 480px;
  color: #27313b;
  font-size: 21px;
  line-height: 1.3;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border: 1px solid #1c2630;
  border-radius: 4px;
  font-weight: 900;
  cursor: pointer;
}

.button.dark {
  color: white;
  background: #1c2630;
}

.button.light {
  color: #1c2630;
  background: rgba(255, 255, 255, .34);
}

.button.full {
  width: 100%;
}

.hero-device {
  position: absolute;
  filter: drop-shadow(0 32px 28px rgba(34, 42, 50, .28));
}

.robot {
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #dfe4e7 0 15%, transparent 16%),
    radial-gradient(circle at 42% 36%, #ffffff, #aab2b8 55%, #59636b 100%);
}

.hero-device.robot.large {
  width: 310px;
  height: 310px;
  left: 21%;
  top: 22%;
}

.hero-device.robot.small {
  width: 145px;
  height: 145px;
  left: 58%;
  bottom: 18%;
}

.hero-device.dock {
  width: 210px;
  height: 360px;
  left: 44%;
  top: 22%;
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.6), transparent 35%),
    linear-gradient(180deg, #f2f5f6, #8f9aa4 58%, #37424b);
}

.ambassador-card {
  position: absolute;
  left: 7%;
  bottom: 72px;
  width: 270px;
  padding: 22px;
  color: white;
  border: 1px solid rgba(255, 255, 255, .85);
  background: rgba(29, 39, 49, .2);
}

.ambassador-card span,
.ambassador-card em {
  display: block;
}

.ambassador-card strong {
  display: block;
  margin: 8px 0 18px;
  font-size: 24px;
  font-weight: 500;
}

.ambassador-card em {
  font-size: 28px;
}

.section-heading {
  text-align: center;
}

.collection,
.compare,
.reviews,
.kol-lifestyle,
.home-categories,
.tabs-section,
.faq-support {
  padding: 64px 5vw;
}

.product-carousel {
  position: relative;
  padding: 34px 0 0;
}

.collection .section-heading {
  margin-bottom: 40px;
}

.collection-tabs {
  display: flex;
  justify-content: center;
  gap: 46px;
  margin-top: 24px;
  border-bottom: 1px solid var(--line);
}

.collection-tabs button {
  min-width: 112px;
  padding: 0 0 14px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
  letter-spacing: .08em;
  cursor: pointer;
}

.collection-tabs button.active {
  border-color: var(--ink);
  color: var(--ink);
}

.product-rail {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.product-rail::-webkit-scrollbar {
  display: none;
}

.collection-see-more {
  display: block;
  min-width: 220px;
  margin: 34px auto 0;
}

.collection-see-more[hidden] {
  display: none;
}

.product-detail[hidden] {
  display: none;
}

.tabs-section[hidden] {
  display: none;
}

.product-card {
  position: relative;
  flex: 0 0 min(25vw, 420px);
  min-width: 300px;
  background: #fff;
  border: 0;
  cursor: pointer;
  scroll-snap-align: start;
}

.product-card-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f7f6f4;
}

.product-card-badges {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: flex;
  gap: 8px;
  align-items: center;
}

.product-logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  min-width: 72px;
  padding: 0 12px;
  border: 1px solid #d9e4f2;
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
}

.product-logo-badge img {
  width: 54px;
  max-height: 16px;
  object-fit: contain;
}

.product-sale-badge {
  display: inline-grid;
  place-items: center;
  height: 30px;
  min-width: 46px;
  padding: 0 11px;
  border-radius: 999px;
  background: #ef6b17;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.product-favorite {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: #111820;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.product-card h3 {
  margin: 12px 0 6px;
  color: #20242a;
  font-size: 15px;
  font-weight: 800;
}

.product-card p {
  color: var(--muted);
}

.product-media-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.product-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .28s ease, transform .28s ease;
}

.product-media.hover {
  opacity: 0;
}

.product-card:hover .product-media.hover {
  opacity: 1;
  transform: scale(1.02);
}

.product-card:hover .product-media.primary:has(+ .hover) {
  opacity: 0;
}

.product-card-info {
  position: relative;
  min-height: 118px;
  padding: 12px 8px 26px;
  background: #fff;
}

.product-card-info .add-cart {
  min-width: 0;
  min-height: 38px;
  margin: 0 0 10px;
  padding: 0 24px;
  border-radius: 4px;
}

.product-card-info .product-price-stack {
  gap: 2px;
  margin: 0;
}

.product-card-info .compare-price,
.product-card-info .discount-line {
  display: none;
}

.product-card-info .product-price-stack strong {
  font-size: 15px;
  font-weight: 600;
}

.card-device,
.compare-device {
  position: absolute;
  left: 50%;
  top: 60px;
  transform: translateX(-50%);
  filter: drop-shadow(0 18px 20px rgba(40, 50, 60, .18));
}

.card-device.robot,
.compare-device.robot {
  width: 150px;
  height: 150px;
}

.card-device.stick,
.compare-device.stick {
  width: 55px;
  height: 190px;
  border-radius: 22px;
  background: linear-gradient(90deg, #f5f6f7, #9da7ae 55%, #59636b);
}

.card-device.purifier {
  width: 105px;
  height: 170px;
  border-radius: 44px 44px 28px 28px;
  background: linear-gradient(90deg, #f8fafb, #a7b0b6 62%, #59646e);
}

.card-device.dryer {
  width: 180px;
  height: 105px;
  border-radius: 54px 54px 42px 42px;
  background: linear-gradient(90deg, #e6ebee, #858f98 62%, #2d353d);
}

.card-device.dryer::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 120px;
  left: 80px;
  top: 80px;
  border-radius: 18px;
  background: linear-gradient(#7d878f, #2f3840);
}

.rail-button {
  display: grid;
  place-items: center;
  position: absolute;
  top: -38px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #30343a;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.rail-button.prev {
  right: 52px;
}

.rail-button.next {
  right: 14px;
}

.brand-film,
.feature-split,
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}

.film-visual,
.macro-visual,
.main-visual {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 35% 48%, rgba(255,255,255,.28), transparent 20%),
    linear-gradient(110deg, #030608, #121920 55%, #eef2f4 56%, #ffffff 100%);
}

.film-copy,
.feature-split > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8vw;
}

.film-copy p,
.feature-split p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.text-link {
  align-self: flex-start;
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.airflow,
.sensor-lines {
  position: absolute;
  inset: 12% 0 12% -8%;
  background:
    repeating-radial-gradient(ellipse at left center, transparent 0 28px, rgba(210,226,238,.18) 29px 31px),
    linear-gradient(90deg, transparent, rgba(190, 210, 224, .26), transparent);
  transform: skewY(-6deg);
}

.film-product,
.macro-robot {
  position: absolute;
  left: 24%;
  top: 21%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #151b20 0 6%, #aeb7bd 7% 16%, transparent 17%),
    radial-gradient(circle at 48% 44%, #ffffff, #aab4bb 52%, #414b53 100%);
  filter: drop-shadow(0 32px 34px rgba(0,0,0,.48));
}

.home-categories {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f7f9fa;
}

.home-categories .section-heading {
  margin-bottom: 34px;
}

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

.home-category-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  cursor: pointer;
}

.home-category-card.large {
  grid-column: 1 / -1;
}

.home-category-card.large .home-category-media {
  aspect-ratio: 5 / 2;
}

.home-category-card.large .home-category-media img {
  max-height: none;
}

.home-category-media {
  display: grid;
  place-items: center;
  aspect-ratio: 3 / 2;
  background: linear-gradient(180deg, #edf1f3, #dfe6ea);
}

.home-category-media img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
}

.product-detail {
  border-top: 1px solid var(--line);
}

.gallery {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 16px;
  padding: 44px;
}

.thumbs {
  display: grid;
  gap: 12px;
  align-content: start;
}

.thumb {
  width: 96px;
  height: 96px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #f4f6f7;
  cursor: pointer;
}

.thumb.active {
  border-color: var(--ink);
}

.mini {
  display: block;
  margin: auto;
}

.mini.robot {
  width: 48px;
  height: 48px;
}

.mini.dock {
  width: 36px;
  height: 58px;
  border-radius: 8px;
  background: linear-gradient(#dfe5e8, #65717b);
}

.mini.detail {
  width: 58px;
  height: 24px;
  border-radius: 20px;
  background: repeating-linear-gradient(90deg, #eef1f2 0 5px, #7b858d 6px 9px);
}

.play-thumb {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 20px auto;
  color: white;
  background: #111820;
  border-radius: 50%;
}

.main-visual {
  min-height: 520px;
  border-radius: 6px;
  background: linear-gradient(180deg, #f7f9fa, #d7dde2);
}

.product-stage {
  position: absolute;
  inset: 0;
}

.stage-dock {
  position: absolute;
  left: 53%;
  top: 17%;
  width: 180px;
  height: 310px;
  border-radius: 28px;
  background: linear-gradient(90deg, #f8fafb, #9ca6ad 60%, #3f4a53);
  filter: drop-shadow(0 24px 24px rgba(30, 38, 46, .26));
}

.stage-robot {
  position: absolute;
  left: 22%;
  top: 31%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #f7fafb 0 15%, transparent 16%),
    radial-gradient(circle at 42% 38%, #ffffff, #abb4ba 58%, #4e5962 100%);
  filter: drop-shadow(0 28px 28px rgba(31, 39, 47, .28));
}

.stage-shadow {
  position: absolute;
  left: 19%;
  right: 16%;
  bottom: 15%;
  height: 30px;
  background: radial-gradient(ellipse, rgba(45, 55, 65, .25), transparent 70%);
}

.purchase-panel {
  padding: 54px 5vw;
  border-left: 1px solid var(--line);
}

.purchase-panel h2 {
  max-width: 500px;
}

.subhead {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.rating {
  margin: 18px 0;
  color: #b39a64;
  font-weight: 900;
}

.rating span {
  margin-left: 8px;
  color: var(--muted);
  font-weight: 700;
}

.price-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin: 18px 0 28px;
}

.price-line span:not(.discount-line),
.compare-price {
  color: var(--muted);
  text-decoration: line-through;
}

.discount-line {
  color: #9b1c1c;
  font-weight: 900;
  text-decoration: none;
}

.price-line strong {
  font-size: 26px;
}

.product-price-stack {
  display: grid;
  gap: 4px;
  margin: 12px 0;
}

.product-price-stack strong {
  font-size: 22px;
}

.selector,
.quantity {
  margin: 22px 0;
}

.selector > span,
.quantity > span {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 900;
}

.swatches {
  display: flex;
  gap: 10px;
}

.swatch {
  width: 48px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--swatch);
  cursor: pointer;
}

.swatch.active {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.quantity > div {
  display: inline-grid;
  grid-template-columns: 42px 54px 42px;
  align-items: center;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.quantity button {
  height: 38px;
  border: 0;
  background: white;
  cursor: pointer;
}

.quantity strong {
  text-align: center;
}

.retailer-link {
  display: block;
  margin: 16px 0 22px;
  text-align: center;
  text-decoration: underline;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--line);
}

.benefits span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 10px;
  background: #f5f7f8;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
}

.feature-split {
  background: #f6f8f9;
}

.kol-lifestyle {
  overflow: hidden;
  background: #fff;
}

.kol-lifestyle .section-heading {
  margin-bottom: 48px;
}

.kol-lifestyle h2 {
  color: #111821;
  font-size: clamp(42px, 4vw, 62px);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.kol-rail-wrap {
  overflow-x: auto;
  padding: 0 8vw 28px;
}

.kol-rail {
  display: grid;
  grid-auto-columns: minmax(230px, 280px);
  grid-auto-flow: column;
  gap: 24px;
  width: max-content;
  min-width: 100%;
}

.kol-card {
  position: relative;
  display: grid;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  color: #111821;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(19, 28, 36, .12);
}

.kol-card-cover {
  display: grid;
}

.kol-card img,
.kol-card iframe,
.kol-card-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #eef2f4;
}

.kol-card img {
  object-fit: contain;
}

.kol-card iframe {
  border: 0;
}

.kol-card-placeholder {
  display: grid;
  place-items: center;
  color: #66717c;
  font-size: 13px;
  font-weight: 900;
}

.kol-card strong {
  padding: 16px 18px 18px;
  font-size: 16px;
}

.kol-platform {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: #1b2630;
  font-size: 11px;
  font-weight: 900;
}

.home-header {
  display: block;
  min-height: 0;
  color: #fff;
  background: #000;
  border-bottom: 0;
  backdrop-filter: none;
}

.home-header-top,
.home-header-main {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 4vw;
  background: #000;
}

.home-header-top {
  min-height: 60px;
  border-bottom: 1px solid #242424;
}

.home-header-main {
  min-height: 78px;
  gap: 28px;
  justify-content: space-between;
}

.home-header .brand {
  grid-column: auto;
  justify-self: auto;
  flex: 0 0 auto;
  padding: 0;
}

.home-header .brand img {
  width: clamp(96px, 8vw, 132px);
  max-height: 38px;
  filter: invert(1);
}

.home-utility-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 1.8vw, 30px);
  flex: 1;
  min-width: 0;
  font-size: 14px;
  font-weight: 600;
}

.home-utility-nav a,
.home-sign-in {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: #fff;
  white-space: nowrap;
}

.home-header .language-select,
.home-header .country-select {
  height: 36px;
  min-width: 62px;
  border-color: #3a3a3a;
  background: #000;
  color: #fff;
  line-height: 36px;
}

.home-header .country-select {
  min-width: 154px;
  max-width: 172px;
  padding-right: 30px;
}

.home-sign-in {
  gap: 14px;
  align-items: center;
  line-height: 1;
  transform: translateY(-1px);
}

.home-sign-in .user-icon {
  position: relative;
  inset: auto;
  display: inline-block;
  width: 14px;
  height: 14px;
  border-color: #fff;
  transform: translateY(-1px);
}

.home-sign-in .user-icon::after {
  left: -4px;
  right: -4px;
  top: 10px;
  height: 9px;
  border-color: #fff;
}

.home-header .nav {
  grid-column: auto;
  grid-row: auto;
  justify-content: flex-start;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 78px;
  padding: 0;
  border-bottom: 0;
  gap: clamp(18px, 2.4vw, 34px);
  overflow: visible;
}

.home-header .nav,
.home-header .nav-compare {
  background: #000;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.home-header .nav-compare {
  min-height: 78px;
}

.home-header .compare-dropdown {
  border-color: #2b2b2b;
  background: #050505;
  box-shadow: 0 24px 44px rgba(0, 0, 0, .38);
}

.home-header .compare-dropdown a {
  color: #fff;
}

.home-header .header-actions {
  grid-column: auto;
  justify-self: auto;
  flex: 0 0 auto;
  gap: 18px;
  padding-right: 0;
}

.home-search {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: clamp(260px, 23vw, 360px);
  height: 46px;
  padding: 0 18px;
  border: 1px solid #cfcfcf;
  border-radius: 4px;
  background: #fff;
  color: #6b7280;
  font: inherit;
  cursor: pointer;
}

.home-search .search-icon {
  position: relative;
  inset: auto;
  display: inline-block;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border-color: #4a5560;
}

.home-search .search-icon::after {
  background: #4a5560;
}

.home-header .icon-button {
  color: #fff;
}

.home-header .bag-icon {
  border-color: #fff;
}

.home-header .bag-icon::before {
  border-color: #fff;
}

.home-header .cart-count {
  color: #000;
  background: #fff;
}

.home-header .menu-toggle span {
  background: #fff;
}

.dealers-section {
  padding: 64px 5vw;
  background: #fff;
}

.dealer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 24px;
  max-width: 1320px;
  margin: 0 auto;
}

.dealer-card {
  display: grid;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.dealer-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 10px;
  background: #eef2f4;
  box-shadow: 0 16px 34px rgba(20, 30, 40, .12);
}

.dealer-card strong {
  font-size: 16px;
}

.macro-visual {
  background: linear-gradient(100deg, #020304, #11181f 58%, #e6eaed 59%, #f8fafb);
}

.macro-robot {
  left: 18%;
  top: 24%;
  width: 350px;
  height: 350px;
}

.tabs-section {
  padding-top: 54px;
}

.tabs {
  display: flex;
  gap: 34px;
  border-bottom: 1px solid var(--line);
}

.tabs button {
  padding: 0 0 16px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.tabs button.active {
  border-color: var(--ink);
}

.tab-panel {
  display: none;
  padding: 30px 0 0;
}

.tab-panel.active {
  display: block;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

th,
td {
  padding: 16px;
  border: 1px solid #eef1f3;
  text-align: left;
}

th {
  width: 18%;
  background: #dce2e6;
}

td {
  background: #f3f6f7;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}

.compare-grid article {
  position: relative;
  min-height: 430px;
  padding: 220px 22px 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(180deg, #f9fbfc, #e2e7eb);
  text-align: center;
}

.compare-device.black {
  filter: brightness(.58) drop-shadow(0 18px 20px rgba(40,50,60,.2));
}

.compare-grid p {
  margin: 0;
  padding: 10px;
  background: rgba(255, 255, 255, .46);
  border-top: 1px solid #d7dde2;
}

.compare-grid strong {
  display: block;
  margin: 18px 0;
  font-size: 20px;
}

.reviews {
  position: relative;
  background: white;
}

.reviews .section-heading h2 {
  margin-bottom: 22px;
  color: #3d3a3b;
  font-size: clamp(42px, 4vw, 62px);
  text-transform: none;
}

.reviews .section-heading .eyebrow {
  color: #3d3a3b;
  letter-spacing: 1.8px;
}

.review-controls {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  max-width: 1228px;
  margin: 0 auto 30px;
}

.review-controls button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: white;
  box-shadow: 0 7px 18px rgba(25, 34, 42, .12);
  color: #6b737c;
  cursor: pointer;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 38px;
  max-width: 1228px;
  margin: 0 auto;
}

.customer-review-card {
  min-height: 430px;
  padding: 24px;
  border: 1px solid #edf0f2;
  border-radius: 14px;
  background: white;
  box-shadow: 0 10px 26px rgba(25, 34, 42, .12);
}

.review-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.quote-mark {
  color: #e7ebef;
  font-size: 56px;
  font-weight: 900;
  line-height: .7;
}

.stars {
  color: #f4b400;
  letter-spacing: 1px;
}

.review-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 64px);
  gap: 8px;
  margin-bottom: 12px;
}

.review-photo-grid img,
.review-photo-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 6px;
  object-fit: contain;
  background: #edf1f3;
}

.review-media-thumb {
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 6px;
  padding: 0;
  overflow: hidden;
  background: #edf1f3;
  cursor: pointer;
}

.review-media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.review-media-thumb.is-video {
  display: grid;
  place-items: center;
  background: #171717;
  color: white;
}

.review-video-play {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  font-size: 12px;
  line-height: 1;
}

.customer-review-card p {
  min-height: 110px;
  margin: 0 0 8px;
  color: #5f6874;
  font-size: 20px;
  line-height: 1.45;
}

.customer-review-card button {
  border: 0;
  padding: 0;
  color: #7b8490;
  background: transparent;
  cursor: pointer;
}

.customer-review-card strong {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  color: #4b5563;
}

.customer-review-card strong span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: #edf1f6;
}

.review-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, .94);
}

.review-lightbox-stage {
  display: grid;
  place-items: center;
  width: min(86vw, 1120px);
  height: 88vh;
}

.review-lightbox-stage img,
.review-lightbox-stage video {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
}

.review-lightbox-close,
.review-lightbox-nav {
  position: absolute;
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
}

.review-lightbox-close {
  top: 22px;
  right: 26px;
  font-size: 42px;
  line-height: 1;
}

.review-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 54px;
  color: rgba(255, 255, 255, .78);
}

.review-lightbox-nav.prev {
  left: 28px;
}

.review-lightbox-nav.next {
  right: 28px;
}

.faq-support {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  padding: 20px 0;
  font-weight: 900;
  cursor: pointer;
}

details p {
  color: var(--muted);
  line-height: 1.5;
}

.support-card {
  padding: 34px;
  background: #f5f7f8;
  border-radius: 6px;
}

.support-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.support-icons span {
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  text-align: center;
  font-weight: 900;
}

form {
  display: flex;
  gap: 8px;
}

label {
  flex: 1;
  display: grid;
  gap: 8px;
  font-weight: 900;
}

input {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 3px;
}

.footer {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 34px;
  padding: 42px 5vw 26px;
  background: linear-gradient(180deg, #eef2f4, #ffffff);
  border-top: 1px solid var(--line);
}

.footer a {
  display: block;
  margin: 8px 0;
  color: #39434d;
  font-size: 13px;
}

.newsletter p {
  color: var(--muted);
  max-width: 330px;
}

.newsletter form {
  max-width: 360px;
}

.newsletter button,
.footer form button {
  min-width: 86px;
  border: 0;
  border-radius: 3px;
  color: white;
  background: #1c2630;
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  font-size: 12px;
}

.search-modal,
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(12, 18, 24, .58);
}

.search-modal[hidden],
.video-modal[hidden] {
  display: none;
}

.modal-card,
.video-frame {
  position: relative;
  width: min(620px, 100%);
  padding: 32px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .25);
}

.close-modal,
.video-close,
.cart-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  font-size: 30px;
  cursor: pointer;
}

.quick-results {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.quick-results a {
  padding: 14px;
  background: #f4f6f7;
  border-radius: 4px;
  font-weight: 900;
}

.fake-video {
  display: grid;
  place-items: center;
  min-height: 360px;
  color: white;
  background:
    radial-gradient(circle at 50% 48%, rgba(255,255,255,.18), transparent 22%),
    linear-gradient(135deg, #111820, #57636d);
  border-radius: 6px;
}

.play-large {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(255,255,255,.24);
  font-size: 36px;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 45;
  width: min(420px, 100%);
  height: 100vh;
  padding: 28px;
  background: white;
  box-shadow: -20px 0 50px rgba(20, 28, 36, .2);
  transform: translateX(105%);
  transition: transform .25s ease;
}

.cart-drawer.open {
  transform: translateX(0);
}

.drawer-head {
  position: relative;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.cart-empty {
  padding: 34px 0;
  color: var(--muted);
}

.cart-line {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 16px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line strong,
.cart-line p {
  overflow-wrap: anywhere;
}

.checkout-label {
  margin: 18px 0;
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 14px 0;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-weight: 900;
}

.clear-cart {
  margin-top: 10px;
}

.line-thumb {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #f8fafb 0 15%, transparent 16%),
    radial-gradient(circle at 42% 38%, #ffffff, #abb4ba 58%, #4e5962 100%);
}

.product-page {
  background: #f5f6f7;
}

.detail-main {
  padding: 22px 4vw 70px;
  background: #f5f6f7;
}

.back-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 900;
}

.detail-shell {
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(360px, .82fr);
  gap: 22px;
  max-width: 1380px;
  margin: 0 auto;
  align-items: start;
}

.detail-gallery,
.detail-info {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
}

.detail-gallery {
  padding: 18px;
}

.detail-main-image {
  display: grid;
  place-items: center;
  min-height: 620px;
  background: #eef1f3;
  border-radius: 4px;
}

.detail-main-image img,
.detail-main-image video {
  max-width: 92%;
  max-height: 580px;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(30, 40, 50, .16));
}

.detail-main-image video {
  width: 92%;
  border-radius: 8px;
  background: #111820;
}

.detail-placeholder {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #f7fafb 0 15%, transparent 16%),
    radial-gradient(circle at 42% 38%, #ffffff, #abb4ba 58%, #4e5962 100%);
}

.detail-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
}

.detail-thumb {
  flex: 0 0 92px;
  height: 92px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  cursor: pointer;
}

.detail-thumb.active {
  border-color: var(--ink);
}

.detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.detail-video-thumb {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  color: white;
  background: #111820;
  font-size: 24px;
}

.detail-info {
  position: sticky;
  top: 96px;
  padding: 28px;
}

.detail-title {
  margin-bottom: 12px;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.03;
}

.detail-description,
.detail-long {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.detail-rating {
  margin: 14px 0 16px;
  color: #b99755;
  font-weight: 900;
}

.detail-rating span {
  margin-left: 8px;
  color: var(--muted);
  font-weight: 700;
}

.installment-note {
  margin: -10px 0 22px;
  padding: 12px 14px;
  border-radius: 4px;
  color: #304052;
  background: #eef4f8;
  font-size: 14px;
  font-weight: 800;
}

.variant-block {
  margin: 22px 0;
}

.variant-block > span,
.quantity > span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.variant-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.variant-options button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: white;
  font-weight: 900;
  cursor: pointer;
}

.variant-options button.active {
  border-color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
}

.product-promises {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}

.product-promises article {
  min-height: 94px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #f8fafb;
}

.product-promises strong,
.product-promises span {
  display: block;
}

.product-promises strong {
  margin-bottom: 6px;
  font-size: 13px;
}

.product-promises span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.detail-copy {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.detail-copy h2 {
  font-size: 28px;
}

.detail-description-panel {
  max-width: 1380px;
  margin: 22px auto 0;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
}

.detail-description-panel h2 {
  font-size: 32px;
}

.detail-description-panel p {
  max-width: 860px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.detail-specs,
.detail-specs-secondary {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.detail-specs-secondary {
  grid-template-columns: 1fr;
}

.detail-specs[hidden],
.detail-specs-secondary[hidden] {
  display: none;
}

.detail-specs div,
.detail-specs-secondary div {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f7f9fa;
}

.detail-specs span,
.detail-specs-secondary span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.detail-feature-media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}

.detail-feature-media img {
  width: 100%;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 6px;
  background: #eef1f3;
}

.detail-feature-media video {
  width: 100%;
  max-height: 760px;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border-radius: 6px;
  background: #111820;
}

.collection-main {
  max-width: 1500px;
  margin: 0 auto;
  padding: 28px 5vw 80px;
}

.collection-breadcrumb {
  color: var(--muted);
}

.collection-title {
  margin: 34px 0 58px;
  text-align: center;
  color: #3b383a;
  font-size: clamp(48px, 5vw, 72px);
}

.collection-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 44px;
}

.collection-filters h2 {
  margin: 0 0 24px;
  color: #3d3a3b;
  font-size: 28px;
}

.filter-block {
  display: grid;
  padding: 0;
  border-top: 1px solid var(--line);
}

.filter-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #6a6668;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.filter-chevron {
  width: 9px;
  height: 9px;
  border-top: 2px solid #6a6668;
  border-right: 2px solid #6a6668;
  transform: rotate(135deg);
  transition: transform .18s ease;
}

.filter-toggle[aria-expanded="true"] .filter-chevron {
  transform: rotate(-45deg);
}

.filter-content {
  display: grid;
  gap: 12px;
  padding: 4px 0 18px;
}

.filter-content[hidden] {
  display: none;
}

.filter-content label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.filter-content input[type="checkbox"] {
  width: 14px;
  height: 14px;
  appearance: none;
  border: 1px solid #c8cdd1;
  background: white;
}

.filter-content input[type="checkbox"]:checked {
  background: #3d3a3b;
  box-shadow: inset 0 0 0 3px white;
}

.price-range-track {
  position: relative;
  height: 8px;
  margin: 4px 8px 10px;
  border-radius: 999px;
  background: #8c8989;
}

.price-range-track::before,
.price-range-track::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #6d6969;
  transform: translateY(-50%);
}

.price-range-track::before {
  left: 0;
}

.price-range-track::after {
  right: 0;
}

.price-filter {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
}

.price-filter label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: center;
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid var(--line);
  color: #aaa5a7;
}

.price-filter input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #6a6668;
}

.collection-results {
  min-width: 0;
  width: 100%;
}

.collection-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  width: 100%;
  min-height: 36px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 15px;
}

.collection-toolbar label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
  white-space: nowrap;
}

.collection-toolbar select {
  min-height: 34px;
  border: 0;
  color: var(--muted);
  background: transparent;
  font: inherit;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 52px 24px;
}

.collection-card {
  cursor: pointer;
  text-align: center;
}

.collection-card-media {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / .82;
  min-height: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #f6f7f7;
}

.collection-card-media span {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 5px 8px;
  border-radius: 2px;
  color: white;
  background: #ef2424;
  font-weight: 900;
}

.collection-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.collection-card h2 {
  margin: 18px 0 8px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
  text-transform: none;
}

.collection-card-prices {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.collection-card-prices strong {
  color: #ef2424;
}

.collection-card-prices span {
  color: var(--muted);
  text-decoration: line-through;
}

.collection-empty {
  grid-column: 1 / -1;
  color: var(--muted);
}

.compare-main {
  padding: 64px 5vw;
  background: #fff;
}

.compare-board {
  max-width: 1500px;
  margin: 0 auto;
  overflow-x: auto;
}

.compare-products,
.compare-spec-row {
  display: grid;
  grid-template-columns: 260px repeat(4, minmax(230px, 1fr));
  gap: 0 50px;
  min-width: 1180px;
}

.compare-products {
  align-items: start;
  padding: 0 10px 28px;
}

.compare-products::before {
  content: "";
}

.compare-product-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.compare-product-select {
  width: 100%;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid #c9ced3;
  border-radius: 4px;
  color: #666;
  background: #fff;
  font-weight: 700;
}

.compare-product-image {
  display: grid;
  place-items: center;
  height: 150px;
}

.compare-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.compare-product-image .detail-placeholder {
  width: 150px;
  height: 150px;
}

.compare-product-empty {
  display: grid;
  place-items: center;
  height: 150px;
  color: #8a9299;
  background: #f5f6f7;
  border-radius: 8px;
  font-size: 14px;
}

.compare-product-card h2 {
  margin: 0;
  color: #5d5d5d;
  font-size: 16px;
  line-height: 1.35;
  text-transform: none;
}

.compare-product-card p {
  margin: -8px 0 4px;
  color: #777;
}

.compare-product-card a {
  justify-self: start;
  padding: 9px 18px;
  border: 1px solid #555;
  border-radius: 999px;
  color: #555;
  font-weight: 900;
  text-decoration: none;
}

.compare-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px 10px;
  color: #777;
  font-size: 15px;
}

.compare-highlight input {
  width: 14px;
  height: 14px;
}

.compare-table {
  min-width: 1180px;
}

.compare-spec-section {
  margin-top: 12px;
  padding: 10px 10px;
  background: #f0f0f0;
  color: #606060;
  font-size: 18px;
  font-weight: 900;
}

.compare-spec-row {
  padding: 7px 10px;
  color: #707070;
  font-size: 15px;
}

.compare-spec-row.different {
  background: #fff8e9;
}

.compare-spec-row strong {
  color: #606060;
}

.compare-spec-row span,
.compare-spec-row strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

@media (max-width: 980px) {
  .topbar {
    flex-direction: column;
    gap: 2px;
    text-align: center;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 68px;
    padding: 0 18px;
  }

  .brand {
    grid-column: 2;
    justify-self: start;
    padding: 0 8px;
  }

  .brand img {
    width: clamp(150px, 32vw, 210px);
    max-height: 44px;
  }

  .menu-toggle {
    display: block;
    margin-left: 0;
  }

  .header-actions {
    padding-right: 0;
  }

  .nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 98px;
    display: none;
    justify-content: start;
    gap: 16px;
    padding: 20px;
    border-bottom: 4px solid #b69873;
    background: #020202;
  }

  .nav-compare {
    display: grid;
    gap: 10px;
    min-height: auto;
  }

  .compare-dropdown {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0 0 0 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .compare-dropdown a {
    color: #dbe3ea;
    font-size: 13px;
  }

  .collection-page .nav,
  .product-page .nav,
  .compare-page .nav {
    top: 68px;
  }

  .nav.open {
    display: grid;
  }

  .hero,
  .brand-film,
  .feature-split,
  .product-detail,
  .faq-support {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 420px;
    order: 2;
  }

  .hero-copy {
    padding: 48px 24px 16px;
  }

  .hero-device.robot.large {
    left: 14%;
  }

  .hero-device.dock {
    left: 50%;
  }

  .ambassador-card {
    left: 24px;
    bottom: 28px;
    width: 220px;
  }

  .product-rail {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 18px 10px;
  }

  .product-card {
    flex: 0 0 min(290px, 82vw);
    scroll-snap-align: center;
  }

  .rail-button {
    display: block;
  }

  .collection-tabs {
    gap: 18px;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 18px;
  }

  .home-category-grid,
  .dealer-grid,
  .compare-grid,
  .review-grid,
  .support-icons,
  .footer {
    grid-template-columns: 1fr 1fr;
  }

  .gallery {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .thumbs {
    display: flex;
    overflow-x: auto;
  }

  .purchase-panel {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .footer-bottom,
  .newsletter {
    grid-column: 1 / -1;
  }

  .detail-shell {
    grid-template-columns: 1fr;
  }

  .detail-info {
    position: static;
  }

  .detail-main-image {
    min-height: 420px;
  }

  .collection-layout {
    grid-template-columns: 1fr;
  }

  .collection-grid {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }
}

@media (max-width: 620px) {
  .header-actions {
    gap: 4px;
  }

  .topbar {
    font-size: 11px;
  }

  .brand {
    padding: 0 4px;
  }

  .brand img {
    width: clamp(120px, 36vw, 170px);
    max-height: 36px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .hero-media {
    min-height: 360px;
  }

  .hero-device.robot.large {
    width: 210px;
    height: 210px;
    left: 8%;
    top: 22%;
  }

  .hero-device.dock {
    width: 130px;
    height: 240px;
    left: 55%;
    top: 20%;
  }

  .hero-device.robot.small {
    display: none;
  }

  .ambassador-card {
    width: 190px;
    padding: 15px;
  }

  .film-product,
  .macro-robot {
    left: 18%;
    width: 230px;
    height: 230px;
  }

  .film-visual,
  .macro-visual {
    min-height: 360px;
  }

  .collection,
  .compare,
  .reviews,
  .kol-lifestyle,
  .dealers-section,
  .home-categories,
  .tabs-section,
  .faq-support {
    padding: 46px 18px;
  }

  .kol-rail-wrap {
    padding: 0 0 22px;
  }

  .kol-rail {
    grid-auto-columns: minmax(210px, 78vw);
  }

  .main-visual {
    min-height: 360px;
  }

  .stage-dock {
    left: 56%;
    top: 15%;
    width: 110px;
    height: 220px;
  }

  .stage-robot {
    left: 8%;
    top: 32%;
    width: 190px;
    height: 190px;
  }

  .benefits,
  .home-category-grid,
  .dealer-grid,
  .compare-grid,
  .review-grid,
  .detail-specs,
  .detail-specs-secondary,
  .support-icons,
  .footer {
    grid-template-columns: 1fr;
  }

  .home-category-card {
    grid-template-columns: 1fr;
  }

  .tabs {
    gap: 18px;
    overflow-x: auto;
  }

  table,
  tbody,
  tr,
  th,
  td {
    display: block;
    width: 100%;
  }

  th,
  td {
    border-bottom: 0;
  }

  form {
    display: grid;
  }

  .detail-main {
    padding: 22px 18px 46px;
  }

  .detail-gallery,
  .detail-info {
    padding: 18px;
  }

  .detail-main-image {
    min-height: 320px;
  }

  .collection-main {
    padding-inline: 18px;
  }

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

  .collection-toolbar {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }
}

@media (max-width: 1180px) {
  .home-utility-nav {
    gap: 14px;
    font-size: 13px;
  }

  .home-utility-nav a:not(.home-sign-in):nth-of-type(-n + 3) {
    display: none;
  }

  .home-search {
    width: clamp(220px, 28vw, 310px);
  }
}

@media (max-width: 980px) {
  .home-header {
    display: block;
    min-height: 0;
    padding: 0;
  }

  .home-header-top {
    min-height: 64px;
    padding: 0 18px;
    gap: 14px;
  }

  .home-header .menu-toggle {
    display: block;
    flex: 0 0 auto;
    margin-left: 0;
  }

  .home-header .brand {
    flex: 0 0 auto;
    padding: 0;
  }

  .home-header .brand img {
    width: clamp(112px, 28vw, 160px);
    max-height: 34px;
  }

  .home-utility-nav {
    gap: 10px;
  }

  .home-utility-nav a:not(.home-sign-in) {
    display: none;
  }

  .home-header-main {
    min-height: 64px;
    padding: 10px 18px;
    gap: 12px;
  }

  .home-header .nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 128px;
    z-index: 35;
    display: none;
    min-height: auto;
    padding: 22px;
    border-top: 1px solid #202020;
    border-bottom: 1px solid #202020;
  }

  .home-header .nav.open {
    display: grid;
  }

  .home-header .nav-compare {
    display: grid;
    min-height: auto;
  }

  .home-header .header-actions {
    flex: 1;
    justify-content: flex-end;
  }

  .home-search {
    flex: 1 1 auto;
    width: min(100%, 360px);
  }
}

@media (max-width: 620px) {
  .home-header-top {
    padding: 0 12px;
  }

  .home-header-main {
    padding: 10px 12px;
  }

  .home-header .language-select,
  .home-header .country-select {
    display: none;
  }

  .home-sign-in {
    font-size: 0;
  }

  .home-search {
    height: 42px;
    min-width: 0;
    padding: 0 12px;
  }

  .home-search span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

