﻿:root {
  --white: #ffffff;
  --darkgrey: #212121;
  --blue: #0d5578;
  --blue-deep: #093b54;
  --lightblue: #eef7fc;
  --orange: #ff8264;
  --orange-deep: #e36648;
  --lightorange: #fbf2ef;
  --grey: #686868;
  --light-grey: #e9e9e9;
  --jost: "Jost", sans-serif;
  --dm-sans: "DM Sans", sans-serif;
  --container: 1240px;
  --sticky-header-offset: 104px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  color-scheme: only light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--dm-sans);
  color: var(--darkgrey);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.topbar {
  display: flex;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  background: var(--darkgrey);
  color: var(--white);
}

.topbar-link {
  text-align: center;
  color: #ffb18c;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.topbar-link:hover {
  color: #ffd5c4;
}

.site-header,
.section,
.site-footer-inner {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 950;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo-wide,
.footer-logo-wide {
  width: 243px;
  height: auto;
}

.site-nav,
.header-actions,
.hero-actions,
.hero-pills,
.category-filters {
  display: flex;
  gap: 1rem;
}

.site-nav {
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--grey);
  font-size: 1.05rem;
}

.header-actions,
.hero-actions,
.hero-pills,
.category-filters {
  align-items: center;
  flex-wrap: wrap;
}

.header-actions > .ghost-button,
.header-actions > .solid-button {
  padding: 8px 15px;
}

.site-search {
  position: relative;
  flex: 1 1 250px;
  min-width: 230px;
  max-width: 390px;
}

.site-search-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-search-field {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) 36px;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  border: 1px solid rgba(13, 85, 120, 0.14);
  border-radius: 999px;
  padding: 0.25rem 0.28rem 0.25rem 0.85rem;
  background: var(--white);
  box-shadow: 0 12px 26px rgba(8, 47, 67, 0.07);
}

.site-search-field:focus-within {
  border-color: rgba(13, 85, 120, 0.34);
  box-shadow: 0 0 0 4px rgba(13, 85, 120, 0.08), 0 14px 28px rgba(8, 47, 67, 0.1);
}

.site-search-leading-icon,
.site-search-submit {
  color: var(--blue);
}

.site-search-leading-icon svg,
.site-search-submit svg {
  display: block;
  width: 18px;
  height: 18px;
}

.site-search input {
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--darkgrey);
  font-size: 0.92rem;
  font-weight: 700;
  outline: 0;
}

.site-search input::placeholder {
  color: #7f8b91;
  opacity: 1;
}

.site-search-submit {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(13, 85, 120, 0.08);
  cursor: pointer;
}

.site-search-submit:hover {
  background: var(--blue);
  color: var(--white);
}

.site-search-results {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  right: 0;
  z-index: 980;
  overflow: hidden;
  border: 1px solid rgba(13, 85, 120, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 54px rgba(8, 47, 67, 0.18);
}

.site-search-results-heading {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.72rem 0.9rem;
  border-bottom: 1px solid rgba(13, 85, 120, 0.08);
  color: var(--grey);
  font-size: 0.78rem;
  font-weight: 800;
}

.site-search-results-heading strong {
  color: var(--blue);
}

.site-search-result-list {
  display: grid;
  max-height: 420px;
  overflow: auto;
}

.site-search-result {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 0.7rem;
  padding: 0.72rem 0.9rem;
  border-bottom: 1px solid rgba(13, 85, 120, 0.07);
  color: var(--darkgrey);
}

.site-search-result:hover {
  background: rgba(238, 247, 252, 0.76);
}

.site-search-result-thumb {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: var(--lightblue);
  color: var(--blue);
  font-family: var(--jost);
  font-size: 0.84rem;
  font-weight: 800;
}

.site-search-result-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-search-result-copy {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.site-search-result-copy strong,
.site-search-result-copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-search-result-copy strong {
  font-family: var(--jost);
  font-size: 0.95rem;
  line-height: 1.2;
}

.site-search-result-copy small {
  color: var(--grey);
  font-size: 0.78rem;
  font-weight: 700;
}

.site-search-result-arrow {
  color: var(--orange-deep);
  font-size: 1.45rem;
  line-height: 1;
}

.site-search-all-results,
.site-search-status {
  display: grid;
  gap: 0.2rem;
  padding: 0.8rem 0.95rem;
}

.site-search-all-results {
  background: rgba(13, 85, 120, 0.07);
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 800;
}

.site-search-status strong {
  font-family: var(--jost);
  font-size: 0.98rem;
}

.site-search-status span {
  color: var(--grey);
  font-size: 0.84rem;
  line-height: 1.45;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(33, 33, 33, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
}

.language-switcher-button {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  min-height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--grey);
  font-family: var(--dm-sans);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.language-switcher-button:hover {
  color: var(--orange-deep);
}

.language-switcher-button.is-active {
  background: var(--darkgrey);
  color: var(--white);
}

.language-switcher--mobile {
  width: 100%;
  justify-content: space-between;
  margin: 0 0 1rem;
  padding: 6px;
}

.language-switcher--mobile .language-switcher-button {
  flex: 1 1 0;
  min-height: 38px;
}

.solid-button,
.ghost-button,
.filter-button {
  border-radius: 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  font-family: var(--dm-sans);
  padding: 16px 30px;
  transition: all 0.25s ease;
  width: max-content;
  border: 1px solid transparent;
  cursor: pointer;
}

.solid-button {
  background-color: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(255, 130, 100, 0.24);
}

.solid-button:hover {
  background-color: var(--orange-deep);
}

.ghost-button,
.filter-button {
  background-color: var(--white);
  color: var(--darkgrey);
  border-color: rgba(33, 33, 33, 0.14);
}

.ghost-button:hover,
.filter-button:hover {
  background-color: var(--white);
  border-color: var(--orange);
  color: var(--orange-deep);
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid rgba(13, 85, 120, 0.14);
  border-radius: 999px;
  padding: 10px 13px;
  background: var(--white);
  color: var(--darkgrey);
  font: inherit;
  font-size: 0.96rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.cart-button:hover,
.cart-button.has-items {
  border-color: rgba(13, 85, 120, 0.24);
  background: var(--lightblue);
  color: var(--blue);
}

.cart-icon,
.account-icon-button {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

.cart-icon {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  background: rgba(13, 85, 120, 0.08);
  color: var(--blue);
}

.cart-icon svg,
.account-icon-button svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-button-copy {
  display: grid;
  gap: 0.05rem;
  text-align: left;
  line-height: 1.1;
}

.cart-button-label {
  font-size: 0.92rem;
}

.cart-button-total {
  color: var(--grey);
  font-size: 0.78rem;
  font-weight: 700;
}

.cart-button.has-items .cart-button-total,
.cart-button:hover .cart-button-total {
  color: var(--blue);
}

.cart-count {
  display: inline-grid;
  min-width: 1.55rem;
  height: 1.55rem;
  place-items: center;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.78rem;
  line-height: 1;
}

.account-icon-button {
  width: 3.55rem;
  height: 3.55rem;
  border: 1px solid rgba(13, 85, 120, 0.16);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 12px 28px rgba(13, 85, 120, 0.08);
  transition: all 0.25s ease;
}

.account-icon-button:hover {
  border-color: rgba(13, 85, 120, 0.28);
  background: var(--lightblue);
  color: var(--blue);
  transform: translateY(-1px);
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(13, 85, 120, 0.16);
  border-radius: 999px;
  padding: 0;
  background: var(--white);
  color: var(--darkgrey);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(13, 85, 120, 0.08);
}

.mobile-menu-toggle-icon {
  display: grid;
  gap: 4px;
  width: 18px;
}

.mobile-menu-toggle-icon span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-menu-drawer {
  position: fixed;
  inset: 0;
  z-index: 1010;
  pointer-events: none;
}

.mobile-menu-drawer.is-visible {
  pointer-events: auto;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 24, 31, 0.46);
  opacity: 0;
  transition: opacity 0.18s ease;
}

.mobile-menu-drawer.is-visible .mobile-menu-backdrop {
  opacity: 1;
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 390px);
  height: 100%;
  overflow: auto;
  padding: 28px;
  border-radius: 28px 0 0 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: -28px 0 60px rgba(0, 0, 0, 0.18);
  transform: translateX(100%);
  transition: transform 0.22s ease;
}

.mobile-menu-drawer.is-visible .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.mobile-menu-top h2 {
  margin: 0;
  font-family: var(--jost);
  font-size: 1.8rem;
  font-weight: 600;
}

.mobile-menu-close {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: #f3f5f6;
  color: var(--darkgrey);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.mobile-menu-list {
  display: grid;
  gap: 0.55rem;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  border: 1px solid rgba(13, 85, 120, 0.08);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  background: #f8fbfd;
  color: var(--darkgrey);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.mobile-menu-link--highlight {
  background: var(--blue);
  color: var(--white);
}

.mobile-menu-cart-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 800;
}

.mobile-menu-link--highlight .mobile-menu-cart-meta {
  color: var(--white);
}

.section {
  padding: 0 0 80px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.section-kicker--light {
  color: #ffb18c;
}

.home-hero {
  position: relative;
  min-height: clamp(390px, 32vw, 460px);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  overflow: hidden;
  isolation: isolate;
}

.home-hero.is-sleep-slide {
  overflow: visible;
}

.hero-slides {
  position: relative;
  z-index: 1;
}

.hero-slide {
  position: relative;
  min-height: inherit;
}

.hero-slide[hidden] {
  display: none;
}

.hero-copy h1 {
  margin: 0 0 1.5rem;
  max-width: 15ch;
  text-wrap: balance;
  font-family: var(--jost);
  font-size: clamp(3rem, 4.6vw, 4.15rem);
  font-weight: 600;
  line-height: 1.08;
}

.hero-copy h1 span {
  color: var(--orange);
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  min-height: clamp(320px, 27vw, 390px);
  max-width: min(100%, 46rem);
  padding: 0.25rem 0 0.5rem;
}

.hero-lead {
  max-width: 56ch;
  margin: 0 0 2rem;
  font-size: 1.12rem;
  line-height: 1.85;
  color: var(--grey);
}

.hero-pills {
  margin-top: 2rem;
}

.hero-pills span {
  border: 1px solid rgba(13, 85, 120, 0.12);
  border-radius: 999px;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--grey);
  font-size: 0.94rem;
  backdrop-filter: blur(10px);
}
.hero-note {
  margin: 0.95rem 0 0;
  color: var(--grey);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
}

.hero-figure {
  position: absolute;
  inset: 0 0 0 clamp(21rem, 35vw, 33rem);
  z-index: 1;
  overflow: hidden;
  border-radius: 0;
  padding: 0;
  background: none;
  box-shadow: none;
}

.hero-figure::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.985) 0%, rgba(255, 255, 255, 0.96) 16%, rgba(255, 255, 255, 0.84) 32%, rgba(255, 255, 255, 0.58) 46%, rgba(255, 255, 255, 0.22) 63%, rgba(255, 255, 255, 0.04) 78%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.hero-figure img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  border-radius: 0;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.96) brightness(1.03);
}

.hero-figure--sell img {
  object-position: 58% center;
}

.hero-figure--new img {
  object-position: 42% center;
}

.hero-carousel-controls {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.hero-carousel-arrow,
.hero-carousel-dot {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--blue);
  cursor: pointer;
}

.hero-carousel-arrow {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(13, 85, 120, 0.12);
  font-size: 1.55rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 32px rgba(8, 47, 67, 0.12);
  pointer-events: auto;
  transform: translateY(-50%);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.hero-carousel-arrow[data-hero-prev] {
  left: clamp(0.45rem, 1.2vw, 0.95rem);
}

.hero-carousel-arrow[data-hero-next] {
  right: clamp(0.45rem, 1.2vw, 0.95rem);
}

.hero-carousel-arrow:hover {
  background: rgba(13, 85, 120, 0.09);
  color: var(--orange-deep);
  transform: translateY(-50%) scale(1.04);
}

.hero-carousel-dots {
  position: absolute;
  right: clamp(1rem, 3vw, 2.2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.62rem 0.78rem;
  border: 1px solid rgba(13, 85, 120, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 32px rgba(8, 47, 67, 0.08);
  pointer-events: auto;
}

.hero-carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  background: rgba(13, 85, 120, 0.24);
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-carousel-dot.is-active {
  width: 28px;
  background: var(--orange);
}

.hero-carousel-dot:focus-visible,
.hero-carousel-arrow:focus-visible {
  outline: 3px solid rgba(255, 125, 97, 0.32);
  outline-offset: 3px;
}

.trust-strip {
  padding-top: 8px;
}

.trust-strip-inner {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 42px;
  background: linear-gradient(135deg, #093b54 0%, #0a4d6d 58%, #082f43 100%);
  box-shadow: 0 24px 60px rgba(8, 47, 67, 0.18);
}

.trust-strip-inner::before,
.trust-strip-inner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.trust-strip-inner::before {
  width: 240px;
  height: 240px;
  top: -110px;
  right: -70px;
  background: radial-gradient(circle, rgba(255, 170, 120, 0.2) 0%, rgba(255, 170, 120, 0) 70%);
}

.trust-strip-inner::after {
  width: 180px;
  height: 180px;
  left: -80px;
  bottom: -90px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 72%);
}

.trust-strip-copy,
.trust-strip-stats {
  position: relative;
  z-index: 1;
}

.trust-strip-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffb18c;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.trust-strip-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.trust-strip-heading {
  display: flex;
  align-items: flex-start;
  gap: 28px;
}

.trust-strip-number {
  flex: 0 0 auto;
  color: var(--orange);
  font-family: var(--jost);
  font-size: 82px;
  line-height: 0.9;
  font-weight: 700;
}

.trust-strip-heading-copy h2 {
  margin: 0 0 8px;
  font-family: var(--jost);
  font-size: 40px;
  line-height: 1.16;
  color: var(--white);
}

.trust-strip-heading-copy p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 32px;
}
.trust-strip-actions {
  margin-top: 24px;
}

.trust-strip-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  transition: all 0.25s ease;
}

.trust-strip-button:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

.trust-strip-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.trust-strip-stat {
  min-height: 164px;
  border-radius: 22px;
  padding: 26px 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.09);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.trust-strip-stat-value {
  color: var(--blue);
  font-family: var(--jost);
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
}

.trust-strip-stat-label {
  color: var(--darkgrey);
  font-size: 18px;
  line-height: 1.45;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.terms-card h1 {
  margin: 0;
  max-width: 640px;
  font-family: var(--jost);
  font-size: 36px;
  font-weight: 600;
  line-height: 46px;
}

.section-heading > p,
.terms-card > p,
.terms-card li,
.form-note,
.login-copy p {
  color: var(--grey);
  line-height: 1.8;
}
.form-note--success {
  color: #2f8f4e;
  font-weight: 600;
}

.form-note--error {
  color: #b42318;
  font-weight: 600;
}

button[disabled] {
  cursor: not-allowed;
  opacity: 0.72;
}
.section-heading > p {
  max-width: 40ch;
  margin: 0;
}

.section-heading-action {
  flex: 0 0 auto;
  white-space: nowrap;
}

.benefits-grid,
.product-grid,
.account-layout,
.steps {
  display: grid;
  gap: 24px;
}

.benefits-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-card,
.product-card,
.registration-form,
.login-form,
.step-card,
.terms-card {
  border: 1px solid var(--light-grey);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.benefit-card,
.step-card,
.terms-card {
  padding: 30px;
}

.benefit-card h3,
.product-card h3,
.account-info-card h3,
.step-card h3,
.login-copy h3,
.site-footer h3 {
  margin: 0 0 0.8rem;
  font-family: var(--jost);
  font-size: 1.45rem;
  font-weight: 600;
}

.benefit-card p,
.step-card p,
.product-meta,
.account-info-card li {
  color: var(--grey);
  line-height: 1.75;
  margin: 0;
}

.section-soft {
  padding: 28px clamp(1.5rem, 2.8vw, 2.75rem) 56px;
  border-radius: 28px;
  background: var(--lightblue);
}

.catalog-page-main {
  padding-top: 22px;
}

.catalog-page {
  min-height: 60vh;
}

.catalog-heading {
  align-items: center;
}

.catalog-heading-copy {
  max-width: 760px;
}

.catalog-heading h1 {
  margin: 0;
  max-width: 640px;
  font-family: var(--jost);
  font-size: 44px;
  font-weight: 600;
  line-height: 1.05;
}

.catalog-heading p {
  max-width: 56ch;
  margin: 0.65rem 0 0;
  color: var(--grey);
  line-height: 1.75;
}

.catalog-intro {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.catalog-intro p {
  margin: 0;
}

.search-page-main {
  padding-top: 2rem;
}

.search-page {
  display: grid;
  gap: 1.1rem;
}

.search-heading {
  margin-bottom: 0;
}

.search-page-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 0.9rem;
  border: 1px solid rgba(13, 85, 120, 0.1);
  border-radius: 22px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 40px rgba(8, 47, 67, 0.08);
}

.search-page-field input {
  min-height: 54px;
  box-shadow: none;
}

.search-page-filter-button {
  min-height: 54px;
  box-shadow: none;
}

.search-page-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(13, 85, 120, 0.1);
  padding: 0.35rem 0 0.9rem;
}

.search-page-summary .section-kicker {
  margin: 0;
}

.search-page-summary strong {
  color: var(--blue);
  font-family: var(--jost);
  font-size: 1rem;
}

.catalog-sticky-filter-bar {
  position: sticky;
  top: 14px;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin: -0.45rem 0 1.2rem;
  pointer-events: none;
}

.catalog-search-field {
  display: grid;
  gap: 0.35rem;
  color: var(--grey);
  font-size: 0.78rem;
  font-weight: 800;
}

.catalog-search-field span {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-search-field input {
  width: 100%;
  border: 1px solid rgba(13, 85, 120, 0.14);
  border-radius: 999px;
  padding: 0.88rem 1rem;
  background: var(--white);
  color: var(--darkgrey);
  font: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  outline: none;
  box-shadow: 0 12px 26px rgba(8, 47, 67, 0.08);
}

.catalog-search-field input:focus {
  border-color: rgba(13, 85, 120, 0.36);
  box-shadow: 0 0 0 4px rgba(13, 85, 120, 0.08);
}

.catalog-search-field--sticky {
  width: min(560px, 68vw);
  pointer-events: auto;
}

.catalog-search-field--menu {
  margin-bottom: 0;
}

.catalog-menu-sticky-header {
  position: sticky;
  top: 0;
  z-index: 8;
  display: grid;
  gap: 1rem;
  margin: -32px -32px 1.35rem;
  padding: 32px 32px 1.05rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.99) 82%, rgba(255, 255, 255, 0.9) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(13, 85, 120, 0.08);
}

.catalog-menu-sticky-tools {
  display: grid;
  gap: 0.8rem;
}

.catalog-menu-result-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  border: 1px solid rgba(13, 85, 120, 0.1);
  border-radius: 18px;
  padding: 0.55rem 0.65rem 0.55rem 0.9rem;
  background: rgba(238, 247, 252, 0.92);
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 800;
}

.catalog-menu-result-bar strong {
  font-family: var(--jost);
  font-size: 1.1rem;
}

.catalog-menu-show-button {
  min-height: 38px;
  border-radius: 999px;
  padding: 0.55rem 1rem;
}

.catalog-menu-button {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid rgba(13, 85, 120, 0.16);
  border-radius: 999px;
  padding: 0.85rem 1.15rem;
  background: var(--white);
  color: var(--darkgrey);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 12px 26px rgba(8, 47, 67, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.catalog-menu-button:hover {
  border-color: rgba(13, 85, 120, 0.3);
  box-shadow: 0 16px 32px rgba(8, 47, 67, 0.12);
  transform: translateY(-1px);
}

.catalog-menu-icon {
  display: grid;
  gap: 4px;
  width: 18px;
}

.catalog-menu-icon span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.catalog-menu-drawer {
  position: fixed;
  inset: 0;
  z-index: 1005;
  pointer-events: none;
}

.catalog-menu-drawer.is-visible {
  pointer-events: auto;
}

.catalog-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 24, 31, 0.46);
  opacity: 0;
  transition: opacity 0.18s ease;
}

.catalog-menu-drawer.is-visible .catalog-menu-backdrop {
  opacity: 1;
}

.catalog-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 520px);
  height: 100%;
  overflow: auto;
  padding: 32px;
  border-radius: 28px 0 0 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: -28px 0 60px rgba(0, 0, 0, 0.18);
  transform: translateX(100%);
  transition: transform 0.22s ease;
}

