:root {
  --navy: #061a3a;
  --navy-deep: #020d20;
  --ink: #111827;
  --muted: #667085;
  --soft: #f4f7fa;
  --soft-blue: #eaf7fb;
  --white: #ffffff;
  --cyan: #00aeca;
  --cyan-dark: #087e99;
  --red: #e3222a;
  --red-dark: #bb1119;
  --green: #13795b;
  --green-soft: #e9f7f1;
  --amber: #9a6700;
  --amber-soft: #fff7da;
  --line: #dfe5eb;
  --line-strong: #cbd3dc;
  --radius: 7px;
  --shadow-soft: 0 12px 32px rgba(4, 19, 44, 0.08);
  --shadow-drawer: -18px 0 60px rgba(4, 19, 44, 0.2);
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Avenir Next", Avenir, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.has-overlay {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(0, 174, 202, 0.28);
  outline-offset: 3px;
}

textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(0, 174, 202, 0.28);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  margin-bottom: 0;
  color: var(--navy-deep);
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1 {
  font-size: clamp(2.75rem, 5.5vw, 5.15rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  font-weight: 760;
}

h3 {
  font-size: 1.06rem;
  font-weight: 760;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.kicker {
  margin-bottom: 12px;
  color: var(--cyan-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.button,
.header-tool,
.cart-button,
.menu-toggle,
.icon-button,
.text-button,
.text-link,
.brand-option,
.category-option,
.model-option,
.qty-button,
.remove-button {
  border: 0;
  cursor: pointer;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 5px;
  font-weight: 760;
  text-align: center;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled,
.qty-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.button-primary {
  color: var(--white);
  background: var(--navy);
}

.button-primary:hover {
  background: #0b2a59;
}

.button-secondary {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line-strong);
}

.button-secondary:hover {
  border-color: var(--navy);
}

.text-button,
.text-link {
  display: inline-flex;
  align-items: center;
  padding: 4px 0;
  color: var(--navy);
  background: transparent;
  border-bottom: 1px solid currentColor;
  font-weight: 750;
}

.text-button:hover,
.text-link:hover {
  color: var(--cyan-dark);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 72px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
  justify-self: start;
}

.brand > img {
  width: 42px;
  height: 42px;
  padding: 4px;
  object-fit: contain;
  background: var(--navy);
  border-radius: 5px;
}

.brand-name {
  color: var(--navy);
  font-size: 1.27rem;
  font-weight: 760;
  white-space: nowrap;
}

.brand-name strong {
  color: var(--cyan-dark);
}

.swiss-mark {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border-radius: 3px;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.main-nav a {
  padding: 10px 12px;
  color: #49566a;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--navy);
  background: var(--soft);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.language-picker {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
}

.language-picker::after {
  position: absolute;
  right: 10px;
  color: var(--navy);
  content: "⌄";
  font-size: 0.9rem;
  line-height: 1;
  pointer-events: none;
}

.language-picker select {
  width: 118px;
  min-height: 42px;
  padding: 8px 28px 8px 11px;
  color: var(--navy);
  background: var(--soft);
  border: 1px solid transparent;
  border-radius: 5px;
  appearance: none;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
}

.language-picker select:hover,
.language-picker select:focus-visible {
  background: var(--white);
  border-color: var(--line-strong);
  outline: none;
}

.mobile-language {
  display: none;
}

.payment-language {
  margin-bottom: 30px;
}

.header-tool,
.cart-button,
.menu-toggle {
  min-height: 42px;
  border-radius: 5px;
  font-weight: 750;
}

.header-tool {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  color: var(--navy);
  background: transparent;
}

.header-tool:hover {
  background: var(--soft);
}

.tool-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 8px 7px 13px;
  color: var(--white);
  background: var(--navy);
}

.cart-button:hover {
  background: #0b2a59;
}

.cart-button strong {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  place-items: center;
  color: var(--navy);
  background: var(--white);
  border-radius: 50%;
  font-size: 0.78rem;
}

.menu-toggle {
  display: none;
  width: 42px;
  padding: 10px;
  background: var(--soft);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.mobile-nav {
  display: none;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto 16px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.mobile-nav a {
  display: block;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

/* Home hero */

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  inset: 0 0 0 54%;
  background: var(--soft-blue);
  content: "";
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(390px, 0.75fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
  min-height: 565px;
  padding-block: 54px;
}

.hero-copy {
  max-width: 670px;
}

.hero-copy h1 {
  max-width: 760px;
}

.hero-lead {
  max-width: 610px;
  margin: 24px 0 28px;
  color: #526175;
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.delivery-zones {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 42px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.delivery-zones .country-flags {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.35rem;
  line-height: 1;
}

.country-flags span {
  display: inline-block;
}

.hero-visual {
  position: relative;
  display: flex;
  width: min(100%, 520px);
  min-height: 520px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  justify-self: end;
}

.hero-visual > img {
  width: min(100%, 470px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 30px rgba(4, 19, 44, 0.18));
}

/* Finder */

.finder-section,
.featured-section,
.results-section,
.related-section {
  padding-block: 86px;
}

.finder-section {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

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

.finder-topline > div,
.section-heading > div {
  max-width: 760px;
}

.section-heading p:not(.kicker):not(.selection-path) {
  margin: 10px 0 0;
  color: var(--muted);
}

.finder-progress {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.finder-progress li {
  display: grid;
  justify-items: center;
  gap: 5px;
  color: #8b95a5;
}

.finder-progress span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 800;
}

.finder-progress small {
  font-size: 0.7rem;
  font-weight: 700;
}

.finder-progress .is-current,
.finder-progress .is-complete {
  color: var(--navy);
}

.finder-progress .is-current span {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.finder-progress .is-complete span {
  color: var(--green);
  background: var(--green-soft);
  border-color: #9bcfbd;
}

.finder {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.catalog-status:empty {
  display: none;
}

.catalog-status {
  padding: 14px 28px;
  margin: 0;
  color: var(--red-dark);
  background: #fff1f2;
  border-bottom: 1px solid #fecdd3;
}

.finder-step {
  padding: 34px;
}

.finder-step + .finder-step {
  border-top: 1px solid var(--line);
}

.step-heading {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.step-heading p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.step-number {
  flex: 0 0 auto;
  color: var(--cyan-dark);
  font-size: 0.75rem;
  font-weight: 850;
}

.brand-options,
.category-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.brand-option,
.category-option {
  position: relative;
  display: grid;
  min-height: 138px;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: left;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.brand-option:hover,
.category-option:hover,
.model-option:hover {
  border-color: #92a4b9;
  box-shadow: 0 8px 22px rgba(4, 19, 44, 0.07);
  transform: translateY(-1px);
}

.brand-option.is-selected,
.category-option.is-selected,
.model-option.is-selected {
  border-color: var(--cyan-dark);
  box-shadow: inset 0 0 0 1px var(--cyan-dark);
}

.brand-option > span:not(.brand-logo-wrap),
.category-option > span:not(.category-visual) {
  display: grid;
  gap: 3px;
  align-self: center;
}

.brand-option strong,
.category-option strong {
  color: var(--navy-deep);
  font-size: 1.15rem;
}

.brand-option small,
.category-option small {
  color: var(--muted);
}

.brand-logo-wrap,
.category-visual {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  overflow: hidden;
  background: var(--soft);
  border-radius: 5px;
}

.brand-logo-wrap img {
  width: 62px;
  max-height: 48px;
  object-fit: contain;
}

.category-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.model-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 26px;
}

.search-field,
.cart-summary > label {
  display: grid;
  gap: 7px;
  color: #475467;
  font-size: 0.78rem;
  font-weight: 750;
}

.search-field input,
.cart-summary input,
.global-search-field input,
.detail-buy-row input {
  width: 100%;
  min-height: 46px;
  padding: 10px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 5px;
}

.search-field input:focus,
.cart-summary input:focus,
.global-search-field input:focus,
.detail-buy-row input:focus {
  border-color: var(--cyan-dark);
}

.stock-toggle {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  color: var(--navy);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 0.85rem;
  font-weight: 750;
  white-space: nowrap;
}

.stock-toggle input {
  width: 18px;
  height: 18px;
  accent-color: var(--navy);
}

.model-list,
.model-group {
  display: grid;
  gap: 14px;
}

.model-group + .model-group {
  margin-top: 22px;
}

.model-group > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.model-option {
  display: grid;
  min-width: 0;
  min-height: 88px;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 5px;
  text-align: left;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.model-option > img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  background: var(--soft);
}

.model-option > span {
  display: grid;
  min-width: 0;
  gap: 1px;
}

.model-option strong,
.model-option small,
.model-option em {
  overflow-wrap: anywhere;
}

.model-option strong {
  color: var(--navy-deep);
  font-size: 0.86rem;
}

.model-option small {
  color: var(--muted);
  font-size: 0.7rem;
}

.model-option em {
  grid-column: 2;
  color: var(--green);
  font-size: 0.67rem;
  font-style: normal;
  font-weight: 750;
}

.model-option.is-unavailable {
  background: #fafbfc;
  opacity: 0.72;
}

.model-option.is-unavailable em {
  color: var(--muted);
}

.model-empty,
.search-empty {
  display: grid;
  justify-items: start;
  gap: 6px;
  padding: 28px;
  color: var(--muted);
  background: var(--soft);
  border: 1px dashed var(--line-strong);
}

.model-empty strong,
.search-empty strong {
  color: var(--navy);
}

.finder-selection {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 34px;
  background: var(--navy);
}

.finder-selection > div {
  display: grid;
  gap: 2px;
}

.finder-selection small {
  color: #aebed4;
  font-size: 0.7rem;
}

.finder-selection strong {
  color: var(--white);
}

.finder-selection .text-button {
  color: var(--white);
}

/* Products */

.results-section {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.selection-path {
  margin-bottom: 10px;
  color: var(--cyan-dark);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.product-card {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-card:hover {
  border-color: #b4c0cc;
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.product-media {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.018);
}

.stock-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.2;
}

.product-media .stock-badge {
  position: absolute;
  top: 12px;
  left: 12px;
}

.stock-badge.is-in {
  color: var(--green);
  background: var(--green-soft);
}

.stock-badge.is-low {
  color: var(--amber);
  background: var(--amber-soft);
}

.stock-badge.is-out {
  color: #5f6b7a;
  background: #eef1f4;
}

.product-body {
  display: flex;
  min-height: 248px;
  flex-direction: column;
  padding: 18px;
}

.product-meta {
  margin-bottom: 7px;
  color: var(--cyan-dark);
  font-size: 0.71rem;
  font-weight: 750;
  text-transform: uppercase;
}

.product-body h3 {
  min-height: 2.28em;
  font-size: 1rem;
}

.product-body h3 a:hover {
  color: var(--cyan-dark);
}

.compatibility {
  display: grid;
  gap: 2px;
  padding-top: 14px;
  margin: 14px 0 18px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.72rem;
}

.compatibility strong {
  color: var(--ink);
  font-size: 0.86rem;
}

.product-footer {
  display: grid;
  gap: 12px;
  margin-top: auto;
}

.price {
  color: var(--navy);
  font-size: 1.12rem;
}

.price.is-unavailable {
  color: var(--muted);
  font-size: 0.84rem;
}

.product-footer .button {
  width: 100%;
}

.price-note {
  margin: -5px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.35;
}

/* Service and story */

.trust-strip {
  color: var(--navy);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-grid > div {
  display: grid;
  gap: 4px;
  padding: 24px;
  border-left: 1px solid var(--line);
}

.trust-grid > div:last-child {
  border-right: 1px solid var(--line);
}

.trust-grid strong {
  font-size: 0.9rem;
}

.trust-grid span {
  color: var(--muted);
  font-size: 0.73rem;
}

.service-band {
  padding-block: 88px;
  color: var(--white);
  background: var(--navy-deep);
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 80px;
  align-items: start;
}

.service-band h2,
.service-band h3 {
  color: var(--white);
}

.service-band .kicker {
  color: #66d4e8;
}

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

.service-points article {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.service-points article > span {
  color: #66d4e8;
  font-size: 0.73rem;
  font-weight: 800;
}

.service-points p {
  margin: 7px 0 0;
  color: #aebed4;
  font-size: 0.88rem;
}

.brand-story {
  padding-block: 90px;
  background: var(--white);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 0.75fr);
  gap: clamp(44px, 8vw, 110px);
  align-items: center;
}

.story-image {
  overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--line);
}

.story-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}

.story-mark {
  width: 66px;
  height: 66px;
  padding: 6px;
  margin-bottom: 24px;
  object-fit: contain;
  background: var(--navy);
  border-radius: 6px;
}

.story-copy > p:not(.kicker) {
  max-width: 510px;
  margin: 22px 0 26px;
  color: var(--muted);
}

/* Product detail */

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-block: 22px;
  color: var(--muted);
  font-size: 0.8rem;
}

.breadcrumb a:hover {
  color: var(--navy);
}

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

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: clamp(44px, 8vw, 110px);
  align-items: center;
  padding-block: 56px 72px;
}

.product-detail-gallery {
  overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--line);
}

.product-detail-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-detail-copy .kicker {
  margin-bottom: 14px;
}

.product-detail-copy h1 {
  font-size: clamp(2.35rem, 4vw, 4rem);
}

.product-detail-copy > p:not(.kicker) {
  margin: 22px 0;
  color: var(--muted);
}

.detail-compatibility {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 24px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.detail-compatibility div {
  display: grid;
  gap: 3px;
  padding: 16px 18px 16px 0;
}

.detail-compatibility div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.detail-compatibility dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.detail-compatibility dd {
  margin: 0;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.detail-price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
}

.product-detail-price {
  color: var(--navy);
  font-size: 1.55rem;
}

.product-description {
  color: #475467 !important;
}

.product-notices {
  padding: 14px 0;
  margin: -6px 0 24px;
  border-top: 1px solid var(--line);
}

.product-notices p {
  margin: 5px 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.product-notices sup {
  color: var(--navy);
  font-weight: 800;
}

.detail-shipping {
  display: grid;
  gap: 2px;
  padding: 16px;
  margin: -4px 0 24px;
  color: var(--navy);
  background: var(--soft);
  border: 1px solid var(--line);
  border-left: 4px solid var(--cyan-dark);
  border-radius: 5px;
}

.detail-shipping strong {
  font-size: 0.88rem;
}

.detail-shipping span {
  color: #475467;
  font-size: 0.76rem;
}

.detail-shipping small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.68rem;
}

.detail-buy-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  align-items: end;
  margin: 26px 0;
}

.detail-buy-row label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 750;
}

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

.product-facts div {
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.8rem;
}

.product-facts dt {
  color: var(--muted);
}

.product-facts dd {
  margin: 0;
  color: var(--navy);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.related-section {
  background: var(--soft);
}

/* Cart */

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(2, 13, 32, 0.52);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 80;
  display: flex;
  width: min(460px, 100vw);
  height: 100dvh;
  flex-direction: column;
  padding: 26px;
  background: var(--white);
  box-shadow: var(--shadow-drawer);
  transform: translateX(105%);
  transition: transform 220ms ease;
}

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

.drawer-header,
.search-dialog-header {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.drawer-header h2,
.search-dialog-header h2 {
  font-size: 1.65rem;
}

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  color: var(--navy);
  background: var(--soft);
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
}

.cart-items {
  flex: 1 1 auto;
  overflow: auto;
}

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

.cart-line > img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  background: var(--soft);
}

.cart-line-body,
.cart-line-title {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.cart-line-title {
  grid-template-columns: 1fr auto;
  align-items: start;
}

.cart-line-title span,
.cart-line-title strong,
.cart-line-body small {
  overflow-wrap: anywhere;
}

.cart-line-title span {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 750;
}

.cart-line-title strong {
  color: var(--navy);
  font-size: 0.82rem;
}

.cart-line-body small {
  color: var(--muted);
  font-size: 0.72rem;
}

.cart-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin-top: 7px;
}

.qty-button {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--navy);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  line-height: 1;
}

.cart-controls > strong {
  min-width: 22px;
  text-align: center;
}

.remove-button {
  margin-left: auto;
  color: var(--red-dark);
  background: transparent;
  font-size: 0.72rem;
  font-weight: 700;
}

.cart-empty {
  display: grid;
  flex: 1 1 auto;
  align-content: center;
  justify-items: start;
  gap: 7px;
  color: var(--muted);
}

.cart-empty strong {
  color: var(--navy);
  font-size: 1.2rem;
}

.cart-empty .button {
  margin-top: 14px;
}

.cart-summary {
  flex: 0 0 auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.summary-line {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 8px;
  color: var(--navy);
}

.summary-line.is-compact {
  padding-block: 4px;
  font-size: 0.82rem;
}

.summary-line.is-compact strong {
  font-size: 0.82rem;
}

.summary-line.is-total {
  margin-top: 8px;
  border-top: 1px solid var(--line);
}

.summary-line strong {
  font-size: 1.18rem;
}

.summary-note,
.checkout-message {
  color: var(--muted);
  font-size: 0.76rem;
}

.terms-check {
  display: grid !important;
  grid-template-columns: 18px 1fr;
  gap: 10px !important;
  align-items: start;
  padding: 12px;
  margin: 12px 0;
  color: var(--muted) !important;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 0.72rem !important;
  font-weight: 550 !important;
  line-height: 1.45;
}

.terms-check input {
  width: 18px;
  min-height: 18px;
  margin-top: 1px;
  accent-color: var(--navy);
}

.terms-check a,
.form-consent a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.checkout-button {
  width: 100%;
}

.cart-summary > .text-button {
  display: flex;
  margin: 12px auto 0;
}

.checkout-message {
  margin: 12px 0 0;
  color: var(--red-dark);
}

/* Global search */

.search-dialog {
  width: min(720px, calc(100vw - 32px));
  max-height: min(760px, calc(100dvh - 32px));
  padding: 26px;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 28px 90px rgba(2, 13, 32, 0.32);
}

.search-dialog::backdrop {
  background: rgba(2, 13, 32, 0.58);
}

.global-search-field {
  display: block;
  margin: 22px 0 14px;
}

.global-search-field input {
  min-height: 54px;
  font-size: 1rem;
}

.global-search-results {
  display: grid;
  max-height: 470px;
  overflow: auto;
}

.search-result {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.search-result:hover {
  background: var(--soft);
}

.search-result img {
  width: 70px;
  height: 70px;
  object-fit: cover;
}

.search-result > span {
  display: grid;
}

.search-result strong {
  color: var(--navy);
}

.search-result small {
  color: var(--muted);
}

.search-result em {
  padding-right: 6px;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 750;
}

.search-result em.is-in,
.search-result em.is-low {
  color: var(--green);
}

.search-result em.is-out {
  color: var(--muted);
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  max-width: min(380px, calc(100vw - 32px));
  padding: 13px 16px;
  color: var(--white);
  background: var(--navy);
  border-left: 4px solid var(--cyan);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Content, contact and legal pages */

.content-page {
  background: var(--soft);
}

.page-heading {
  padding-block: 72px 64px;
  color: var(--white);
  background: var(--navy-deep);
}

.narrow-container {
  max-width: 920px;
}

.page-heading h1 {
  max-width: 820px;
  color: var(--white);
  font-size: clamp(2.55rem, 5vw, 4.8rem);
}

.page-heading > .container > p:not(.kicker) {
  max-width: 690px;
  margin: 22px 0 0;
  color: #b8c5d7;
  font-size: 1.08rem;
}

.form-section {
  padding-block: 76px 96px;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(38px, 7vw, 90px);
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 0;
  padding-top: 4px;
}

.contact-details > div {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-top: 1px solid var(--line-strong);
}

.contact-details > div:last-of-type {
  border-bottom: 1px solid var(--line-strong);
}

.contact-details span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  text-transform: uppercase;
}

.contact-details a,
.contact-details strong {
  color: var(--navy);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.contact-details > p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.customer-form {
  display: grid;
  gap: 20px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

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

.customer-form > label,
.form-grid label {
  display: grid;
  gap: 7px;
  color: #475467;
  font-size: 0.78rem;
  font-weight: 750;
}

.customer-form label small {
  color: var(--muted);
  font-weight: 550;
}

.customer-form input:not([type="checkbox"]):not([type="radio"]),
.customer-form textarea {
  width: 100%;
  padding: 11px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 5px;
}

.customer-form input:not([type="checkbox"]):not([type="radio"]) {
  min-height: 46px;
}

.customer-form textarea {
  resize: vertical;
}

.customer-form input:focus,
.customer-form textarea:focus {
  border-color: var(--cyan-dark);
}

.form-consent {
  grid-template-columns: 18px 1fr !important;
  gap: 10px !important;
  align-items: start;
  font-size: 0.72rem !important;
  font-weight: 550 !important;
  line-height: 1.5;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--navy);
}

.form-trap {
  position: absolute !important;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.customer-form > .button {
  justify-self: start;
}

.form-status {
  min-height: 1.5em;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.form-status.is-success {
  color: var(--green);
}

.form-status.is-error {
  color: var(--red-dark);
}

[data-language-panel] {
  display: none;
}

html[lang="de"] [data-language-panel="de"],
html[lang="fr"] [data-language-panel="fr"],
html[lang="it"] [data-language-panel="it"],
html[lang="en"] [data-language-panel="en"] {
  display: block;
}

.legal-heading {
  padding-bottom: 54px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: start;
  padding-block: 68px 100px;
}

.legal-sidebar {
  position: sticky;
  top: 104px;
}

.legal-sidebar nav {
  display: grid;
  border-top: 1px solid var(--line-strong);
}

.legal-sidebar nav a {
  padding: 12px 0;
  color: var(--navy);
  border-bottom: 1px solid var(--line-strong);
  font-size: 0.8rem;
  font-weight: 720;
}

.legal-sidebar nav a:hover {
  color: var(--cyan-dark);
}

.legal-warning {
  padding: 14px;
  margin-top: 22px;
  color: #7a4c00;
  background: var(--amber-soft);
  border-left: 3px solid var(--amber);
  font-size: 0.72rem;
}

.legal-document {
  min-width: 0;
}

.legal-section {
  scroll-margin-top: 98px;
  padding: 0 0 58px;
}

.legal-section + .legal-section {
  padding-top: 58px;
  border-top: 1px solid var(--line-strong);
}

.legal-section h2 {
  margin-bottom: 28px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.legal-section h3 {
  margin-top: 30px;
  font-size: 1rem;
}

.legal-section p {
  margin: 10px 0 0;
  color: #526176;
  font-size: 0.9rem;
}

.legal-version {
  margin: -18px 0 28px !important;
  color: var(--muted) !important;
  font-size: 0.75rem !important;
}

.legal-alert {
  padding: 18px;
  margin-bottom: 28px;
  color: #7a4c00;
  background: var(--amber-soft);
  border: 1px solid #efd6a6;
  border-left: 4px solid var(--amber);
}

.legal-alert strong {
  display: block;
  margin-bottom: 4px;
}

.legal-alert p {
  margin: 0;
  color: inherit;
}

.legal-facts,
.shipping-table {
  border-top: 1px solid var(--line-strong);
}

.legal-facts > div,
.shipping-table > div {
  display: grid;
  grid-template-columns: minmax(130px, 0.4fr) minmax(0, 1fr);
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-strong);
}

.legal-facts dt,
.shipping-table span {
  color: var(--muted);
  font-size: 0.76rem;
}

.legal-facts dd,
.shipping-table strong {
  margin: 0;
  color: var(--navy);
  font-size: 0.84rem;
  overflow-wrap: anywhere;
}

.legal-review-note {
  padding: 18px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 0.76rem;
}

/* Footer and result pages */

.site-footer {
  color: #c1cada;
  background: var(--navy-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-layout {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  min-height: 128px;
  padding-block: 28px;
}

.footer-identity {
  display: grid;
  gap: 10px;
  min-width: 250px;
}

.footer-brand > img {
  background: #0a234a;
}

.footer-brand > span {
  display: grid;
}

.footer-brand strong {
  color: var(--white);
}

.footer-brand small {
  color: #8ea0ba;
}

.footer-address {
  display: grid;
  gap: 2px;
  padding-left: 58px;
  color: #8ea0ba;
  font-size: 0.72rem;
  font-style: normal;
  line-height: 1.45;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
  font-size: 0.8rem;
}

.footer-links a:hover {
  color: var(--white);
}

.payment-result {
  display: grid;
  min-height: 100dvh;
  place-items: center;
  padding: 32px 0;
  background: var(--soft);
}

.payment-result .container {
  max-width: 680px;
  padding: 48px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.payment-result p:not(.kicker):not(.eyebrow) {
  margin: 20px 0 26px;
  color: var(--muted);
}

.payment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--cyan-dark);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.noscript {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 100;
  padding: 12px;
  color: var(--white);
  background: var(--red-dark);
}

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

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav.is-open {
    display: block;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.78fr);
    gap: 40px;
  }

  .hero::before {
    inset: 0 0 0 58%;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-layout {
    gap: 44px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid > div:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .trust-grid > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 780px) {
  .container {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .header-inner {
    gap: 10px;
    min-height: 66px;
  }

  .site-header {
    min-height: 66px;
  }

  .brand-name {
    font-size: 1.08rem;
  }

  .brand > img {
    width: 38px;
    height: 38px;
  }

  .header-tool span:last-child {
    display: none;
  }

  .header-tool {
    width: 42px;
    justify-content: center;
    background: var(--soft);
  }

  .cart-button {
    padding-left: 10px;
  }

  .cart-button > span {
    display: none;
  }

  .hero::before {
    display: none;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: 0;
    padding-block: 42px 50px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-visual {
    width: min(84%, 380px);
    min-height: 0;
    justify-self: center;
  }

  .delivery-zones {
    margin-top: 34px;
  }

  .finder-section,
  .featured-section,
  .results-section,
  .related-section,
  .brand-story,
  .service-band {
    padding-block: 60px;
  }

  .finder-topline,
  .section-heading {
    align-items: flex-start;
  }

  .finder-topline {
    display: grid;
  }

  .finder-progress {
    justify-self: start;
  }

  .finder-step {
    padding: 24px;
  }

  .brand-options,
  .category-options {
    grid-template-columns: 1fr;
  }

  .model-toolbar {
    grid-template-columns: 1fr;
  }

  .stock-toggle {
    white-space: normal;
  }

  .service-layout,
  .story-layout,
  .product-detail-layout,
  .form-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .service-layout {
    gap: 34px;
  }

  .story-layout,
  .product-detail-layout {
    gap: 36px;
  }

  .legal-sidebar {
    position: static;
  }

  .legal-sidebar nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 18px;
  }

  .product-detail-layout {
    padding-block: 24px 56px;
  }

  .product-detail-gallery {
    max-width: 590px;
    margin-inline: auto;
  }
}

@media (max-width: 540px) {
  h1 {
    font-size: 2.72rem;
  }

  h2 {
    font-size: 2rem;
  }

  .swiss-mark {
    display: none;
  }

  .header-actions {
    gap: 5px;
  }

  .header-language {
    display: none;
  }

  .mobile-language {
    display: block;
    padding: 8px 12px 12px;
    border-bottom: 1px solid var(--line);
  }

  .mobile-language .language-picker,
  .mobile-language .language-picker select {
    width: 100%;
  }

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

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .delivery-zones {
    width: calc(100% - 146px);
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .hero-layout {
    display: block;
    padding-block: 42px 30px;
  }

  .hero-visual {
    position: absolute;
    right: 0;
    bottom: 10px;
    width: 128px;
    min-height: 0;
  }

  .finder-progress {
    width: 100%;
    gap: 8px;
    justify-content: space-between;
  }

  .finder-progress li {
    min-width: 62px;
  }

  .finder-step {
    padding: 22px 16px;
  }

  .finder-selection {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px;
  }

  .brand-option,
  .category-option {
    min-height: 112px;
    grid-template-columns: 76px 1fr;
    gap: 12px;
    padding: 12px;
  }

  .brand-logo-wrap,
  .category-visual {
    width: 76px;
    height: 76px;
  }

  .brand-logo-wrap img {
    width: 50px;
  }

  .model-grid,
  .product-grid,
  .service-points {
    grid-template-columns: 1fr;
  }

  .model-option {
    min-height: 84px;
  }

  .product-body {
    min-height: 222px;
  }

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

  .section-heading .button {
    width: 100%;
  }

  .service-points article {
    padding: 18px 0;
  }

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

  .trust-grid > div {
    padding: 18px 0;
    border-right: 0 !important;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .trust-grid > div:first-child {
    border-top: 0;
  }

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

  .customer-form {
    padding: 24px 18px;
  }

  .customer-form > .button {
    width: 100%;
  }

  .legal-sidebar nav {
    grid-template-columns: 1fr;
  }

  .legal-facts > div,
  .shipping-table > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .story-copy h2 br {
    display: none;
  }

  .product-detail-copy h1 {
    font-size: 2.35rem;
  }

  .detail-buy-row {
    grid-template-columns: 84px 1fr;
  }

  .product-facts div {
    grid-template-columns: 94px 1fr;
  }

  .cart-drawer {
    padding: 20px 16px;
  }

  .cart-line {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .cart-line > img {
    width: 74px;
    height: 74px;
  }

  .search-dialog {
    width: calc(100vw - 20px);
    padding: 20px 14px;
  }

  .search-result {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .search-result img {
    width: 58px;
    height: 58px;
  }

  .search-result em {
    grid-column: 2;
  }

  .footer-layout,
  .footer-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    gap: 10px;
  }

  .payment-result .container {
    padding: 32px 22px;
  }
}

@media (min-width: 700px) and (max-width: 780px) {
  .hero::before {
    display: block;
    inset: 0 0 0 62%;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(250px, 0.7fr);
    gap: 28px;
    min-height: 530px;
    padding-block: 42px;
  }

  .hero-copy h1 {
    font-size: 3.55rem;
  }

  .hero-lead {
    margin-block: 18px 22px;
  }

  .hero-visual {
    width: 100%;
    min-height: 0;
  }

  .delivery-zones {
    margin-top: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