.catalog-menu-drawer.is-visible .catalog-menu-panel {
  transform: translateX(0);
}

.catalog-menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0;
}

.catalog-menu-top h2 {
  margin: 0;
  font-family: var(--jost);
  font-size: 2rem;
  font-weight: 600;
}

.catalog-menu-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.catalog-menu-round-link,
.catalog-menu-close {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: #f3f5f6;
  color: var(--darkgrey);
  cursor: pointer;
}

.catalog-menu-round-link svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.catalog-menu-close {
  font-size: 2rem;
  line-height: 1;
}

.catalog-menu-kicker {
  margin: 0 0 1.2rem;
  color: #777;
  font-family: var(--jost);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.catalog-category-list {
  display: grid;
  gap: 0.15rem;
}

.catalog-filter-group {
  display: grid;
  gap: 0.15rem;
}

.catalog-filter-option {
  position: relative;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.55rem;
  min-height: 34px;
  border-bottom: 1px solid rgba(13, 85, 120, 0.08);
  border-radius: 10px;
  padding: 0.45rem 0.55rem;
  background: transparent;
  color: var(--darkgrey);
  font-family: var(--jost);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.catalog-filter-option:hover {
  background: rgba(13, 85, 120, 0.06);
}

.catalog-filter-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.catalog-filter-checkbox {
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(13, 85, 120, 0.24);
  border-radius: 5px;
  background: var(--white);
  box-shadow: inset 0 0 0 2px var(--white);
}

.catalog-filter-option input:checked + .catalog-filter-checkbox,
.catalog-filter-option input:indeterminate + .catalog-filter-checkbox {
  background: var(--blue);
  border-color: var(--blue);
}

.catalog-filter-option input:checked + .catalog-filter-checkbox::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.catalog-filter-option input:indeterminate + .catalog-filter-checkbox::after {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  top: 6px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
}

.catalog-filter-label {
  overflow: hidden;
  text-overflow: ellipsis;
}

.catalog-filter-count {
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
}

.catalog-filter-children {
  display: grid;
  gap: 0.15rem;
  margin-left: 0.65rem;
  padding-left: 0.65rem;
  border-left: 1px solid rgba(13, 85, 120, 0.12);
}

.catalog-filter-option--depth-1 {
  color: var(--grey);
  font-weight: 600;
}

.catalog-filter-option--depth-2,
.catalog-filter-option--depth-3 {
  color: #667780;
  font-weight: 500;
}

.catalog-advanced-filters {
  display: grid;
  gap: 1.35rem;
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(13, 85, 120, 0.1);
}

.catalog-filter-block {
  display: grid;
  gap: 0.75rem;
}

.catalog-filter-list {
  display: grid;
  gap: 0.15rem;
}

.catalog-filter-list--brands {
  max-height: 260px;
  overflow: auto;
  padding-right: 0.25rem;
}

.catalog-filter-option--compact,
.catalog-filter-option--standalone {
  border: 1px solid rgba(13, 85, 120, 0.08);
  background: rgba(248, 251, 253, 0.75);
}

.catalog-filter-empty,
.catalog-filter-note {
  margin: 0;
  color: var(--grey);
  font-size: 0.82rem;
  line-height: 1.5;
}

.catalog-select,
.catalog-price-filter input {
  width: 100%;
  border: 1px solid rgba(13, 85, 120, 0.14);
  border-radius: 14px;
  padding: 0.74rem 0.85rem;
  background: var(--white);
  color: var(--darkgrey);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
}

.catalog-price-filter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.catalog-price-filter label {
  display: grid;
  gap: 0.35rem;
  color: var(--grey);
  font-size: 0.78rem;
  font-weight: 800;
}

.catalog-advanced-filters[data-price-disabled] .catalog-price-filter {
  opacity: 0.48;
}

.catalog-price-login-note {
  display: none;
}

.catalog-advanced-filters[data-price-disabled] .catalog-price-login-note {
  display: block;
}

.catalog-watch-panel {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.25rem;
  border: 1px solid rgba(13, 85, 120, 0.1);
  border-radius: 18px;
  padding: 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.catalog-watch-panel h3 {
  margin: 0;
  font-family: var(--jost);
  font-size: 1.1rem;
  line-height: 1.2;
}

.catalog-watch-panel p:not(.catalog-menu-kicker) {
  margin: 0;
  color: var(--grey);
  font-size: 0.88rem;
  line-height: 1.55;
}

.catalog-watch-button {
  width: 100%;
  min-height: 44px;
  padding: 0.7rem 1rem;
}

.catalog-watch-status,
.product-watch-status {
  min-height: 1.2rem;
  margin: 0;
  color: var(--grey);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
}

.catalog-watch-status.is-success,
.product-watch-status.is-success {
  color: #2f8f4e;
}

.catalog-watch-status.is-error,
.product-watch-status.is-error {
  color: var(--orange-deep);
}

.filter-button {
  background: var(--white);
  border-color: rgba(13, 85, 120, 0.12);
}

.filter-button.is-active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  container-type: inline-size;
  display: grid;
  gap: 1rem;
  padding: 24px;
}

.product-card-header {
  display: grid;
  gap: 0.7rem;
  align-items: start;
}

.product-badge,
.stock-badge {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 500;
}

.product-badge {
  background: var(--lightorange);
  color: var(--orange-deep);
}

.stock-badge {
  background: rgba(13, 85, 120, 0.08);
  color: var(--blue);
}

.volume-badge,
.product-new-login-badge {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 0.36rem 0.66rem;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
}

.volume-badge--urgent {
  background: rgba(255, 119, 93, 0.15);
  color: var(--orange-deep);
}

.volume-badge--low {
  background: rgba(241, 163, 44, 0.16);
  color: #a4620c;
}

.volume-badge--limited {
  background: rgba(13, 85, 120, 0.08);
  color: var(--blue);
}

.product-new-login-badge {
  background: rgba(47, 143, 78, 0.12);
  color: #2f8f4e;
}

.stock-info {
  display: grid;
  justify-items: end;
  gap: 0.35rem;
  flex: 0 0 auto;
}

.product-card-stock-info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.product-detail-stock-info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin: -0.2rem 0 0.1rem;
}

.product-watch-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-top: -0.15rem;
}

.product-watch-button {
  border: 1px solid rgba(13, 85, 120, 0.12);
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  background: var(--white);
  color: var(--blue);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.product-watch-button:hover {
  border-color: rgba(13, 85, 120, 0.28);
  transform: translateY(-1px);
}

.product-watch-actions .product-watch-status {
  flex-basis: 100%;
}

.product-condition {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.2rem 0.62rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  background: rgba(104, 104, 104, 0.08);
}

.product-condition-main {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.product-condition-icon {
  width: 0.9rem;
  height: 0.9rem;
  flex: 0 0 auto;
}

.product-condition-text {
  display: inline-block;
}

.product-condition-description {
  display: block;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.45;
  opacity: 0.82;
}

.product-condition--with-description {
  display: grid;
  gap: 0.25rem;
  max-width: min(100%, 440px);
  border-radius: 16px;
  padding: 0.48rem 0.72rem;
  white-space: normal;
}

.product-condition--new {
  color: var(--blue);
  background: rgba(13, 85, 120, 0.1);
}

.product-condition--reuse {
  color: #2f8f4e;
  background: rgba(47, 143, 78, 0.12);
}

.product-condition--carton-damaged {
  color: #a4620c;
  background: rgba(241, 163, 44, 0.16);
}

.product-condition--customer-return {
  color: #8a4d9d;
  background: rgba(138, 77, 157, 0.13);
}

.product-condition--other {
  color: var(--grey);
}

.product-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--light-grey);
  padding-top: 1rem;
}

.product-footer > div {
  min-width: 0;
}

.product-footer--purchase {
  display: block;
}

.product-footer--locked {
  align-items: start;
}

.product-card-price-lock {
  min-width: 0;
}

.product-footer--locked .product-price-link {
  max-width: none;
}

.product-card-purchase {
  display: grid;
  gap: 0.35rem;
  width: 100%;
}

.product-card-purchase-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: flex-end;
}

.product-card-purchase-row .product-price {
  align-self: center;
  font-size: clamp(1.55rem, 1.8vw, 1.9rem);
  line-height: 0.95;
}

.product-card-price-stack {
  display: grid;
  flex: 1 1 8.75rem;
  gap: 0.22rem;
  min-width: min(100%, 8.75rem);
}

.product-card-price-stack .product-price-note {
  margin: 0;
}

.product-price-note--inline {
  align-self: flex-end;
  line-height: 1;
  padding-bottom: 0.08em;
}

.product-card-quantity-field {
  display: grid;
  flex: 0 0 74px;
  gap: 0.25rem;
  color: var(--grey);
  font-size: 0.76rem;
  font-weight: 700;
}

.product-card-quantity-field input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--light-grey);
  border-radius: 14px;
  padding: 0.48rem 0.55rem;
  background: var(--white);
  color: var(--darkgrey);
  font: inherit;
  font-size: 0.96rem;
  font-weight: 700;
}

.product-card-buy-button {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 16px;
  white-space: nowrap;
}

.product-price-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  min-height: 28px;
  width: 100%;
  flex-wrap: nowrap;
}

.product-price-meta--detail {
  display: block;
  margin-top: 0.35rem;
}

.product-price-meta .product-price-note {
  margin: 0;
}

.cart-inline-feedback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 122px;
  min-height: 24px;
  margin: 0 0 0 auto;
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.18s ease;
}

.cart-inline-feedback.is-visible {
  visibility: visible;
  opacity: 1;
}

.cart-inline-feedback--success {
  color: #0d5578;
  background: rgba(13, 85, 120, 0.08);
}

.cart-inline-feedback--error {
  color: #b42318;
  background: rgba(180, 35, 24, 0.08);
}

.cart-inline-feedback--detail {
  justify-self: start;
  margin-left: 0;
  padding: 0.36rem 0.75rem;
  font-size: 0.86rem;
}

.account-layout {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
}

.registration-page {
  padding-top: 28px;
}

.password-reset-page {
  padding-top: 28px;
  padding-bottom: 72px;
}

.registration-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 28px;
}

.password-reset-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 28px;
}

.registration-hero-copy,
.registration-flow-card,
.password-reset-copy,
.password-reset-card {
  border: 1px solid rgba(13, 85, 120, 0.1);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(8, 47, 67, 0.08);
}

.registration-hero-copy,
.password-reset-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(2rem, 4vw, 4rem);
}

.registration-hero-copy h1,
.password-reset-copy h1 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--jost);
  font-size: clamp(3rem, 6vw, 5.25rem);
  line-height: 0.98;
}

.password-reset-copy h1 {
  max-width: 13ch;
}

.registration-hero-copy > p:not(.section-kicker),
.password-reset-copy > p:not(.section-kicker) {
  max-width: 62ch;
  margin: 1.2rem 0 0;
  color: var(--grey);
  font-size: 1.08rem;
  line-height: 1.85;
}

.registration-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.registration-flow-card {
  display: grid;
  align-content: center;
  gap: 1.2rem;
  padding: clamp(1.5rem, 3vw, 2.6rem);
  background:
    radial-gradient(circle at top right, rgba(255, 119, 93, 0.12), transparent 42%),
    linear-gradient(135deg, #ffffff 0%, #eef7fc 100%);
}

.registration-flow-list {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.registration-flow-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid rgba(13, 85, 120, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
}

.registration-flow-list span {
  display: inline-grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--jost);
  font-weight: 700;
}

.registration-flow-list strong {
  color: var(--darkgrey);
  line-height: 1.35;
}

.registration-application {
  align-items: stretch;
}

.account-info-card {
  border-radius: 24px;
  padding: 38px;
  background: linear-gradient(135deg, #093b54 0%, #0a4d6d 60%, #082f43 100%);
  box-shadow: 0 24px 60px rgba(8, 47, 67, 0.18);
}

.account-info-card h2,
.account-info-card h3,
.account-info-card li {
  color: var(--white);
}

.account-info-card h2 {
  margin: 0;
  font-family: var(--jost);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
}

.registration-benefit-card {
  display: grid;
  align-content: start;
  gap: 1.1rem;
}

.registration-card-note {
  margin: 1.1rem 0 0;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.feature-list {
  margin: 1.2rem 0 0;
  padding-left: 1.2rem;
}

.feature-list li + li {
  margin-top: 0.65rem;
}

.feature-list--light li {
  color: rgba(255, 255, 255, 0.82);
}

.registration-form,
.login-form {
  padding: 30px;
}

.registration-form {
  display: grid;
  gap: 1rem;
}

.password-reset-card {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  background:
    radial-gradient(circle at top right, rgba(255, 119, 93, 0.11), transparent 42%),
    var(--white);
}

.password-reset-form-heading {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.35rem;
}

.registration-form-heading {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.35rem;
}

.registration-form-heading h2,
.password-reset-form-heading h2 {
  margin: 0;
  font-family: var(--jost);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.08;
}

.registration-form-heading p:not(.section-kicker),
.password-reset-form-heading p:not(.section-kicker) {
  margin: 0;
  color: var(--grey);
  line-height: 1.75;
}

.registration-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.registration-form label,
.login-form label,
.password-reset-card label {
  display: grid;
  gap: 0.45rem;
  font-weight: 500;
}

.registration-form input,
.registration-form select,
.registration-form textarea,
.login-form input,
.password-reset-card input {
  width: 100%;
  border: 1px solid var(--light-grey);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  background: var(--white);
  color: var(--darkgrey);
}

.password-reset-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.25rem;
}

.registration-field-help {
  color: var(--grey);
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.45;
}

.password-reset-support {
  align-items: stretch;
}

.login-panel {
  margin-top: 24px;
}

.login-form {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr auto;
  align-items: end;
  gap: 1rem;
}

.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card span {
  display: inline-block;
  color: var(--orange);
  font-family: var(--jost);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.site-footer {
  margin-top: 20px;
  padding: 70px 0;
  background: var(--darkgrey);
  color: var(--white);
}

.site-footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 2rem;
}

.footer-brand,
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-brand p,
.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.4rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  color: var(--white);
  font-weight: 700;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.footer-social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 130, 100, 0.55);
  background: rgba(255, 130, 100, 0.12);
  color: var(--white);
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  background: var(--orange);
  color: var(--darkgrey);
  font-family: var(--jost);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.footer-social-icon--linkedin {
  font-size: 0.78rem;
}

.terms-page {
  padding-top: 10px;
}

.external-redirect-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 125, 97, 0.18), transparent 30%),
    radial-gradient(circle at 18% 82%, rgba(13, 85, 120, 0.13), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f3f9fc 100%);
}

.external-redirect-shell {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 2rem;
}

.external-redirect-brand {
  position: absolute;
  top: 2rem;
  left: 2rem;
}

.external-redirect-card {
  width: min(100%, 680px);
  border: 1px solid rgba(13, 85, 120, 0.12);
  border-radius: 34px;
  padding: clamp(2rem, 5vw, 4rem);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 70px rgba(8, 47, 67, 0.14);
  backdrop-filter: blur(14px);
}

.external-redirect-card h1 {
  margin: 0 0 1rem;
  font-family: var(--jost);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
  text-wrap: balance;
}

.external-redirect-card h1 span {
  color: var(--orange);
}

.external-redirect-copy {
  max-width: 48ch;
  margin: 0;
  color: var(--grey);
  font-size: 1.1rem;
  line-height: 1.75;
}

.external-redirect-loader {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 1.6rem 0 1rem;
}

.external-redirect-loader span {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: var(--orange);
  animation: redirectPulse 0.95s ease-in-out infinite;
}

.external-redirect-loader span:nth-child(2) {
  animation-delay: 0.12s;
}

.external-redirect-loader span:nth-child(3) {
  animation-delay: 0.24s;
}

.external-redirect-fallback {
  margin: 0;
  color: var(--grey);
  font-size: 0.96rem;
}

.external-redirect-fallback a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.external-redirect-fallback a:hover {
  color: var(--orange-deep);
}

@keyframes redirectPulse {
  0%,
  80%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }

  40% {
    opacity: 1;
    transform: translateY(-5px);
  }
}

.terms-card {
  max-width: 920px;
  margin: 0 auto;
}

.terms-card h1 {
  margin-bottom: 1rem;
}

.terms-card h2 {
  margin: 2rem 0 0.8rem;
  font-family: var(--jost);
  font-size: 1.5rem;
  font-weight: 600;
}

@media (max-width: 1100px) {
  .site-header,
  .section-heading {
    flex-direction: column;
    align-items: stretch;
  }

  .site-search--header {
    width: 100%;
    max-width: none;
    order: 3;
  }

  .home-hero,
  .registration-hero,
  .password-reset-hero,
  .benefits-grid,
  .product-grid,
  .account-layout,
  .steps,
  .login-form,
  .trust-strip-stats,
  .site-footer-inner {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: 520px;
    padding: 2rem 0 3rem;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    min-width: 0;
    min-height: auto;
    max-width: min(100%, 46rem);
    padding: 0.25rem 0 0.5rem;
  }

  .hero-figure {
    position: absolute;
    inset: 0 -18px 0 18%;
    margin-top: 0;
    overflow: hidden;
    border-radius: 0;
    padding: 0;
    background: none;
    box-shadow: none;
  }

  .hero-figure::before {
    display: block;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.72) 35%, rgba(255, 255, 255, 0.53) 62%, rgba(255, 255, 255, 0.36) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.54) 45%, rgba(255, 255, 255, 0.78) 100%);
  }

  .hero-figure img {
    width: 100%;
    height: 100%;
    max-width: none;
    border-radius: 0;
    object-fit: cover;
    object-position: center center;
    filter: saturate(0.96) brightness(1.04);
  }

  .hero-carousel-arrow {
    width: 42px;
    height: 42px;
  }

  .trust-strip-heading {
    flex-direction: column;
    gap: 16px;
  }

  .registration-hero-copy h1 {
    max-width: 13ch;
  }
}

@media (max-width: 780px) {
  .topbar {
    justify-content: flex-start;
    gap: 0.7rem;
  }

  .site-header {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.55rem;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(13, 85, 120, 0.08);
    box-shadow: 0 12px 32px rgba(8, 47, 67, 0.08);
  }

  .brand-logo-wide,
  .footer-logo-wide {
    width: 210px;
  }

  .site-header .brand-logo-wide {
    width: min(48vw, 190px);
  }

  .external-redirect-shell {
    align-content: center;
    padding: 7rem 1rem 2rem;
  }

  .external-redirect-brand {
    top: 1rem;
    left: 1rem;
  }

  .external-redirect-card {
    border-radius: 24px;
    padding: 1.6rem;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .site-search--header {
    display: none;
  }

  .site-search--mobile {
    width: 100%;
    min-width: 0;
    max-width: none;
    margin: 1rem 0;
  }

  .site-search--mobile .site-search-results {
    position: static;
    margin-top: 0.55rem;
  }

  .header-actions:has(.cart-button:not([hidden])) {
    display: flex;
    margin-left: auto;
    gap: 0.55rem;
  }

  .header-actions > :not(.cart-button) {
    display: none !important;
  }

  .header-actions .cart-button {
    min-width: 0;
    min-height: 44px;
    padding: 0.38rem 0.45rem;
    gap: 0.35rem;
    border-radius: 999px;
  }

  .header-actions .cart-button-copy {
    display: none;
  }

  .header-actions .cart-icon {
    width: 34px;
    height: 34px;
  }

  .header-actions .cart-count {
    min-width: 28px;
    height: 28px;
    font-size: 0.78rem;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .catalog-sticky-filter-bar {
    display: none;
  }

  .search-page-tools {
    grid-template-columns: 1fr;
    padding: 0.85rem;
  }

  .search-page-filter-button {
    width: 100%;
    justify-content: center;
  }

  .search-page-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-copy h1 {
    max-width: 10ch;
    font-size: clamp(2.4rem, 9vw, 3.4rem);
  }

  .section-heading h2,
  .terms-card h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .trust-strip-inner,
  .registration-hero-copy,
  .registration-flow-card,
  .password-reset-copy,
  .password-reset-card,
  .benefit-card,
  .product-card,
  .registration-form,
  .login-form,
  .step-card,
  .terms-card,
  .account-info-card,
  .hero-figure {
    border-radius: 22px;
  }

  .home-hero {
    min-height: 560px;
    padding-top: 1.1rem;
  }

  .hero-figure {
    inset: 0 -34px 0 8%;
    border-radius: 0;
  }

  .hero-figure::before {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.89) 0%, rgba(255, 255, 255, 0.74) 42%, rgba(255, 255, 255, 0.57) 70%, rgba(255, 255, 255, 0.43) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.53) 48%, rgba(255, 255, 255, 0.79) 100%);
  }

  .hero-figure img {
    object-position: center center;
  }

  .hero-carousel-arrow {
    top: 50%;
    bottom: auto;
    width: 38px;
    height: 38px;
    transform: translateY(-50%);
  }

  .hero-carousel-arrow[data-hero-prev] {
    left: 0.75rem;
  }

  .hero-carousel-arrow[data-hero-next] {
    right: 0.75rem;
  }

  .hero-carousel-arrow:hover {
    transform: translateY(-50%) scale(1.04);
  }

  .hero-carousel-dots {
    right: 4.25rem;
    bottom: 1rem;
    transform: none;
  }

  .trust-strip-number {
    font-size: 64px;
  }

  .trust-strip-heading-copy h2 {
    font-size: 30px;
  }

  .trust-strip-heading-copy p,
  .hero-lead {
    font-size: 1rem;
    line-height: 1.75;
  }

  .registration-page,
  .password-reset-page {
    padding-top: 18px;
  }

  .registration-hero,
  .password-reset-hero {
    gap: 16px;
    margin-bottom: 18px;
  }

  .registration-hero-copy,
  .registration-flow-card,
  .password-reset-copy,
  .password-reset-card {
    padding: 1.35rem;
  }

  .registration-hero-copy h1,
  .password-reset-copy h1 {
    max-width: 11ch;
    font-size: clamp(2.45rem, 12vw, 3.6rem);
  }

  .password-reset-copy h1 {
    max-width: 13ch;
  }

  .registration-hero-copy > p:not(.section-kicker),
  .password-reset-copy > p:not(.section-kicker) {
    font-size: 1rem;
    line-height: 1.7;
  }

  .registration-hero-actions,
  .registration-hero-actions .solid-button,
  .registration-hero-actions .ghost-button {
    width: 100%;
  }

  .registration-flow-list li {
    padding: 0.85rem;
  }

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

  .registration-submit-button {
    width: 100%;
  }
}

.terms-card ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.35rem;
}

.terms-card li + li {
  margin-top: 0.35rem;
}

.terms-card h3 {
  margin: 1.35rem 0 0.45rem;
  color: var(--darkgrey);
  font-family: var(--jost);
  font-size: 1.2rem;
  line-height: 1.2;
}

.terms-rate-table {
  overflow-x: auto;
  margin: 1rem 0 1.2rem;
  border: 1px solid rgba(13, 85, 120, 0.12);
  border-radius: 8px;
  background: #ffffff;
}

.terms-rate-table table {
  width: 100%;
  min-width: 360px;
  border-collapse: collapse;
}

.terms-rate-table th,
.terms-rate-table td {
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid rgba(33, 33, 33, 0.08);
  text-align: left;
}

.terms-rate-table th {
  background: #f8fbfd;
  color: var(--darkgrey);
  font-family: var(--jost);
}

.terms-rate-table tr:last-child td {
  border-bottom: 0;
}

.terms-rate-table td:last-child {
  color: var(--darkgrey);
  font-weight: 800;
  white-space: nowrap;
}

.terms-updated {
  margin-top: 2rem;
  font-weight: 700;
  color: var(--darkgrey);
}

.product-image-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #eef7fc 100%);
  border: 1px solid rgba(13, 85, 120, 0.08);
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  transform: scale(1.08);
  transform-origin: center center;
}

.product-image-zoom-button {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(13, 85, 120, 0.14);
  border-radius: 999px;
  padding: 0.48rem 0.68rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--blue);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  cursor: zoom-in;
  box-shadow: 0 12px 26px rgba(8, 47, 67, 0.14);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.product-image-zoom-button:hover {
  transform: translateY(-1px);
  border-color: rgba(13, 85, 120, 0.28);
  box-shadow: 0 16px 32px rgba(8, 47, 67, 0.18);
}

.product-image-zoom-button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.product-image-zoom-button svg {
  width: 1rem;
  height: 1rem;
}

.product-image-placeholder {
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  overflow: hidden;
  border-radius: 16px;
  padding: 20px;
  background:
    radial-gradient(circle at top right, rgba(255, 177, 140, 0.5) 0%, rgba(255, 177, 140, 0) 38%),
    linear-gradient(135deg, rgba(13, 85, 120, 0.12) 0%, rgba(238, 247, 252, 1) 58%, rgba(251, 242, 239, 1) 100%);
  border: 1px solid rgba(13, 85, 120, 0.08);
}

.product-image-placeholder-tag {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-image-placeholder strong {
  max-width: 11ch;
  font-family: var(--jost);
  font-size: 2rem;
  line-height: 1;
}

.product-image-placeholder p {
  max-width: 20ch;
  margin: 0;
  color: var(--grey);
  font-size: 0.92rem;
  line-height: 1.5;
}

.product-title {
  margin-bottom: 0.35rem;
  min-width: 0;
  overflow-wrap: break-word;
  hyphens: auto;
}

.product-secondary {
  margin: 0;
  color: var(--grey);
  font-size: 0.92rem;
  line-height: 1.6;
}

.product-price {
  display: block;
  font-family: var(--jost);
  font-size: 1.3rem;
  line-height: 1.1;
}

.product-price-note {
  margin: 0.25rem 0 0;
  color: var(--grey);
  font-size: 0.88rem;
}
.product-price-link {
  display: block;
  max-width: 22ch;
  color: inherit;
}

.product-price-link-button {
  border: 0;
  padding: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.product-price-link:hover {
  color: var(--orange-deep);
}

.product-card.is-sold-out {
  opacity: 0.82;
}

.product-card.is-sold-out .stock-badge {
  background: rgba(33, 33, 33, 0.08);
  color: var(--darkgrey);
}

.product-price--hidden {
  font-size: 1.05rem;
  line-height: 1.35;
}

/* Account Page & Modal */
.account-entry {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 24px;
}

.account-entry-card {
  border: 1px solid var(--light-grey);
  border-radius: 24px;
  padding: 34px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.account-entry-card h3 {
  margin: 0 0 0.8rem;
  font-family: var(--jost);
  font-size: 1.75rem;
  font-weight: 600;
}

.account-entry-card p {
  margin: 0;
  color: var(--grey);
  line-height: 1.8;
}

.account-entry-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.account-page-main {
  padding-top: 10px;
}

.account-hero {
  padding-bottom: 42px;
}

.account-hero-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 26px;
}

.account-hero-heading h1 {
  margin: 0;
  font-family: var(--jost);
  font-size: clamp(2.9rem, 4.4vw, 4.25rem);
  line-height: 1.06;
}

.account-hero-heading p {
  margin: 0;
  color: var(--grey);
  font-size: 1.08rem;
  line-height: 1.85;
}

.account-hero-heading--title-only {
  grid-template-columns: 1fr;
  max-width: 720px;
}

.account-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 8px;
  border: 1px solid var(--light-grey);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.account-switcher-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  background: transparent;
  color: var(--darkgrey);
  font-family: var(--dm-sans);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.account-switcher-link.is-active {
  background: var(--darkgrey);
  color: var(--white);
}

.account-switcher-link:hover {
  color: var(--orange-deep);
}

.account-layout--page {
  align-items: stretch;
}

.registration-form--page {
  min-height: 100%;
}

.account-support {
  padding-top: 0;
}

.account-dashboard-page {
  padding-top: 10px;
}

.account-dashboard-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 30px;
}

.account-dashboard-hero h1 {
  margin: 0 0 0.8rem;
  font-family: var(--jost);
  font-size: clamp(3rem, 5vw, 4.4rem);
  line-height: 1.02;
}

.account-dashboard-hero p:not(.section-kicker) {
  max-width: 58ch;
  margin: 0;
  color: var(--grey);
  font-size: 1.08rem;
  line-height: 1.8;
}

.account-signed-out {
  max-width: 720px;
}

.account-signed-out[hidden],
.account-dashboard[hidden] {
  display: none;
}

.account-dashboard {
  display: grid;
  gap: 24px;
}

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

.account-summary-card,
.account-history-panel,
.account-empty-card,
.account-order-card {
  border: 1px solid var(--light-grey);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.account-summary-card {
  display: grid;
  gap: 0.4rem;
  padding: 22px;
  border-radius: 20px;
}

.account-summary-card span {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.account-summary-card strong {
  color: var(--darkgrey);
  font-family: var(--jost);
  font-size: 1.25rem;
  line-height: 1.25;
}

.account-tabs {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: max-content;
  max-width: 100%;
  padding: 8px;
  border: 1px solid var(--light-grey);
  border-radius: 999px;
  overflow-x: auto;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.account-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: max-content;
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  background: transparent;
  color: var(--darkgrey);
  font-family: var(--dm-sans);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.account-tab.is-active {
  background: var(--darkgrey);
  color: var(--white);
}

.account-tab:not(.is-active):hover {
  color: var(--orange-deep);
}

.account-tab-panel[hidden] {
  display: none;
}

.account-tab-panels {
  display: grid;
  gap: 24px;
}

.account-profile-form,
.account-history-panel,
.account-export-panel {
  border-radius: 24px;
  padding: 30px;
}

.account-profile-form,
.account-history-panel,
.account-export-panel {
  max-width: 860px;
}

.account-panel-heading {
  margin-bottom: 0.5rem;
}

.account-panel-heading h2 {
  margin: 0;
  font-family: var(--jost);
  font-size: 2rem;
  line-height: 1.12;
}

.account-order-history {
  display: grid;
  gap: 1rem;
}

.account-payment-confirmation {
  color-scheme: only light;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, auto);
  gap: 1rem;
  align-items: center;
  margin: 1.2rem 0;
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(33, 33, 33, 0.12);
  border-left: 4px solid #2f8f4e;
  border-radius: 8px;
  background: #ffffff;
  color: var(--darkgrey);
  box-shadow: 0 14px 34px rgba(33, 33, 33, 0.08);
}

.account-payment-confirmation--warning {
  border-color: rgba(33, 33, 33, 0.12);
  border-left-color: var(--orange-deep);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(33, 33, 33, 0.08);
}

.account-payment-confirmation-copy {
  display: grid;
  gap: 0.42rem;
}

.account-payment-confirmation-copy h3,
.account-payment-confirmation-copy p {
  margin: 0;
}

.account-payment-confirmation-copy h3 {
  color: var(--darkgrey);
  font-family: var(--jost);
  font-size: 1.45rem;
  line-height: 1.15;
}

.account-payment-confirmation-copy p:last-child {
  color: var(--grey);
  line-height: 1.55;
}

.stripe-payment-brand {
  display: flex;
  align-items: center;
  min-height: 30px;
}

.stripe-wordmark {
  display: inline-grid;
  place-items: center;
  min-width: 82px;
  height: 30px;
  border-radius: 5px;
  background: #635bff;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: lowercase;
}

.account-payment-confirmation-details {
  display: grid;
  gap: 0.22rem;
  justify-items: end;
  color: var(--grey);
  text-align: right;
}

.account-payment-confirmation-details > span {
  width: fit-content;
  border: 1px solid rgba(47, 143, 78, 0.16);
  border-radius: 4px;
  padding: 0.35rem 0.55rem;
  background: rgba(47, 143, 78, 0.12);
  color: #2f8f4e;
  font-size: 0.78rem;
  font-weight: 800;
}

.account-payment-confirmation--warning .account-payment-confirmation-details > span {
  border-color: rgba(227, 102, 72, 0.16);
  background: rgba(227, 102, 72, 0.12);
  color: var(--orange-deep);
}

.account-payment-confirmation-details strong {
  color: var(--darkgrey);
  font-family: var(--jost);
  font-size: 1.12rem;
  line-height: 1.2;
}

.account-payment-confirmation-details small {
  line-height: 1.45;
}

.account-payment-confirmation-products {
  grid-column: 1 / -1;
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(33, 33, 33, 0.1);
  border-radius: 8px;
  background: #ffffff;
}

.account-payment-confirmation-products > span {
  padding: 0.75rem 0.95rem;
  border-bottom: 1px solid rgba(33, 33, 33, 0.08);
  background: #f8fbfd;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-payment-confirmation-products ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.account-payment-confirmation-products li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.25rem 0.8rem;
  align-items: start;
  padding: 0.85rem 0.95rem;
  background: #ffffff;
}

.account-payment-confirmation-products li + li {
  border-top: 1px solid rgba(33, 33, 33, 0.08);
}

.account-payment-confirmation-products strong {
  color: var(--darkgrey);
  font-family: var(--jost);
  line-height: 1.25;
}

.account-payment-confirmation-products small {
  grid-column: 1;
  color: var(--grey);
}

.account-payment-confirmation-products li > span {
  grid-row: 1 / span 2;
  grid-column: 2;
  color: var(--darkgrey);
  font-weight: 800;
  white-space: nowrap;
}

.account-payment-confirmation-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  padding-top: 0.15rem;
}

.account-order-card {
  padding: 20px;
  border-radius: 20px;
  overflow: hidden;
}

.account-order-summary,
.account-order-total {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.account-order-summary {
  cursor: pointer;
  list-style: none;
}

.account-order-summary::-webkit-details-marker {
  display: none;
}

.account-order-summary::after {
  content: "+";
  display: inline-grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--lightblue);
  color: var(--blue);
  font-family: var(--jost);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}

.account-order-card[open] .account-order-summary::after {
  content: "-";
}

.account-order-details {
  display: grid;
  gap: 1rem;
  padding-top: 1rem;
}

.account-order-summary h3,
.account-empty-card h3 {
  margin: 0;
  font-family: var(--jost);
  font-size: 1.25rem;
  line-height: 1.2;
}

.account-order-summary p,
.account-empty-card p {
  margin: 0.25rem 0 0;
  color: var(--grey);
  line-height: 1.6;
}

.account-order-status {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  background: rgba(13, 85, 120, 0.08);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.account-order-status--success {
  background: rgba(47, 143, 78, 0.12);
  color: #2f8f4e;
}

.account-order-status--muted {
  background: rgba(104, 104, 104, 0.1);
  color: var(--grey);
}

.account-order-items {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.account-order-items li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  gap: 0.85rem;
  align-items: start;
  color: var(--grey);
  font-size: 0.94rem;
}

.account-order-items strong {
  display: block;
  color: var(--darkgrey);
}

.registration-form .registration-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(207, 212, 226, 0.9);
  border-radius: 16px;
  background: rgba(247, 246, 241, 0.96);
  color: var(--grey);
  line-height: 1.6;
  font-weight: 400;
}

.registration-form .registration-consent input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.18rem;
  flex: 0 0 auto;
  accent-color: var(--orange);
}

.registration-form .registration-consent span {
  display: block;
}

.registration-form .registration-consent a {
  color: var(--blue);
  font-weight: 700;
}

.registration-submit-button {
  justify-self: start;
  margin-top: 0.4rem;
}

.account-order-items small {
  display: block;
  margin-top: 0.15rem;
}

.account-order-payment {
  display: grid;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(13, 85, 120, 0.12);
  border-radius: 18px;
  background: rgba(239, 246, 251, 0.72);
  color: var(--grey);
}

.account-order-payment strong {
  color: var(--darkgrey);
  font-family: var(--jost);
  font-size: 1.05rem;
}

.account-order-payment small {
  display: block;
  line-height: 1.55;
}

.account-order-total {
  padding-top: 0.9rem;
  border-top: 1px solid var(--light-grey);
  color: var(--grey);
}

.account-order-total strong {
  color: var(--darkgrey);
  font-family: var(--jost);
  font-size: 1.35rem;
}

.account-reorder-button {
  border: 1px solid rgba(13, 85, 120, 0.12);
  border-radius: 999px;
  padding: 0.44rem 0.72rem;
  background: rgba(13, 85, 120, 0.08);
  color: var(--blue);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.account-order-reorder {
  justify-self: start;
  min-height: 44px;
  padding: 0.7rem 1rem;
}

.account-empty-card {
  display: grid;
  justify-items: start;
  gap: 0.8rem;
  padding: 24px;
  border-radius: 20px;
}

.account-export-panel {
  display: grid;
  gap: 1.2rem;
  border: 1px solid var(--light-grey);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.account-export-panel p {
  max-width: 72ch;
  margin: 0;
  color: var(--grey);
  line-height: 1.75;
}

.account-export-count {
  font-weight: 800;
  color: var(--blue) !important;
}

.account-export-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.account-export-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.has-modal-open {
  overflow: hidden;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 24, 32, 0.54);
  backdrop-filter: blur(4px);
}

.modal-dialog {
  color-scheme: only light;
  position: relative;
  width: min(100%, 540px);
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 26px;
  padding: 32px;
  background: #ffffff;
  color: var(--darkgrey);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  transform: translateY(14px);
  transition: transform 0.18s ease;
}

.modal.is-visible .modal-dialog {
  transform: translateY(0);
}

.modal-dialog h2 {
  margin: 0 0 0.8rem;
  font-family: var(--jost);
  font-size: 2rem;
  line-height: 1.1;
}

.modal-copy {
  margin: 0 0 1.5rem;
  color: var(--grey);
  line-height: 1.8;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(33, 33, 33, 0.12);
  border-radius: 999px;
  background: var(--white);
  color: var(--darkgrey);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.modal-form {
  display: grid;
  gap: 1rem;
}

.modal-form label,
.modal-form-field {
  display: grid;
  gap: 0.45rem;
  font-weight: 500;
}

.modal-form input {
  width: 100%;
  border: 1px solid var(--light-grey);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  background: var(--white);
  color: var(--darkgrey);
}

.password-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  width: 100%;
  border: 1px solid var(--light-grey);
  border-radius: 14px;
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.password-field:focus-within {
  border-color: rgba(13, 85, 120, 0.34);
  box-shadow: 0 0 0 3px rgba(13, 85, 120, 0.1);
}

.modal-form .password-field input {
  min-width: 0;
  border: 0;
  border-radius: 0;
  padding: 0.95rem 0.7rem 0.95rem 1rem;
  background: transparent;
  outline: 0;
  box-shadow: none;
}

.modal-form .password-field input:focus {
  outline: 0;
}

.password-reset-card .password-field input {
  min-width: 0;
  border: 0;
  border-radius: 0;
  padding: 0.95rem 0.7rem 0.95rem 1rem;
  background: transparent;
  outline: 0;
  box-shadow: none;
}

.password-reset-card .password-field input:focus {
  outline: 0;
}

.password-toggle {
  appearance: none;
  -webkit-appearance: none;
  position: static;
  display: grid;
  width: 2.45rem;
  height: 2.45rem;
  place-items: center;
  border: 0;
  border-radius: 999px;
  margin: 0 0.45rem 0 0;
  padding: 0;
  background: rgba(13, 85, 120, 0.07);
  color: var(--blue);
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.password-toggle:hover,
.password-toggle:focus-visible {
  background: rgba(13, 85, 120, 0.12);
  color: var(--blue);
}

.password-toggle:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(13, 85, 120, 0.16);
}

.password-toggle-icon {
  display: block;
  width: 1.28rem;
  height: 1.28rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.password-toggle-icon--hide,
.password-toggle[aria-pressed="true"] .password-toggle-icon--show {
  display: none;
}

.password-toggle[aria-pressed="true"] .password-toggle-icon--hide {
  display: block;
}

.modal-form-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}

.modal-help-link {
  display: grid;
  gap: 0.25rem;
  margin: -0.15rem 0 0.15rem;
  color: var(--grey);
  font-size: 0.92rem;
  line-height: 1.5;
}

.modal-help-link a,
.modal-help-button {
  display: inline;
  width: max-content;
  max-width: 100%;
  border: 0 !important;
  border-radius: 0;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--blue);
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.modal-help-link a:hover,
.modal-help-button:hover {
  color: var(--orange-deep);
}

.modal-help-button:disabled {
  color: var(--grey);
  cursor: wait;
}

.modal-account-link {
  margin: 1rem 0 0;
  color: var(--grey);
  font-size: 0.95rem;
}

.modal-account-link a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.modal-account-link a:hover {
  color: var(--orange-deep);
}

.quantity-limit-modal {
  z-index: 1010;
}

.quantity-limit-dialog {
  width: min(100%, 430px);
  padding: 28px;
}

.quantity-limit-copy strong {
  color: var(--darkgrey);
  font-weight: 800;
}

.quantity-limit-actions {
  justify-content: flex-start;
}

.cart-add-notice-modal {
  z-index: 1010;
}

.cart-add-notice-dialog {
  width: min(100%, 440px);
  padding: 28px;
}

.cart-add-notice-copy strong {
  color: var(--darkgrey);
  font-weight: 800;
}

.cart-add-notice-actions {
  justify-content: flex-start;
}

.cart-dialog {
  width: min(100%, 780px);
  max-height: min(92vh, 820px);
  overflow: auto;
}

.cart-items {
  display: grid;
  gap: 0.9rem;
  margin: 1.25rem 0;
}

.cart-availability-warning {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.95rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(180, 35, 24, 0.16);
  border-left: 4px solid #b42318;
  border-radius: 8px;
  background: #fff8f6;
  color: var(--darkgrey);
}

.cart-availability-warning strong,
.cart-availability-warning p {
  margin: 0;
}

.cart-availability-warning strong {
  display: block;
  font-family: var(--jost);
  font-size: 1rem;
  line-height: 1.25;
}

.cart-availability-warning p {
  margin-top: 0.25rem;
  color: var(--grey);
  font-size: 0.92rem;
  line-height: 1.5;
}

.cart-availability-warning-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
}

.checkout-panel {
  display: grid;
  gap: 0.85rem;
  margin: 1.1rem 0;
  padding: 1rem;
  border: 1px solid rgba(13, 85, 120, 0.1);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbfe 100%);
}

.checkout-panel h3 {
  margin: 0;
  font-family: var(--jost);
  font-size: 1.25rem;
  line-height: 1.15;
}

.checkout-test-notice {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(227, 102, 72, 0.2);
  border-left: 4px solid var(--orange-deep);
  border-radius: 8px;
  background: #fff8f6;
  color: var(--darkgrey);
}

.checkout-test-notice strong,
.checkout-test-notice p {
  margin: 0;
}

.checkout-test-notice strong {
  font-family: var(--jost);
  font-size: 1rem;
  line-height: 1.25;
}

.checkout-test-notice p {
  color: var(--grey);
  font-size: 0.92rem;
  line-height: 1.5;
}

.checkout-test-notice--active {
  border-color: rgba(13, 85, 120, 0.2);
  border-left-color: var(--blue);
  background: #f4fbff;
}

.checkout-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.checkout-method {
  position: relative;
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  min-height: 96px;
  padding: 0.85rem;
  border: 1px solid rgba(13, 85, 120, 0.12);
  border-radius: 16px;
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.checkout-method:hover {
  border-color: rgba(13, 85, 120, 0.28);
  box-shadow: 0 12px 24px rgba(8, 47, 67, 0.08);
  transform: translateY(-1px);
}

.checkout-method input {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.1rem;
  accent-color: var(--blue);
}

.checkout-method:has(input:checked) {
  border-color: rgba(13, 85, 120, 0.48);
  box-shadow: 0 14px 26px rgba(8, 47, 67, 0.1);
}

.checkout-method.is-disabled {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}

.checkout-method-copy {
  display: grid;
  gap: 0.25rem;
}

.checkout-method-copy strong {
  color: var(--darkgrey);
  font-family: var(--jost);
  line-height: 1.2;
}

.checkout-method-copy small {
  color: var(--grey);
  font-size: 0.82rem;
  line-height: 1.45;
}

.cart-shipping {
  margin: 1rem 0;
}

.cart-shipping-panel {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(13, 85, 120, 0.12);
  border-radius: 8px;
  background: #ffffff;
}

.cart-shipping-heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.cart-shipping-heading h3,
.cart-shipping-panel p,
.cart-shipping-meta,
.cart-shipping-rates ul {
  margin: 0;
}

.cart-shipping-heading h3 {
  color: var(--darkgrey);
  font-family: var(--jost);
  font-size: 1.18rem;
  line-height: 1.15;
}

.cart-shipping-heading strong {
  color: var(--darkgrey);
  font-family: var(--jost);
  font-size: 1.05rem;
  line-height: 1.15;
  text-align: right;
  white-space: nowrap;
}

.cart-shipping-panel p:not(.section-kicker) {
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.5;
}

.cart-shipping-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.cart-shipping-method {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.45rem 0.6rem;
  align-items: start;
  min-height: 92px;
  padding: 0.75rem;
  border: 1px solid rgba(13, 85, 120, 0.12);
  border-radius: 8px;
  background: #f8fbfd;
  cursor: pointer;
}

.cart-shipping-method input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.12rem;
  accent-color: var(--blue);
}

.cart-shipping-method span {
  display: grid;
  gap: 0.18rem;
}

.cart-shipping-method strong {
  color: var(--darkgrey);
  font-family: var(--jost);
  line-height: 1.15;
}

.cart-shipping-method small,
.cart-shipping-method em {
  color: var(--grey);
  font-size: 0.8rem;
  line-height: 1.35;
}

.cart-shipping-method em {
  grid-column: 2;
  font-style: normal;
  font-weight: 800;
}

.cart-shipping-method:has(input:checked) {
  border-color: rgba(13, 85, 120, 0.42);
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(8, 47, 67, 0.08);
}

.cart-shipping-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.cart-shipping-meta div {
  display: grid;
  gap: 0.12rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(13, 85, 120, 0.08);
  border-radius: 8px;
  background: #f8fbfd;
}

.cart-shipping-meta dt,
.cart-shipping-meta dd {
  margin: 0;
}

.cart-shipping-meta dt {
  color: var(--grey);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-shipping-meta dd {
  color: var(--darkgrey);
  font-family: var(--jost);
  font-weight: 700;
}

.cart-shipping-rates {
  color: var(--darkgrey);
}

.cart-shipping-rates summary {
  cursor: pointer;
  color: var(--blue);
  font-weight: 800;
}

.cart-shipping-rates ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem 0.75rem;
  padding: 0.75rem 0 0;
  list-style: none;
}

.cart-shipping-rates li {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(33, 33, 33, 0.08);
  color: var(--grey);
  font-size: 0.84rem;
}

.cart-shipping-rates li strong {
  color: var(--darkgrey);
  white-space: nowrap;
}

.cart-shipping-terms a {
  color: var(--blue);
  font-weight: 800;
}

.cart-item {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) minmax(178px, auto);
  gap: 1rem;
  align-items: center;
  padding: 0.9rem;
  border: 1px solid rgba(13, 85, 120, 0.09);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.cart-item.is-unavailable {
  opacity: 0.72;
}

.cart-item.is-unavailable .cart-item-title,
.cart-item.is-unavailable .cart-unit-price,
.cart-item.is-unavailable .cart-line-total strong {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(180, 35, 24, 0.48);
}

.cart-item-image {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background: var(--lightblue);
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-item-image span {
  color: var(--blue);
  font-family: var(--jost);
  font-size: 2rem;
  font-weight: 700;
}

.cart-item-main {
  display: grid;
  gap: 0.25rem;
  min-width: 0;
}

.cart-item-title {
  color: var(--darkgrey);
  font-family: var(--jost);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
}

.cart-item-main p,
.cart-item-main span,
.cart-line-total {
  margin: 0;
  color: var(--grey);
  font-size: 0.86rem;
  line-height: 1.45;
}

.cart-item-main .cart-unit-price {
  color: var(--darkgrey);
  font-family: var(--jost);
  font-size: 1rem;
  font-weight: 700;
}

.cart-item-controls {
  display: grid;
  grid-template-columns: 74px 76px 38px;
  align-items: end;
  justify-items: end;
  gap: 0.5rem;
}

.cart-item-controls strong {
  font-family: var(--jost);
  font-size: 1.05rem;
  line-height: 1;
}

.cart-item-controls label {
  display: inline-grid;
  gap: 0.25rem;
  color: var(--grey);
  font-size: 0.78rem;
  font-weight: 700;
}

.cart-item-controls input {
  width: 74px;
  border: 1px solid var(--light-grey);
  border-radius: 14px;
  padding: 0.55rem 0.7rem;
  background: var(--white);
  color: var(--darkgrey);
  font: inherit;
  font-weight: 700;
}

.cart-line-total {
  display: grid;
  gap: 0.18rem;
  justify-items: end;
  min-width: 72px;
}

.cart-line-total span {
  color: var(--grey);
  font-size: 0.74rem;
  font-weight: 700;
}

.cart-line-total strong {
  color: var(--darkgrey);
  font-size: 0.98rem;
}

.cart-remove-button {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(227, 102, 72, 0.16);
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 130, 100, 0.08);
  color: var(--orange-deep);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.cart-remove-button:hover {
  border-color: rgba(227, 102, 72, 0.32);
  background: rgba(255, 130, 100, 0.16);
  transform: translateY(-1px);
}

.cart-remove-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-note-field {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
  font-weight: 600;
}

.cart-note-field textarea {
  width: 100%;
  resize: vertical;
  border: 1px solid var(--light-grey);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  background: var(--white);
  color: var(--darkgrey);
  font: inherit;
}

.cart-terms {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 1rem 0;
  color: var(--grey);
  line-height: 1.5;
}

.cart-terms input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.12rem;
  accent-color: var(--blue);
}

.cart-terms a {
  color: var(--blue);
  font-weight: 700;
}

.cart-summary {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--light-grey);
  color: var(--grey);
}

.cart-summary-rows {
  display: grid;
  gap: 0.35rem;
}

.cart-summary-rows > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}

.cart-summary-rows > div[hidden] {
  display: none;
}

.cart-summary-rows span {
  color: var(--grey);
}

.cart-summary-rows strong {
  color: var(--darkgrey);
  font-family: var(--jost);
  font-size: 1rem;
  text-align: right;
  white-space: nowrap;
}

.cart-summary-total-row {
  margin-top: 0.35rem;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(33, 33, 33, 0.1);
}

.cart-summary-total-row strong {
  font-size: 1.55rem;
}

.cart-summary small {
  color: var(--grey);
  font-size: 0.82rem;
  line-height: 1.4;
}

.cart-empty {
  display: grid;
  justify-items: start;
  gap: 0.8rem;
  padding: 1.4rem;
  border-radius: 18px;
  background: var(--lightblue);
}

.cart-empty h3,
.cart-empty p {
  margin: 0;
}

.cart-empty p {
  color: var(--grey);
  line-height: 1.6;
}

.cart-confirmation {
  color-scheme: only light;
  display: grid;
  gap: 1.1rem;
  padding: clamp(1rem, 2.5vw, 1.45rem);
  border: 1px solid rgba(33, 33, 33, 0.12);
  border-radius: 8px;
  background: #ffffff;
  color: var(--darkgrey);
  box-shadow: 0 14px 34px rgba(33, 33, 33, 0.08);
}

.cart-confirmation-heading {
  position: relative;
  display: grid;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0 0 1rem 3.4rem;
  border-bottom: 1px solid rgba(33, 33, 33, 0.08);
}

.cart-confirmation-heading::before,
.cart-confirmation-heading::after {
  content: "";
  position: absolute;
}

.cart-confirmation-heading::before {
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(47, 143, 78, 0.2);
  border-radius: 999px;
  background: rgba(47, 143, 78, 0.1);
}

.cart-confirmation-heading::after {
  top: 8px;
  left: 14px;
  width: 8px;
  height: 16px;
  border: solid #2f8f4e;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.cart-confirmation-heading h3,
.cart-confirmation-heading p {
  margin: 0;
}

.cart-confirmation-heading h3 {
  color: var(--darkgrey);
  font-family: var(--jost);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1.05;
}

.cart-confirmation-heading p:last-child {
  color: var(--grey);
  line-height: 1.65;
}

.cart-confirmation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.cart-confirmation-card {
  display: grid;
  gap: 0.22rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(33, 33, 33, 0.1);
  border-radius: 8px;
  background: #f8fbfd;
}

.cart-confirmation-card span,
.cart-confirmation-card small {
  color: var(--grey);
}

.cart-confirmation-card span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-confirmation-card strong {
  color: var(--darkgrey);
  font-family: var(--jost);
  font-size: 1.08rem;
  line-height: 1.2;
}

.cart-confirmation-card small {
  font-size: 0.84rem;
  line-height: 1.45;
}

.cart-confirmation-products {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(33, 33, 33, 0.1);
  border-radius: 8px;
  background: #ffffff;
}

.cart-confirmation-products > span {
  padding: 0.75rem 0.95rem;
  border-bottom: 1px solid rgba(33, 33, 33, 0.08);
  background: #f8fbfd;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-confirmation-products ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cart-confirmation-products li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.35rem 0.8rem;
  align-items: start;
  padding: 0.85rem 0.95rem;
  background: #ffffff;
}

.cart-confirmation-products li + li {
  border-top: 1px solid rgba(33, 33, 33, 0.08);
}

.cart-confirmation-products strong {
  color: var(--darkgrey);
  font-family: var(--jost);
  line-height: 1.25;
}

.cart-confirmation-products small {
  grid-column: 1;
  color: var(--grey);
}

.cart-confirmation-products li > span {
  grid-row: 1 / span 2;
  grid-column: 2;
  color: var(--darkgrey);
  font-weight: 800;
  white-space: nowrap;
}

.order-confirmation-products li {
  grid-template-columns: minmax(0, 1.5fr) minmax(4.5rem, 0.45fr) minmax(6.8rem, 0.65fr) minmax(6.8rem, 0.65fr);
  align-items: center;
}

.order-confirmation-products li > span {
  grid-row: auto;
  grid-column: auto;
  min-width: 0;
  white-space: normal;
}

.order-confirmation-product,
.order-confirmation-quantity,
.order-confirmation-unit-price,
.order-confirmation-line-total {
  display: grid;
  gap: 0.18rem;
}

.order-confirmation-quantity,
.order-confirmation-unit-price,
.order-confirmation-line-total {
  justify-items: end;
  text-align: right;
  white-space: nowrap;
}

.order-confirmation-products small {
  display: block;
  color: var(--grey);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.order-confirmation-products .order-confirmation-product small {
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.order-confirmation-products .order-confirmation-quantity strong,
.order-confirmation-products .order-confirmation-unit-price strong,
.order-confirmation-products .order-confirmation-line-total strong {
  color: var(--darkgrey);
  font-family: var(--jost);
  font-size: 0.98rem;
  line-height: 1.2;
}

.cart-confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

@media (max-width: 1100px) {
  .account-entry,
  .account-hero-heading,
  .account-summary-grid,
  .account-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .account-dashboard-hero {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 780px) {
  .account-entry-card,
  .modal-dialog {
    border-radius: 22px;
  }

  .account-hero-heading h1 {
    font-size: clamp(2.4rem, 8vw, 3.25rem);
  }

  .account-switcher {
    width: 100%;
    justify-content: stretch;
  }

  .account-switcher-link {
    flex: 1 1 0;
  }

  .modal-dialog {
    padding: 24px;
    max-height: calc(100dvh - 1.5rem);
  }

  .modal-form-actions {
    flex-direction: row;
    align-items: stretch;
  }

  .modal-form-actions .ghost-button,
  .modal-form-actions .solid-button {
    flex: 1 1 0;
    padding-inline: 1rem;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading-action,
  .catalog-menu-button {
    width: 100%;
    justify-content: center;
  }

  .catalog-heading h1 {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
  }

  .catalog-menu-panel {
    width: 100%;
    border-radius: 0;
    padding: 26px;
  }

  .catalog-menu-sticky-header {
    top: 0;
    margin: -26px -26px 1.2rem;
    padding: 26px 26px 1rem;
  }

  .mobile-menu-panel {
    width: 100%;
    border-radius: 0;
    padding: 24px;
  }

  .catalog-category-list .filter-button {
    font-size: 1.18rem;
  }

  .cart-inline-feedback--detail {
    margin-left: 0;
  }

  .checkout-methods {
    grid-template-columns: 1fr;
  }

  .cart-shipping-heading {
    flex-direction: column;
  }

  .cart-shipping-heading strong {
    text-align: left;
  }

  .cart-shipping-meta,
  .cart-shipping-methods,
  .cart-shipping-rates ul {
    grid-template-columns: 1fr;
  }

  .cart-item {
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: start;
    gap: 0.75rem;
    padding: 0.75rem;
  }

  .cart-availability-warning {
    grid-template-columns: 1fr;
  }

  .cart-availability-warning-actions {
    justify-content: flex-start;
  }

  .cart-item-controls {
    grid-column: 1 / -1;
    grid-template-columns: 62px minmax(68px, auto) 36px;
    justify-content: end;
    justify-items: end;
    align-items: end;
    gap: 0.4rem;
  }

  .cart-item-controls label {
    justify-self: end;
  }

  .cart-item-controls input {
    width: 62px;
    padding-inline: 0.55rem;
  }

  .cart-line-total {
    min-width: 68px;
  }

  .cart-remove-button {
    width: 36px;
    height: 36px;
  }

  .cart-summary {
    align-items: stretch;
  }

  .cart-summary-rows > div {
    align-items: flex-start;
  }

  .cart-confirmation-grid {
    grid-template-columns: 1fr;
  }

  .cart-confirmation-products li {
    grid-template-columns: 1fr;
  }

  .cart-confirmation-products li > span {
    grid-row: auto;
    grid-column: 1;
  }

  .account-order-top,
  .account-order-total {
    flex-direction: column;
  }

  .account-order-items li {
    grid-template-columns: 1fr;
  }

  .account-payment-confirmation {
    grid-template-columns: 1fr;
  }

  .account-payment-confirmation-details {
    justify-items: start;
    text-align: left;
  }

  .account-payment-confirmation-products li {
    grid-template-columns: 1fr;
  }

  .account-payment-confirmation-products li > span {
    grid-row: auto;
    grid-column: 1;
  }

  .order-confirmation-quantity,
  .order-confirmation-unit-price,
  .order-confirmation-line-total {
    justify-items: start;
    text-align: left;
  }
}
/* Product Cards & Product Page */
.product-card-link {
  height: 100%;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.product-card-link:hover {
  transform: translateY(-4px);
  border-color: rgba(13, 85, 120, 0.16);
  box-shadow: 0 16px 36px rgba(13, 85, 120, 0.11);
}

.product-card-link:focus-visible {
  outline: 3px solid rgba(255, 130, 100, 0.35);
  outline-offset: 4px;
}

.product-card-link .product-footer {
  margin-top: auto;
}

.product-meta--clamped {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.product-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 999px;
  padding: 0.9rem 1.15rem;
  background: rgba(13, 85, 120, 0.08);
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

@container (max-width: 360px) {
  .product-footer--locked {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .product-footer--locked .product-card-cta {
    width: 100%;
  }
}

.product-image-frame--detail,
.product-image-placeholder--detail {
  width: 100%;
  max-width: 100%;
  min-height: 520px;
}

.product-image-frame--detail .product-image {
  padding: 18px;
}

.product-image-placeholder--detail {
  padding: 28px;
}

.product-image-placeholder--detail strong {
  max-width: 12ch;
  font-size: clamp(2.3rem, 4vw, 3.6rem);
}

.product-image-placeholder--detail p {
  max-width: 24ch;
  font-size: 1rem;
}

.product-gallery {
  display: grid;
  gap: 1rem;
}

.product-thumbnail-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: flex-start;
}

.product-thumbnail {
  display: block;
  flex: 0 0 calc((100% - 2.25rem) / 4);
  max-width: calc((100% - 2.25rem) / 4);
  padding: 0;
  border: 1px solid var(--light-grey);
  border-radius: 16px;
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-thumbnail:hover {
  transform: translateY(-2px);
  border-color: rgba(13, 85, 120, 0.24);
}

.product-thumbnail:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.product-thumbnail.is-active {
  border-color: rgba(13, 85, 120, 0.5);
  box-shadow: 0 10px 22px rgba(13, 85, 120, 0.12);
}

.product-thumbnail img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-lightbox {
  z-index: 1200;
}

.product-lightbox-backdrop {
  background: rgba(9, 20, 27, 0.78);
  backdrop-filter: blur(8px);
}

.product-lightbox-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 1rem;
  width: min(96vw, 1180px);
  max-height: min(92vh, 920px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.18s ease;
}

.modal.is-visible .product-lightbox-dialog {
  transform: translateY(0) scale(1);
}

.product-lightbox-close {
  top: 14px;
  right: 14px;
  z-index: 5;
}

.product-lightbox-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(255, 177, 140, 0.16), rgba(255, 255, 255, 0) 38%),
    linear-gradient(180deg, #ffffff 0%, #eef7fc 100%);
}

.product-lightbox-image {
  display: block;
  max-width: 100%;
  max-height: min(70vh, 680px);
  object-fit: contain;
  padding: 18px;
}

.product-lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(13, 85, 120, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--darkgrey);
  font: inherit;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 12px 26px rgba(8, 47, 67, 0.16);
}

.product-lightbox-nav--prev {
  left: 16px;
}

.product-lightbox-nav--next {
  right: 16px;
}

.product-lightbox-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 420px);
  gap: 1rem;
  align-items: end;
}

.product-lightbox-footer h2 {
  margin: 0;
  font-family: var(--jost);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.15;
}

.product-lightbox-counter {
  margin: 0.35rem 0 0;
  color: var(--grey);
  font-weight: 700;
}

.product-lightbox-thumbnails {
  display: flex;
  justify-content: flex-end;
  gap: 0.55rem;
  overflow-x: auto;
  padding-bottom: 0.15rem;
}

.product-lightbox-thumbnail {
  flex: 0 0 68px;
  width: 68px;
  border: 1px solid var(--light-grey);
  border-radius: 12px;
  padding: 0;
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
}

.product-lightbox-thumbnail.is-active {
  border-color: var(--orange);
  box-shadow: 0 8px 18px rgba(255, 119, 93, 0.22);
}

.product-lightbox-thumbnail img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.product-page-main {
  padding-top: clamp(1.25rem, 2.2vw, 2.4rem);
}

.product-page-shell {
  display: grid;
  gap: 28px;
  width: min(100%, 1480px);
  margin: 0 auto;
}

.breadcrumb-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.55rem;
  color: var(--grey);
  font-weight: 600;
}

.breadcrumb-link::before {
  content: "←";
  color: var(--orange);
}

.product-detail-card,
.product-not-found {
  border: 1px solid var(--light-grey);
  border-radius: 28px;
  padding: 34px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(280px, 500px) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.product-detail-media {
  position: sticky;
  top: var(--sticky-header-offset);
  min-width: 0;
}

.product-detail-copy {
  display: grid;
  gap: 1.2rem;
  min-width: 0;
  align-content: start;
}

.product-detail-copy-main {
  display: grid;
  gap: 1.2rem;
  align-content: start;
}

.product-detail-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.product-detail-title {
  margin: 0;
  font-family: var(--jost);
  font-size: clamp(1.5rem, 2.4vw, 2.3rem);
  line-height: 1.04;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.product-detail-secondary {
  font-size: 1rem;
}

.product-detail-meta {
  margin: 0;
  color: var(--grey);
  font-size: 0.95rem;
  line-height: 1.7;
}

.product-detail-description-block {
  display: grid;
  gap: 0.8rem;
}

.product-detail-seo-copy {
  display: grid;
  gap: 0.75rem;
}

.product-detail-description-block h2 {
  margin: 0;
  font-family: var(--jost);
  font-size: 1.45rem;
  line-height: 1.2;
}

.product-detail-description {
  margin: 0;
  color: var(--grey);
  font-size: 1rem;
  line-height: 1.95;
  white-space: pre-line;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.product-detail-description-extra {
  overflow: visible;
}

.product-detail-description.is-collapsed {
  max-height: var(--collapsed-height, 220px);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
}

.product-detail-description.is-expanded {
  max-height: none;
  -webkit-mask-image: none;
  mask-image: none;
}

.product-detail-description-toggle {
  justify-self: start;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--orange-deep);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.product-detail-description-toggle:hover {
  color: var(--orange);
}

.product-detail-description-toggle:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 6px;
}

.product-detail-price-panel {
  border-radius: 24px;
  padding: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  border: 1px solid rgba(13, 85, 120, 0.1);
  align-self: start;
}

.product-detail-price {
  display: block;
  font-family: var(--jost);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
}

.product-detail-price-line {
  display: flex;
  align-items: flex-end;
  gap: 0.55rem;
  margin-bottom: 1.15rem;
}

.product-detail-price-line .product-price-note {
  margin: 0 0 0.18em;
  line-height: 1;
}

.product-detail-purchase-row {
  display: grid;
  gap: 1rem;
}

.product-detail-quantity-stack {
  display: grid;
  gap: 0.45rem;
  justify-items: start;
}

.product-quantity-field {
  display: grid;
  gap: 0.4rem;
  color: var(--grey);
  font-size: 0.86rem;
  font-weight: 700;
}

.product-quantity-field input {
  width: min(100%, 190px);
  min-height: 54px;
  border: 1px solid var(--light-grey);
  border-radius: 16px;
  padding: 0.6rem 0.75rem;
  background: var(--white);
  color: var(--darkgrey);
  font: inherit;
  font-size: 1.05rem;
  font-weight: 700;
}

.product-buy-button {
  min-height: 54px;
  width: 100%;
}

.product-detail-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.product-detail-actions .solid-button,
.product-detail-actions .ghost-button {
  border-radius: 17px;
  padding: 13px 24px;
  min-height: 48px;
}

.related-products {
  display: grid;
  gap: 1.4rem;
  padding: 34px;
  border: 1px solid rgba(13, 85, 120, 0.08);
  border-radius: 28px;
  background: var(--lightblue);
}

.related-products-heading {
  margin-bottom: 0;
}

.related-product-grid .product-card {
  min-height: 100%;
}

.product-not-found h1 {
  margin: 0 0 0.8rem;
  font-family: var(--jost);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.product-not-found p {
  margin: 0;
  color: var(--grey);
  line-height: 1.8;
}

@media (max-width: 1100px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-media {
    position: static;
  }
}

@media (max-width: 780px) {
  .product-card-cta {
    width: 100%;
  }

  .product-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .product-card-purchase-row {
    grid-template-columns: 1fr;
  }

  .product-card-purchase-row .product-price {
    font-size: 1.55rem;
    margin-top: 0;
  }

  .product-card-buy-button {
    width: 100%;
  }

  .product-detail-card,
  .product-not-found {
    border-radius: 22px;
    padding: 24px;
  }

  .product-image-frame--detail,
  .product-image-placeholder--detail {
    min-height: 360px;
  }

  .product-image-zoom-button {
    right: 10px;
    bottom: 10px;
    padding: 0.5rem;
  }

  .product-image-zoom-button span {
    display: none;
  }

  .product-lightbox {
    padding: 0.75rem;
  }

  .product-lightbox-dialog {
    width: 100%;
    max-height: 94vh;
    border-radius: 22px;
    padding: 12px;
  }

  .product-lightbox-media {
    border-radius: 18px;
  }

  .product-lightbox-image {
    max-height: 58vh;
    padding: 10px;
  }

  .product-lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.65rem;
  }

  .product-lightbox-nav--prev {
    left: 8px;
  }

  .product-lightbox-nav--next {
    right: 8px;
  }

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

  .product-lightbox-thumbnails {
    justify-content: flex-start;
  }

  .product-lightbox-thumbnail {
    flex-basis: 58px;
    width: 58px;
  }

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

  .product-detail-purchase-row {
    align-items: stretch;
  }

  .product-quantity-field,
  .product-buy-button {
    width: 100%;
  }

  .product-quantity-field input {
    width: 100%;
  }

  .related-products {
    border-radius: 22px;
    padding: 24px;
  }
}
/* Hierarchy Navigation */
.active-hierarchy[hidden] {
  display: none;
}

.active-hierarchy {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding: 0.95rem 1.15rem;
  border: 1px solid rgba(13, 85, 120, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
}

.active-hierarchy-label {
  color: var(--grey);
  font-size: 0.9rem;
  font-weight: 600;
}

.active-hierarchy strong {
  font-family: var(--jost);
  font-size: 1.05rem;
  line-height: 1.2;
}

.active-hierarchy-clear {
  color: var(--orange-deep);
  font-weight: 700;
}

.product-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  color: var(--grey);
  font-size: calc(0.98rem - 2px);
  line-height: 1.7;
}

.product-breadcrumb-link {
  color: var(--grey);
  transition: color 0.2s ease;
}

.product-breadcrumb-link:hover {
  color: var(--orange-deep);
}

.product-breadcrumb-separator {
  color: rgba(104, 104, 104, 0.55);
}

.product-grid-empty {
  grid-column: 1 / -1;
  border: 1px solid var(--light-grey);
  border-radius: 24px;
  padding: 30px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.product-grid-empty h3 {
  margin: 0 0 0.8rem;
  font-family: var(--jost);
  font-size: 1.6rem;
  font-weight: 600;
}

.product-grid-empty p {
  margin: 0 0 1.4rem;
  color: var(--grey);
  line-height: 1.8;
}

@media (max-width: 780px) {
  .section-soft {
    padding: 22px 0.85rem 36px;
  }

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

  .product-grid-empty {
    grid-column: 1 / -1;
  }

  .product-card {
    min-width: 0;
    gap: 0.62rem;
    padding: 12px;
    border-radius: 16px;
  }

  .product-card .product-image-frame,
  .product-card .product-image-placeholder {
    border-radius: 14px;
  }

  .product-card .product-image {
    padding: 6px;
    transform: scale(1.1);
  }

  .product-card .product-image-zoom-button {
    right: 8px;
    bottom: 8px;
    width: 30px;
    height: 30px;
    padding: 0;
  }

  .product-card .product-meta--clamped {
    display: none;
  }

  .product-card-header {
    gap: 0.45rem;
  }

  .product-card h3 {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.2;
  }

  .product-card-stock-info {
    gap: 0.32rem;
  }

  .product-card .product-badge,
  .product-card .stock-badge,
  .product-card .volume-badge,
  .product-card .product-new-login-badge,
  .product-card .product-condition {
    padding: 0.24rem 0.46rem;
    font-size: 0.68rem;
    line-height: 1.15;
  }

  .product-card .product-condition-icon {
    width: 0.72rem;
    height: 0.72rem;
  }

  .product-card .product-secondary {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .product-card .product-footer {
    gap: 0.45rem;
    padding-top: 0.65rem;
  }

  .product-card .product-card-cta {
    width: 100%;
    padding: 0.62rem 0.55rem;
    font-size: 0.78rem;
  }

  .product-card .product-price {
    font-size: 1.16rem;
  }

  .product-card .product-price--hidden {
    font-size: 0.82rem;
    line-height: 1.25;
  }

  .product-card .product-price-note {
    font-size: 0.72rem;
  }

  .product-card .product-card-purchase-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.45rem;
    align-items: end;
  }

  .product-card .product-card-price-stack {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-end;
    gap: 0.36rem;
    flex-wrap: wrap;
  }

  .product-card .product-card-purchase-row .product-price {
    grid-column: 1 / -1;
    font-size: 1.28rem;
  }

  .product-card .product-card-price-stack .product-price-note {
    margin: 0;
    white-space: nowrap;
  }

  .product-card .product-card-quantity-field {
    font-size: 0.68rem;
  }

  .product-card .product-card-quantity-field input {
    min-height: 38px;
    border-radius: 12px;
    padding: 0.42rem 0.48rem;
    font-size: 0.88rem;
  }

  .product-card .product-card-buy-button {
    width: auto;
    min-height: 38px;
    border-radius: 13px;
    padding: 9px 12px;
    font-size: 0.86rem;
  }

  .product-card .product-price-meta {
    min-height: 0;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .product-card .cart-inline-feedback {
    font-size: 0.72rem;
  }

  .product-card .product-image-placeholder {
    gap: 0.5rem;
    padding: 12px;
  }

  .product-card .product-image-placeholder-tag {
    padding: 0.26rem 0.5rem;
    font-size: 0.62rem;
  }

  .product-card .product-image-placeholder strong {
    max-width: 10ch;
    font-size: 1.15rem;
  }

  .product-card .product-image-placeholder p {
    display: none;
  }
}

/* v1 visual refresh from v2: design only, no text or functionality changes */
:root {
  --container: 100vw;
  --white: #ffffff;
  --darkgrey: #212121;
  --blue: #0d5578;
  --blue-deep: #093b54;
  --lightblue: #eef7fc;
  --orange: #ff8264;
  --orange-deep: #e36648;
  --lightorange: #fbf2ef;
  --grey: #686868;
  --light-grey: #e9e9e9;
}

html,
body {
  min-width: 320px;
  background: #ffffff;
}

body {
  color: var(--darkgrey);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.topbar {
  justify-content: center;
  padding: 0.72rem clamp(1rem, 2.2vw, 2.75rem);
  background: var(--darkgrey);
}

.topbar-link {
  text-align: center;
}

.site-header,
.section,
.site-footer-inner {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: clamp(1rem, 2.2vw, 2.75rem);
  padding-right: clamp(1rem, 2.2vw, 2.75rem);
}

.site-header {
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(33, 33, 33, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(8, 47, 67, 0.06);
}

.brand-logo-wide,
.footer-logo-wide {
  width: clamp(180px, 15vw, 256px);
}

.site-nav a {
  color: var(--grey);
  font-weight: 700;
}

.section {
  padding-bottom: clamp(3.25rem, 5.6vw, 6.5rem);
}

.solid-button,
.ghost-button,
.filter-button,
.cart-button,
.account-icon-button,
.language-switcher,
.language-switcher-button,
.mobile-menu-toggle,
.mobile-menu-close,
.catalog-menu-button,
.catalog-menu-show-button,
.catalog-menu-round-link,
.catalog-menu-close,
.catalog-watch-button,
.product-watch-button,
.product-card-cta,
.product-card-buy-button,
.product-buy-button,
.product-detail-actions .solid-button,
.product-detail-actions .ghost-button,
.footer-social-link,
.modal-close,
.password-toggle,
.checkout-method,
.cart-remove-button,
.account-switcher-link,
.account-tab,
.account-reorder-button {
  border-radius: 4px;
}

.solid-button,
.ghost-button,
.filter-button {
  box-shadow: none;
  font-weight: 700;
}

.solid-button:hover,
.ghost-button:hover,
.filter-button:hover,
.trust-strip-button:hover,
.footer-social-link:hover {
  transform: none;
}

.home-hero {
  min-height: 620px;
  padding: clamp(3rem, 6vw, 6.5rem) clamp(1rem, 2.2vw, 2.75rem);
  border-bottom: 1px solid rgba(33, 33, 33, 0.1);
  background: #ffffff;
}

.hero-copy {
  min-height: 420px;
  max-width: min(100%, 54rem);
}

.hero-copy h1 {
  max-width: 17ch;
  color: var(--darkgrey);
  font-weight: 700;
}

.hero-copy h1 span {
  color: var(--orange);
}

.hero-lead,
.hero-note {
  color: var(--grey);
}

.hero-figure {
  inset: 0 0 0 46%;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-figure::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.96) 28%, rgba(255, 255, 255, 0.82) 48%, rgba(255, 255, 255, 0.46) 66%, rgba(255, 255, 255, 0.1) 84%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.22) 44%, rgba(255, 255, 255, 0.68) 100%);
}

.hero-figure img {
  filter: saturate(0.98) brightness(1.02) contrast(1.02);
}

.hero-carousel-dots,
.hero-carousel-arrow,
.hero-carousel-dot {
  border-radius: 4px;
  box-shadow: none;
}

.hero-carousel-dot.is-active {
  background: var(--orange);
}

.section-soft {
  border-radius: 0;
  padding: clamp(2rem, 3vw, 3.25rem) clamp(1rem, 2.2vw, 2.75rem) clamp(3.5rem, 5vw, 5.75rem);
  border-top: 1px solid rgba(33, 33, 33, 0.08);
  border-bottom: 1px solid rgba(33, 33, 33, 0.08);
  background: var(--lightblue);
}

.home-products-section {
  padding-top: clamp(1.7rem, 2.4vw, 2.7rem);
  padding-bottom: clamp(2.6rem, 4vw, 4.5rem);
}

.section-heading {
  width: 100%;
}

.product-grid {
  --product-grid-min-card: 320px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--product-grid-min-card)), 1fr));
  gap: clamp(0.95rem, 1.3vw, 1.4rem);
}

@media (min-width: 1840px) {
  .product-grid .product-card h3 {
    font-size: 1.12rem;
    line-height: 1.24;
  }
}

.home-product-grid {
  --product-grid-min-card: 260px;

  grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--product-grid-min-card)), 1fr));
  gap: clamp(0.72rem, 0.9vw, 1.05rem);
}

.home-product-grid .product-card {
  gap: 0.72rem;
  padding: clamp(0.78rem, 0.82vw, 1rem);
  border-color: rgba(33, 33, 33, 0.1);
  background: rgba(255, 255, 255, 0.98);
}

.home-product-grid .product-image-frame,
.home-product-grid .product-image-placeholder {
  aspect-ratio: 5 / 4;
}

.home-product-grid .product-image {
  padding: 8px;
}

.home-product-grid .product-image-zoom-button {
  right: 10px;
  bottom: 10px;
  padding: 0.42rem 0.58rem;
  font-size: 0.72rem;
}

.home-product-grid .product-card-header {
  gap: 0.52rem;
}

.home-product-grid .product-title {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  font-size: clamp(1rem, 0.85vw, 1.12rem);
  line-height: 1.22;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-product-grid .product-meta--clamped {
  font-size: 0.86rem;
  line-height: 1.45;
  -webkit-line-clamp: 3;
}

.home-product-grid .product-badge,
.home-product-grid .stock-badge,
.home-product-grid .volume-badge,
.home-product-grid .product-new-login-badge,
.home-product-grid .product-condition {
  padding: 0.24rem 0.48rem;
  font-size: 0.7rem;
  line-height: 1.15;
}

.home-product-grid .product-condition-icon {
  width: 0.72rem;
  height: 0.72rem;
}

.home-product-grid .product-footer {
  gap: 0.6rem;
  padding-top: 0.72rem;
}

.home-product-grid .product-card-cta {
  padding: 0.62rem 0.72rem;
  font-size: 0.78rem;
}

.home-product-grid .product-price--hidden {
  font-size: 0.88rem;
  line-height: 1.25;
}

@media (min-width: 2200px) {
  .home-product-grid {
    --product-grid-min-card: 238px;
  }
}

@media (min-width: 3600px) {
  .home-product-grid {
    --product-grid-min-card: 220px;
  }
}

@media (max-width: 780px) {
  .home-product-grid {
    --product-grid-min-card: 154px;
  }
}

.benefit-card,
.product-card,
.registration-form,
.login-form,
.step-card,
.terms-card,
.registration-flow-card,
.password-reset-card,
.account-info-card,
.account-entry-card,
.account-hero-heading,
.account-dashboard-hero,
.account-summary-card,
.account-history-panel,
.account-empty-card,
.account-order-card,
.account-profile-form,
.account-export-panel,
.product-detail-card,
.product-not-found,
.related-products,
.product-grid-empty,
.modal-dialog,
.cart-add-notice-dialog,
.product-lightbox-dialog,
.external-redirect-card,
.catalog-watch-panel,
.active-hierarchy {
  border-radius: 4px;
  border-color: rgba(33, 33, 33, 0.12);
  box-shadow: none;
}

.product-card {
  min-height: 100%;
  padding: clamp(1rem, 1.35vw, 1.45rem);
  background: var(--white);
}

.product-card-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 130, 100, 0.55);
  box-shadow: 0 14px 34px rgba(33, 33, 33, 0.08);
}

.product-badge,
.stock-badge,
.volume-badge,
.product-new-login-badge,
.product-condition,
.product-condition--with-description,
.cart-count,
.account-order-status,
.product-image-placeholder-tag,
.active-hierarchy,
.catalog-filter-checkbox,
.footer-social-icon {
  border-radius: 3px;
}

.product-image-frame,
.product-image-placeholder,
.product-image-frame--detail,
.product-image-placeholder--detail,
.product-thumbnail,
.product-lightbox-media,
.product-lightbox-thumbnail,
.cart-item-image,
.cart-availability-warning,
.checkout-panel,
.cart-confirmation-card,
.catalog-select,
.catalog-price-filter input,
.registration-form input,
.registration-form select,
.registration-form textarea,
.login-form input,
.password-reset-card input,
.modal-form input,
.modal-form .password-field,
.password-field,
.cart-note-field textarea,
.cart-item-controls input,
.product-card-quantity-field input,
.product-quantity-field input {
  border-radius: 4px;
}

.product-image-frame,
.product-image-placeholder {
  background: #f8fbfd;
}

.trust-strip {
  padding-top: 0;
}

.trust-strip-inner {
  border-radius: 0;
  padding: clamp(2.25rem, 4vw, 4.5rem) clamp(1rem, 2.2vw, 2.75rem);
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 58%, #082f43 100%);
  box-shadow: none;
}

.trust-strip-inner::before,
.trust-strip-inner::after {
  display: none;
}

.trust-strip-stat,
.trust-strip-button,
.registration-hero-copy,
.password-reset-copy {
  border-radius: 4px;
}

.trust-strip-stat {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: none;
}

.catalog-sticky-filter-bar,
.catalog-menu-panel,
.mobile-menu-panel {
  border-radius: 0;
}

.catalog-menu-backdrop,
.mobile-menu-backdrop,
.modal-backdrop {
  backdrop-filter: none;
}

.product-detail-price-panel {
  border-radius: 4px;
  background: #f8fbfd;
}

.site-footer {
  margin-top: 0;
  padding: clamp(3rem, 5vw, 5.5rem) 0;
  background: var(--darkgrey);
}

.site-footer-inner {
  gap: clamp(1.5rem, 3vw, 4rem);
}

.external-redirect-page {
  background: linear-gradient(180deg, #ffffff 0%, #eef7fc 100%);
}

.product-lightbox-media {
  background: linear-gradient(180deg, #ffffff 0%, #eef7fc 100%);
}

* {
  letter-spacing: 0 !important;
}

@media (max-width: 1100px) {
  .home-hero {
    min-height: 640px;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .hero-figure {
    inset: 18% 0 0 30%;
    clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%);
  }

  .hero-figure::before {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.74) 42%, rgba(255, 255, 255, 0.2) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.74) 0%, rgba(255, 255, 255, 0.2) 46%, rgba(255, 255, 255, 0.82) 100%);
  }

  .trust-strip-heading {
    display: grid;
  }
}

@media (max-width: 780px) {
  .site-header,
  .section,
  .site-footer-inner {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .topbar {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .home-hero {
    min-height: 680px;
    padding: 2.2rem 0.85rem 2rem;
  }

  .hero-copy {
    min-height: 370px;
  }

  .hero-figure {
    inset: 42% 0 0 0;
    clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 100%);
  }

  .hero-figure::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 34%, rgba(255, 255, 255, 0.38) 72%, rgba(255, 255, 255, 0.08) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.28) 100%);
  }

  .section-soft {
    padding: 1.5rem 0.85rem 2.5rem;
  }

  .product-card,
  .product-card .product-image-frame,
  .product-card .product-image-placeholder,
  .product-detail-card,
  .product-not-found,
  .related-products,
  .product-lightbox-dialog,
  .product-lightbox-media,
  .product-card .product-card-quantity-field input,
  .product-card .product-card-buy-button {
    border-radius: 4px;
  }
}

/* v1 split hero from v2 */
.v2-hero-showcase {
  min-height: auto;
  padding-top: clamp(1.2rem, 2.3vw, 2.2rem);
  padding-bottom: clamp(2.2rem, 3.8vw, 3.6rem);
  background: #ffffff;
}

.v2-hero-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(360px, 0.95fr);
  gap: clamp(1rem, 1.4vw, 1.4rem);
  align-items: stretch;
  width: 100%;
}

.v2-hero-slider-panel {
  position: relative;
  height: clamp(500px, 35vw, 650px);
  min-height: 0;
}

.v2-hero-slider-panel .hero-slides {
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(33, 33, 33, 0.12);
  border-radius: 4px;
  background: #ffffff;
}

.v2-hero-slider-panel .hero-slide {
  height: 100%;
  min-height: 0;
}

.v2-hero-slider-panel .hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  height: 100%;
  min-height: 0;
  max-width: min(100%, 47rem);
  padding: clamp(2rem, 4.7vw, 4.5rem);
  color: var(--darkgrey);
}

.v2-hero-slider-panel .hero-copy h1 {
  max-width: 15ch;
  margin-bottom: clamp(1.2rem, 1.8vw, 1.8rem);
  color: var(--darkgrey);
  font-size: clamp(3.1rem, 5.4vw, 6.5rem);
  line-height: 0.94;
}

.v2-hero-slider-panel .hero-slide--sell .hero-copy h1 {
  max-width: 20ch;
  text-wrap: pretty;
}

.v2-hero-slider-panel .hero-slide--sell .hero-copy h1 span {
  display: block;
}

.v2-hero-slider-panel .hero-copy h1 span {
  color: var(--orange);
}

.v2-hero-slider-panel .section-kicker,
.v2-hero-finds-heading .section-kicker,
.v2-hero-find-category {
  color: var(--orange-deep);
}

.v2-hero-slider-panel .section-kicker::before,
.v2-hero-finds-heading .section-kicker::before {
  background: currentColor;
}

.v2-hero-slider-panel .hero-lead,
.v2-hero-slider-panel .hero-note {
  max-width: 42rem;
  color: var(--grey);
}

.v2-hero-slider-panel .hero-figure {
  inset: 0;
  clip-path: none;
}

.v2-hero-slider-panel .hero-figure::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.96) 28%, rgba(255, 255, 255, 0.82) 48%, rgba(255, 255, 255, 0.46) 66%, rgba(255, 255, 255, 0.1) 84%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.22) 44%, rgba(255, 255, 255, 0.68) 100%);
}

.v2-hero-slider-panel .hero-figure img {
  object-position: center center;
  filter: saturate(0.98) brightness(1.02) contrast(1.02);
}

.v2-hero-slider-panel .hero-sleep-signs {
  position: absolute;
  top: clamp(-3.1rem, -4vw, -1.4rem);
  right: clamp(1.4rem, 6vw, 5.8rem);
  z-index: 5;
  width: min(34vw, 360px);
  height: clamp(190px, 24vw, 290px);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.hero-carousel.is-sleep-slide .hero-sleep-signs,
.hero-carousel:has(.hero-slide--sleep.is-active) .hero-sleep-signs {
  opacity: 1;
  visibility: visible;
}

.hero-sleep-sign {
  position: absolute;
  display: inline-block;
  font-family: var(--jost);
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 125, 97, 0.9);
  text-shadow:
    0 10px 24px rgba(8, 47, 67, 0.14),
    0 0 1px rgba(255, 255, 255, 0.95);
  animation: sleep-sign-drift 4.6s cubic-bezier(0.42, 0, 0.2, 1) infinite;
  will-change: transform;
}

.hero-sleep-sign--one {
  top: 40%;
  left: 52%;
  font-size: clamp(2.4rem, 4.5vw, 5.3rem);
  transform: rotate(-7deg);
}

.hero-sleep-sign--two {
  top: 19%;
  left: 28%;
  font-size: clamp(1.7rem, 3.2vw, 3.6rem);
  opacity: 0.76;
  animation-delay: -1.1s;
  animation-duration: 5s;
}

.hero-sleep-sign--three {
  top: 10%;
  left: 72%;
  font-size: clamp(1.25rem, 2.2vw, 2.5rem);
  opacity: 0.6;
  animation-delay: -2.1s;
  animation-duration: 5.4s;
}

@keyframes sleep-sign-drift {
  0%,
  100% {
    transform: translate3d(0, -14px, 0) rotate(-10deg);
  }

  35% {
    transform: translate3d(-16px, 12px, 0) rotate(8deg);
  }

  70% {
    transform: translate3d(14px, 34px, 0) rotate(-4deg);
  }
}

.v2-hero-slider-panel .hero-actions .solid-button,
.v2-hero-finds-footer .solid-button {
  background: var(--orange);
  color: var(--white);
}

.v2-hero-slider-panel .hero-actions .solid-button:hover,
.v2-hero-finds-footer .solid-button:hover {
  background: var(--orange-deep);
}

.v2-hero-slider-panel .hero-actions .ghost-button {
  border-color: rgba(33, 33, 33, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: var(--darkgrey);
}

.v2-hero-slider-panel .hero-actions .ghost-button:hover {
  border-color: var(--orange);
  color: var(--orange-deep);
}

.v2-hero-slider-panel .hero-carousel-controls {
  position: absolute;
  inset: auto 0 -26px;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.v2-hero-slider-panel .hero-carousel-dots {
  position: static;
  transform: none;
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.v2-hero-slider-panel .hero-carousel-dot {
  width: 46px;
  height: 8px;
  background: rgba(13, 85, 120, 0.14);
}

.v2-hero-slider-panel .hero-carousel-dot.is-active {
  width: 46px;
  background: var(--orange);
}

.v2-hero-finds {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(1.1rem, 1.4vw, 1.45rem);
  min-height: clamp(500px, 35vw, 650px);
  border: 1px solid rgba(33, 33, 33, 0.12);
  border-radius: 4px;
  padding: clamp(1.35rem, 2vw, 2rem);
  background: var(--white);
}

.v2-hero-finds-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.9rem 1rem;
  align-items: start;
}

.v2-hero-finds-heading .section-kicker {
  grid-column: 1 / -1;
  margin: 0;
}

.v2-hero-finds-heading h2 {
  margin: 0;
  color: var(--darkgrey);
  font-family: var(--jost);
  font-size: clamp(1.54rem, 2.1vw, 2.38rem);
  line-height: 1.02;
}

.v2-hero-finds-heading .ghost-button {
  align-self: start;
  padding: 0.8rem 1rem;
}

.v2-hero-finds-list {
  display: grid;
  align-content: start;
  border-top: 1px solid rgba(33, 33, 33, 0.1);
}

.v2-hero-find-row {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) minmax(5.7rem, auto);
  gap: 0.85rem;
  align-items: center;
  min-height: 116px;
  border-bottom: 1px solid rgba(33, 33, 33, 0.1);
  padding: 1rem 0;
}

a.v2-hero-find-row {
  transition: color 0.18s ease, transform 0.18s ease;
}

a.v2-hero-find-row:hover {
  color: var(--orange-deep);
  transform: translateX(2px);
}

.v2-hero-find-thumb {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  overflow: hidden;
  border: 1px solid rgba(33, 33, 33, 0.1);
  border-radius: 4px;
  background: var(--lightblue);
  color: var(--blue);
  font-family: var(--jost);
  font-weight: 800;
}

.v2-hero-find-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v2-hero-find-copy {
  display: grid;
  gap: 0.22rem;
  min-width: 0;
}

.v2-hero-find-category {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.v2-hero-find-copy strong {
  color: var(--darkgrey);
  font-family: var(--jost);
  font-size: clamp(0.9rem, 0.92vw, 1.04rem);
  line-height: 1.16;
  overflow-wrap: anywhere;
}

.v2-hero-find-copy span:last-child {
  color: var(--grey);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

.v2-hero-find-price {
  justify-self: end;
  max-width: 6.5rem;
  color: var(--orange-deep);
  font-family: var(--jost);
  font-size: clamp(0.82rem, 0.9vw, 1rem);
  font-weight: 800;
  line-height: 1.1;
  text-align: right;
}

.v2-hero-finds-footer {
  display: grid;
  grid-template-columns: auto;
  gap: 1rem;
  align-items: center;
  justify-content: end;
}

.v2-hero-finds-footer span {
  color: var(--grey);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

.v2-hero-finds-footer .solid-button {
  padding: 0.9rem 1rem;
}

@media (max-width: 1180px) {
  .v2-hero-showcase-grid {
    grid-template-columns: 1fr;
  }

  .v2-hero-slider-panel,
  .v2-hero-finds {
    height: auto;
    min-height: auto;
  }

  .v2-hero-slider-panel .hero-slides,
  .v2-hero-slider-panel .hero-slide {
    height: auto;
    min-height: auto;
  }

  .v2-hero-slider-panel .hero-copy {
    height: auto;
    min-height: clamp(480px, 58vw, 620px);
  }

  .v2-hero-finds-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }

  .v2-hero-find-row {
    grid-template-columns: 70px minmax(0, 1fr);
    align-content: start;
    min-height: 100%;
    padding: 1rem;
    border-right: 1px solid rgba(33, 33, 33, 0.1);
  }

  .v2-hero-find-row:last-child {
    border-right: 0;
  }

  .v2-hero-find-price {
    grid-column: 2;
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 780px) {
  .v2-hero-showcase {
    padding-top: 1rem;
  }

  .v2-hero-slider-panel .hero-copy {
    min-height: 560px;
    padding: 1.35rem;
  }

  .v2-hero-slider-panel .hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(3rem, 13vw, 4.3rem);
  }

  .v2-hero-slider-panel .hero-slide--sell .hero-copy h1 {
    font-size: clamp(2.75rem, 11vw, 3.6rem);
  }

  .v2-hero-slider-panel .hero-figure::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 34%, rgba(255, 255, 255, 0.38) 72%, rgba(255, 255, 255, 0.08) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.28) 100%);
  }

  .v2-hero-slider-panel .hero-sleep-signs {
    top: clamp(18rem, 78vw, 23rem);
    right: 0.4rem;
    width: min(38vw, 150px);
    height: 160px;
  }

  .hero-sleep-sign--one {
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  .hero-sleep-sign--two {
    font-size: clamp(1.35rem, 6.5vw, 2.35rem);
  }

  .hero-sleep-sign--three {
    font-size: clamp(1rem, 5vw, 1.7rem);
  }

  .v2-hero-finds {
    padding: 1.1rem;
  }

  .v2-hero-finds-heading {
    grid-template-columns: 1fr;
  }

  .v2-hero-finds-heading .ghost-button {
    width: 100%;
  }

  .v2-hero-finds-list {
    grid-template-columns: 1fr;
  }

  .v2-hero-find-row {
    grid-template-columns: 64px minmax(0, 1fr);
    padding: 0.85rem 0;
    border-right: 0;
  }

  .v2-hero-find-thumb {
    width: 64px;
    height: 64px;
  }

  .v2-hero-finds-footer {
    grid-template-columns: 1fr;
  }

  .v2-hero-finds-footer .solid-button {
    width: 100%;
  }
}

/* Ultrawide layout balance: keep commerce areas broad, but center content blocks. */
:root {
  --content-section-max: 1240px;
  --commerce-section-max: 2240px;
}

.section:not(.home-hero):not(.home-products-section):not(.catalog-page-main):not(.product-page-main),
.site-footer-inner {
  width: min(calc(100% - 2rem), var(--content-section-max));
  max-width: var(--content-section-max);
  margin-left: auto;
  margin-right: auto;
}

#foretagskonto {
  width: min(calc(100% - 2rem), var(--content-section-max));
  max-width: var(--content-section-max);
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1840px) {
  .site-header,
  .home-products-section,
  .catalog-page-main,
  .product-page-main {
    padding-left: clamp(2.75rem, 3vw, 5rem);
    padding-right: clamp(2.75rem, 3vw, 5rem);
  }

  .home-products-section .section-heading,
  .home-products-section .product-grid,
  .catalog-page,
  .product-page-shell {
    max-width: var(--commerce-section-max);
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 780px) {
  .section:not(.home-hero):not(.home-products-section):not(.catalog-page-main):not(.product-page-main),
  #foretagskonto,
  .site-footer-inner {
    width: 100%;
    max-width: none;
  }
}
































