:root {
  --acid: #ebff8c;
  --sage: #b1bbb0;
  --sage-deep: #7f8c82;
  --ash: #e9eeea;
  --ash-2: #f4f7f4;
  --ink: #000000;
  --paper: #ffffff;
  --muted: #6f746f;
  --line: rgba(0, 0, 0, 0.1);
  --line-strong: rgba(0, 0, 0, 0.2);
  --soft-shadow: 0 24px 70px rgba(34, 39, 36, 0.12);
  --tight-shadow: 0 10px 28px rgba(34, 39, 36, 0.11);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

#colecciones,
#productos,
#materiales,
#contacto,
.commerce-grid,
.consultation-section {
  scroll-margin-top: 150px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 11% 6%, rgba(235, 255, 140, 0.36), transparent 0 24%, transparent 42%),
    linear-gradient(180deg, #f8faf7 0%, var(--ash) 52%, #f8faf7 100%);
  color: var(--ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 14px;
  overflow-x: hidden;
}

body.drawer-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

button,
select {
  color: inherit;
}

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

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

svg {
  display: block;
}

.brand-strip {
  position: relative;
  z-index: 25;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.strip-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.strip-track span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(248, 250, 247, 0.78);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
}

.site-header.scrolled {
  box-shadow: 0 16px 40px rgba(25, 31, 27, 0.08);
}

.site-header > *,
.hero-copy,
.filters,
.products-area,
.product-card {
  min-width: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
}

.site-header .logo {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
}

.logo-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 900;
}

.logo span:last-child {
  font-size: clamp(1.08rem, 1.4vw, 1.45rem);
  font-weight: 850;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
}

.main-nav {
  display: inline-flex;
  grid-column: 1;
  grid-row: 1;
  gap: 7px;
  align-items: center;
  justify-content: flex-start;
  width: max-content;
  padding: 5px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 10px 22px rgba(35, 43, 38, 0.05);
}

.main-nav a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  color: #242824;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: none;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.main-nav a:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-1px);
}

.cart-button,
.icon-button,
.favorite-button,
.add-button,
.remove-line,
.cart-line-actions button {
  -webkit-tap-highlight-color: transparent;
}

.cart-button,
.icon-button {
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.site-header .cart-button {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
}

.cart-button {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: var(--tight-shadow);
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.cart-button:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-1px);
}

.cart-button svg,
.icon-button svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -2px;
  display: inline-grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  padding: 0 5px;
  border: 2px solid var(--paper);
  border-radius: 999px;
  background: var(--acid);
  color: var(--ink);
  font-size: 0.66rem;
  font-weight: 900;
}

.mobile-cart-fab {
  display: none;
}

.catalog-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(18px, 3vw, 46px);
  align-items: stretch;
  min-height: 660px;
  padding: clamp(24px, 4vw, 56px);
  overflow: hidden;
}

.catalog-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.38)),
    radial-gradient(circle at 78% 25%, rgba(177, 187, 176, 0.32), transparent 0 28%, transparent 50%);
  content: "";
}

.hero-copy {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: clamp(8px, 2vw, 28px) 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sage-deep);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(4.4rem, 8vw, 8.2rem);
  font-weight: 500;
  line-height: 0.86;
  text-transform: none;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.45rem, 2.2vw, 2.35rem);
  font-weight: 500;
  line-height: 1.02;
}

h3 {
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 490px;
  margin-bottom: 26px;
  color: #242824;
  font-size: 1.04rem;
  font-weight: 400;
  line-height: 1.45;
}

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

.primary-link,
.ghost-link,
.checkout-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease;
}

.primary-link {
  padding: 0 22px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
}

.primary-link:hover {
  background: #1e211f;
  transform: translateY(-2px);
}

.ghost-link {
  padding: 0 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
}

.ghost-link:hover {
  background: var(--acid);
  transform: translateY(-2px);
}

.hero-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 118px));
  gap: 10px;
  max-width: 430px;
  margin-top: 54px;
}

.hero-kpis div {
  min-height: 78px;
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(14px);
}

.hero-kpis strong,
.hero-kpis span {
  display: block;
}

.hero-kpis strong {
  margin-bottom: 5px;
  font-size: 1.45rem;
  font-weight: 500;
}

.hero-kpis span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-product {
  display: grid;
  align-items: center;
}

.showcase-panel {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(233, 238, 234, 0.82)),
    var(--ash);
  box-shadow: var(--soft-shadow);
}

.showcase-panel::before {
  position: absolute;
  top: -150px;
  right: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: var(--acid);
  content: "";
  filter: blur(56px);
  opacity: 0.48;
}

.showcase-panel::after {
  position: absolute;
  right: 7%;
  bottom: 54px;
  width: 64%;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.16);
  content: "";
  filter: blur(22px);
}

.showcase-toolbar {
  position: absolute;
  top: 20px;
  right: 20px;
  left: 20px;
  z-index: 3;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 6px 8px 6px 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #232923;
  font-size: 0.76rem;
  font-weight: 800;
  backdrop-filter: blur(18px);
}

.panel-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: inset 0 0 0 7px rgba(0, 0, 0, 0.06);
}

.showcase-image {
  position: absolute;
  inset: 74px 4% 24px;
  z-index: 2;
  background-image: url("assets/watch-products.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: min(780px, 112%) auto;
  filter: saturate(0.94) contrast(1.02) drop-shadow(0 30px 34px rgba(0, 0, 0, 0.17));
  mix-blend-mode: multiply;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 4px;
  min-width: 172px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 44px rgba(36, 42, 39, 0.14);
  backdrop-filter: blur(18px);
}

.floating-card span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.floating-card strong {
  font-size: 0.98rem;
  font-weight: 800;
}

.floating-card-main {
  left: 24px;
  bottom: 34px;
}

.floating-card-accent {
  right: 24px;
  bottom: 126px;
  background: rgba(235, 255, 140, 0.72);
}

.category-band {
  position: sticky;
  top: 76px;
  z-index: 18;
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 12px clamp(18px, 4vw, 56px);
  overflow-x: auto;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(248, 250, 247, 0.76);
  backdrop-filter: blur(18px);
  scrollbar-width: none;
}

.category-band::-webkit-scrollbar {
  display: none;
}

.category-chip {
  display: inline-flex;
  min-height: 38px;
  flex: 0 0 auto;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: #303530;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.category-chip:hover,
.category-chip.active {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-1px);
}

.catalog-search {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.52fr);
  gap: 18px;
  align-items: stretch;
  padding: 28px clamp(18px, 4vw, 56px) 0;
}

.catalog-search-copy,
.search-control {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 30px rgba(35, 43, 38, 0.06);
  backdrop-filter: blur(18px);
}

.catalog-search-copy {
  min-height: 114px;
  padding: 22px 24px;
}

.catalog-search-copy .eyebrow {
  margin-bottom: 12px;
}

.catalog-search-copy h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 3.35rem);
  line-height: 0.98;
}

.search-control {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 38px;
  gap: 14px;
  align-items: center;
  min-height: 114px;
  padding: 20px;
}

.search-control > span {
  color: var(--muted);
}

.search-control input {
  min-width: 0;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 750;
  outline: 0;
}

.search-control input::placeholder {
  color: rgba(0, 0, 0, 0.42);
  font-weight: 700;
}

.search-control button {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.search-control button:hover {
  background: var(--acid);
  color: var(--ink);
  transform: rotate(8deg);
}

.search-control button[hidden] {
  display: none;
}

.search-control svg {
  width: 18px;
  height: 18px;
}

.shop-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px) 38px;
}

.filters {
  position: sticky;
  top: 146px;
  align-self: start;
  display: grid;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 30px rgba(35, 43, 38, 0.06);
  backdrop-filter: blur(18px);
}

.filter-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.filter-header-actions {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.filter-close,
.mobile-filter-button {
  display: none;
}

.filter-header h2 {
  font-size: 1.35rem;
}

.filter-header .eyebrow {
  margin-bottom: 6px;
}

.icon-button {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  background: var(--paper);
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.icon-button:hover {
  background: var(--ink);
  color: var(--paper);
  transform: rotate(-10deg);
}

.filter-group {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.filter-group h3,
.price-row h3 {
  margin: 0 0 12px;
  color: #242924;
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.filter-group label {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 28px;
  color: #343934;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
}

.filter-group input[type="checkbox"] {
  position: relative;
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.24);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
}

.filter-group input[type="checkbox"]::after {
  position: absolute;
  inset: 3px;
  border-radius: 2px;
  background: var(--ink);
  content: "";
  opacity: 0;
  transform: scale(0.5);
  transition:
    opacity 0.16s ease,
    transform 0.16s ease;
}

.filter-group input[type="checkbox"]:checked {
  border-color: var(--ink);
  background: var(--acid);
}

.filter-group input[type="checkbox"]:checked::after {
  opacity: 1;
  transform: scale(1);
}

.price-row {
  display: flex;
  gap: 12px;
  align-items: baseline;
  justify-content: space-between;
}

.price-row span {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
  white-space: nowrap;
}

.range {
  width: 100%;
  accent-color: var(--ink);
}

.filter-note {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  background: var(--acid);
  color: #2b3329;
  font-size: 0.78rem;
  line-height: 1.35;
}

.filter-note strong {
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.products-area {
  min-width: 0;
}

.products-toolbar {
  display: flex;
  gap: 18px;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 82px;
  margin-bottom: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(18px);
}

.products-toolbar .eyebrow {
  margin-bottom: 5px;
}

.toolbar-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.mobile-filter-button {
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 850;
}

.mobile-filter-button svg {
  width: 16px;
  height: 16px;
}

.sort-control {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.sort-control span {
  color: #303630;
}

.sort-control select {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-weight: 850;
}

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

.product-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 430px;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 12px 28px rgba(35, 43, 38, 0.06);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.product-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 36%), var(--accent), transparent 0 34%, transparent 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(233, 238, 234, 0.7));
  content: "";
  opacity: 0.38;
  transition: opacity 0.22s ease;
}

.product-card:hover,
.product-card:focus-within {
  border-color: rgba(0, 0, 0, 0.13);
  box-shadow: var(--soft-shadow);
  transform: translateY(-6px);
}

.product-card:hover::before,
.product-card:focus-within::before {
  opacity: 0.54;
}

.favorite-button {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

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

.favorite-button.active {
  background: var(--ink);
  color: var(--paper);
}

.favorite-button svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.8;
}

.favorite-button.active svg {
  fill: currentColor;
}

.watch-stage {
  position: relative;
  display: grid;
  min-height: 268px;
  place-items: center;
  padding: 42px 24px 16px;
}

.watch-art {
  position: relative;
  z-index: 2;
  width: min(78%, 238px);
  aspect-ratio: 1 / 1;
  background-image: var(--product-image, url("assets/watch-products.png"));
  background-position: var(--product-position, var(--x) var(--y));
  background-size: var(--product-size, 300% 200%);
  background-repeat: var(--product-repeat, no-repeat);
  filter: saturate(0.94) contrast(1.02) drop-shadow(0 20px 18px rgba(0, 0, 0, 0.18));
  mix-blend-mode: multiply;
  transform: translateY(0);
  transition:
    filter 0.24s ease,
    transform 0.24s ease;
}

.watch-glow {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 1;
  width: 54%;
  height: 18px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  filter: blur(12px);
  transform: translateX(-50%);
}

.product-card:hover .watch-art,
.product-card:focus-within .watch-art {
  filter: saturate(1) contrast(1.04) drop-shadow(0 26px 22px rgba(0, 0, 0, 0.2));
  transform: translateY(-8px) scale(1.04);
}

.product-card.out-of-stock .watch-art {
  filter: grayscale(0.72) opacity(0.68) drop-shadow(0 18px 16px rgba(0, 0, 0, 0.16));
}

.badge {
  position: absolute;
  top: 18px;
  left: 16px;
  z-index: 3;
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(235, 255, 140, 0.86);
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card.out-of-stock .badge {
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
}

.product-body {
  display: flex;
  min-height: 162px;
  flex: 1;
  flex-direction: column;
  padding: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.46);
  backdrop-filter: blur(10px);
}

.product-meta {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.product-meta span + span::before {
  content: "/";
  margin-right: 6px;
}

.product-card h3 {
  margin: 0 44px 8px 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 850;
  line-height: 1.12;
}

.product-card p {
  display: -webkit-box;
  margin: 0 0 14px;
  overflow: hidden;
  color: #4e544f;
  font-size: 0.82rem;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-footer {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.card-price {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.price-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: baseline;
}

.old-price {
  color: #8b918c;
  font-size: 0.78rem;
  font-weight: 750;
  text-decoration: line-through;
  white-space: nowrap;
}

.shipping-badge {
  display: inline-flex;
  width: max-content;
  min-height: 22px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(235, 255, 140, 0.92);
  color: var(--ink);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-actions {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.detail-link {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 850;
  white-space: nowrap;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.detail-link:hover {
  background: var(--acid);
  transform: translateY(-1px);
}

.price {
  color: var(--ink);
  font-size: 1.06rem;
  font-weight: 850;
  white-space: nowrap;
}

.add-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  font-size: 0;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.add-button:hover {
  background: var(--acid);
  color: var(--ink);
  transform: translateY(-2px);
}

.add-button.clicked {
  transform: scale(0.94);
}

.button-icon,
.button-icon svg {
  width: 18px;
  height: 18px;
}

.add-button:disabled {
  background: var(--sage);
  color: rgba(0, 0, 0, 0.46);
  cursor: not-allowed;
}

.add-button:disabled:hover {
  transform: none;
}

.empty-state {
  padding: 42px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.service-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0 clamp(18px, 4vw, 56px) 56px;
}

.service-band div {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 170px;
  padding: 22px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 30px rgba(35, 43, 38, 0.05);
}

.service-band svg {
  width: 24px;
  height: 24px;
}

.service-band strong {
  font-size: 1.1rem;
  font-weight: 850;
}

.service-band p {
  max-width: 24ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.commerce-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(3, minmax(0, 0.62fr));
  gap: 18px;
  padding: 0 clamp(18px, 4vw, 56px) 18px;
}

.commerce-card,
.consultation-section {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 30px rgba(35, 43, 38, 0.06);
  backdrop-filter: blur(18px);
}

.commerce-card {
  display: grid;
  align-content: space-between;
  min-height: 300px;
  padding: 22px;
}

.commerce-card-dark {
  background:
    radial-gradient(circle at 92% 12%, rgba(235, 255, 140, 0.78), transparent 0 28%, transparent 48%),
    var(--ink);
  color: var(--paper);
}

.commerce-card-dark .eyebrow {
  color: var(--acid);
}

.commerce-card h2 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3.65rem);
  line-height: 0.9;
}

.commerce-card > span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--acid);
}

.commerce-card svg {
  width: 19px;
  height: 19px;
}

.commerce-card strong {
  align-self: end;
  margin-top: 44px;
  font-size: 1.2rem;
}

.commerce-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.42;
}

.commerce-card-dark p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
}

.materials-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.62fr);
  gap: 42px;
  align-items: end;
  margin: 0 clamp(18px, 4vw, 56px) 28px;
  padding: clamp(28px, 5vw, 64px);
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 12%, rgba(235, 255, 140, 0.92), transparent 0 22%, transparent 40%),
    var(--ink);
  color: var(--paper);
}

.materials-panel .eyebrow {
  color: var(--acid);
}

.materials-panel h2 {
  max-width: 760px;
  font-size: clamp(2.2rem, 5.8vw, 6.8rem);
  line-height: 0.86;
}

.materials-panel p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.55;
}

.consultation-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.48fr);
  gap: 18px;
  align-items: stretch;
  margin: 0 clamp(18px, 4vw, 56px) 22px;
  overflow: hidden;
}

.consultation-copy {
  display: grid;
  align-content: space-between;
  min-height: 420px;
  padding: clamp(24px, 4vw, 46px);
  background:
    linear-gradient(120deg, rgba(235, 255, 140, 0.72), transparent 0 26%, transparent 48%),
    rgba(255, 255, 255, 0.36);
}

.consultation-copy h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 6.6rem);
  line-height: 0.86;
}

.consultation-copy p:last-child {
  max-width: 520px;
  margin: 26px 0 0;
  color: #333a35;
  line-height: 1.5;
}

.consultation-form {
  display: grid;
  gap: 12px;
  align-content: center;
  padding: clamp(20px, 3vw, 30px);
  border-left: 1px solid rgba(0, 0, 0, 0.06);
}

.consultation-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.consultation-form input,
.consultation-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 15px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  outline: 0;
  text-transform: none;
}

.consultation-form textarea {
  min-height: 112px;
  padding-top: 14px;
  resize: vertical;
}

.consultation-form input:focus,
.consultation-form textarea:focus {
  border-color: rgba(0, 0, 0, 0.34);
  box-shadow: 0 0 0 4px rgba(235, 255, 140, 0.46);
}

.consultation-form button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  font-weight: 900;
}

.consultation-form button:hover {
  background: var(--acid);
  color: var(--ink);
}

.consultation-message {
  min-height: 20px;
  margin: 0;
  color: var(--sage-deep);
  font-weight: 850;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.consultation-message.visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  display: flex;
  gap: 26px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 36px clamp(18px, 4vw, 56px) 44px;
  background: transparent;
  color: var(--ink);
}

.site-footer p {
  max-width: 430px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.footer-logo .logo-mark {
  background: var(--ink);
  color: var(--paper);
}

.footer-logo span:last-child {
  font-size: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: #2f352f;
  font-size: 0.75rem;
  font-weight: 800;
}

.footer-links a:hover {
  background: var(--ink);
  color: var(--paper);
}

.cart-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 40;
  display: flex;
  width: min(460px, 100%);
  flex-direction: column;
  background: rgba(248, 250, 247, 0.94);
  box-shadow: -24px 0 70px rgba(0, 0, 0, 0.16);
  transform: translateX(105%);
  transition: transform 0.24s ease;
  backdrop-filter: blur(22px);
}

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

.cart-drawer-header,
.cart-summary {
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.cart-drawer-header {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
}

.cart-drawer-header h2 {
  font-size: 2.2rem;
}

.cart-items {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  overflow: auto;
  padding: 18px 22px;
}

.cart-line {
  position: relative;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 12px 46px 12px 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
}

.cart-thumb {
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  background-image: var(--product-image, url("assets/watch-products.png"));
  background-position: var(--product-position, var(--x) var(--y));
  background-size: var(--product-size, 300% 200%);
  background-repeat: var(--product-repeat, no-repeat);
  mix-blend-mode: multiply;
}

.cart-line h3 {
  margin: 0 0 5px;
  font-size: 0.9rem;
}

.cart-line p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.cart-line-total {
  padding-top: 2px;
  font-size: 0.84rem;
  white-space: nowrap;
}

.cart-line-actions {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin-top: 10px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
}

.cart-line-actions button,
.remove-line {
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.cart-line-actions button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.cart-line-actions button:hover,
.remove-line:hover {
  background: var(--ink);
  color: var(--paper);
}

.cart-line-actions span {
  min-width: 14px;
  text-align: center;
}

.cart-line-actions svg,
.remove-line svg {
  width: 14px;
  height: 14px;
}

.remove-line {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--muted);
}

.cart-empty {
  display: grid;
  min-height: 250px;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 26px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  text-align: center;
}

.cart-empty > svg {
  width: 30px;
  height: 30px;
}

.cart-empty h3 {
  margin: 4px 0 0;
  font-size: 1rem;
}

.cart-empty p {
  max-width: 220px;
  margin: 0;
  color: var(--muted);
  line-height: 1.35;
}

.cart-empty a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  margin-top: 6px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 850;
}

.cart-summary {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.cart-progress {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
  padding: 14px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
}

.cart-progress > div:first-child,
.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-progress span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
}

.cart-progress strong {
  color: var(--acid);
  font-size: 0.78rem;
}

.cart-progress-bar {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.cart-progress-bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--acid);
  transition: width 0.24s ease;
}

.cart-total-row {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 850;
}

.cart-total-row strong {
  color: var(--ink);
}

.cart-grand-total {
  margin: 0 0 14px;
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.cart-grand-total strong {
  font-size: 1.5rem;
}

.cart-secondary-action {
  display: inline-flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-weight: 900;
}

.cart-secondary-action:hover {
  background: var(--ink);
  color: var(--paper);
}

.checkout-button {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
}

.checkout-button:hover {
  background: var(--acid);
  color: var(--ink);
}

.checkout-button:disabled {
  background: var(--sage);
  color: rgba(0, 0, 0, 0.48);
  cursor: not-allowed;
}

.scrim {
  position: fixed;
  inset: 0;
  z-index: 35;
  background: rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(4px);
}

.product-page {
  padding: 24px clamp(18px, 4vw, 56px) 56px;
}

.product-crumb {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.product-crumb a,
.product-crumb span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
}

.product-crumb a {
  gap: 8px;
  color: var(--ink);
}

.product-crumb svg {
  width: 15px;
  height: 15px;
}

.product-detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: 18px;
  align-items: start;
}

.product-gallery-card,
.product-buy-panel,
.product-story-panel,
.product-spec-card,
.related-card {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 30px rgba(35, 43, 38, 0.06);
  backdrop-filter: blur(18px);
}

.product-gallery-card {
  position: sticky;
  top: 118px;
  min-height: 690px;
  overflow: hidden;
}

.product-gallery-card::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 20%, var(--accent, var(--acid)), transparent 0 24%, transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(233, 238, 234, 0.78));
  content: "";
  opacity: 0.58;
}

.product-gallery-top {
  position: absolute;
  top: 18px;
  right: 18px;
  left: 18px;
  z-index: 3;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

.product-live-pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--acid);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
}

.product-live-pill.muted {
  background: rgba(255, 255, 255, 0.7);
  color: #2d332e;
}

.product-live-pill.sold-out {
  background: var(--sage);
  color: rgba(0, 0, 0, 0.52);
}

.product-gallery-note {
  position: absolute;
  right: 18px;
  bottom: 112px;
  left: 18px;
  z-index: 4;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 44px rgba(36, 42, 39, 0.12);
  backdrop-filter: blur(18px);
}

.product-gallery-note span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
}

.product-gallery-note strong {
  overflow: hidden;
  font-size: 0.86rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-main-art {
  position: absolute;
  top: 88px;
  left: 50%;
  z-index: 2;
  width: min(78%, 560px);
  aspect-ratio: 1 / 1;
  background-image: var(--product-image, url("assets/watch-products.png"));
  background-position: var(--product-position, var(--x) var(--y));
  background-size: var(--product-size, 300% 200%);
  background-repeat: var(--product-repeat, no-repeat);
  filter: saturate(0.96) contrast(1.03) drop-shadow(0 34px 32px rgba(0, 0, 0, 0.2));
  mix-blend-mode: multiply;
  transform: translateX(-50%);
}

.product-stage-shadow {
  position: absolute;
  right: 16%;
  bottom: 152px;
  left: 16%;
  z-index: 1;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  filter: blur(20px);
}

.product-thumbs {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.product-thumbs button {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 76px;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 850;
  text-align: left;
}

.product-thumbs button.active {
  background: var(--ink);
  color: var(--paper);
}

.thumb-art {
  width: 54px;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background-image: var(--product-image, url("assets/watch-products.png"));
  background-position: var(--product-position, var(--x) var(--y));
  background-size: var(--product-size, 300% 200%);
  background-repeat: var(--product-repeat, no-repeat);
  mix-blend-mode: multiply;
}

.product-thumbs button.active .thumb-art {
  background-color: var(--paper);
  mix-blend-mode: normal;
}

.product-buy-panel {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
}

.product-buy-panel h1 {
  margin: 0;
  font-size: clamp(3rem, 5.8vw, 6.5rem);
  font-weight: 500;
  line-height: 0.86;
}

.product-lead {
  margin: 0;
  color: #343a35;
  font-size: 1rem;
  line-height: 1.5;
}

.product-price-row {
  display: grid;
  gap: 5px;
  padding: 18px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
}

.product-price-values {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: baseline;
}

.product-price-row .old-price {
  color: rgba(255, 255, 255, 0.52);
}

.product-price-row .shipping-badge {
  background: var(--acid);
}

.product-price-row strong {
  font-size: 2.1rem;
  font-weight: 500;
}

.product-price-row span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 700;
}

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

.product-quick-specs div {
  display: grid;
  gap: 10px;
  min-height: 94px;
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
}

.product-quick-specs span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-quick-specs strong {
  align-self: end;
  font-size: 0.85rem;
  line-height: 1.2;
}

.product-options {
  display: grid;
  gap: 15px;
}

.option-label,
.quantity-panel > span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.option-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.option-pills button {
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 999px;
  background: var(--paper);
  color: #343a35;
  cursor: pointer;
  font-weight: 850;
}

.option-pills button.active {
  background: var(--acid);
  color: var(--ink);
}

.quantity-panel {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quantity-panel > span {
  margin: 0;
}

.quantity-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 999px;
  background: var(--paper);
}

.quantity-stepper button {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.quantity-stepper button:hover {
  background: var(--ink);
  color: var(--paper);
}

.quantity-stepper button:disabled {
  color: rgba(0, 0, 0, 0.24);
  cursor: not-allowed;
}

.quantity-stepper button:disabled:hover {
  background: transparent;
  color: rgba(0, 0, 0, 0.24);
}

.quantity-stepper svg {
  width: 15px;
  height: 15px;
}

.quantity-stepper strong {
  min-width: 28px;
  text-align: center;
}

.product-cta-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(174px, 0.72fr) auto;
  gap: 10px;
}

.product-primary-action,
.product-icon-action {
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
}

.product-primary-action {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  background: var(--acid);
  color: var(--ink);
  white-space: nowrap;
}

.product-primary-action:hover {
  background: var(--ink);
  color: var(--paper);
}

.product-primary-action:disabled,
.product-buy-now-action:disabled {
  background: var(--sage);
  color: rgba(0, 0, 0, 0.48);
  cursor: not-allowed;
}

.product-icon-action {
  display: inline-grid;
  width: 50px;
  place-items: center;
  background: var(--paper);
  color: var(--ink);
}

.product-icon-action.active {
  background: var(--ink);
  color: var(--paper);
}

.product-icon-action.active svg {
  fill: currentColor;
}

.product-buy-now-action {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  white-space: nowrap;
}

.product-buy-now-action:hover {
  background: var(--ink);
  color: var(--paper);
}

.product-buy-now-action:disabled:hover {
  background: var(--sage);
  color: rgba(0, 0, 0, 0.48);
}

.product-buy-now-action svg {
  width: 17px;
  height: 17px;
}

.product-toast {
  min-height: 20px;
  margin: 0;
  color: var(--sage-deep);
  font-size: 0.82rem;
  font-weight: 850;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

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

.product-availability-card {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 8px;
  background: var(--acid);
}

.product-availability-card > span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
}

.product-availability-card svg {
  width: 18px;
  height: 18px;
}

.product-availability-card strong,
.product-availability-card p {
  margin: 0;
}

.product-availability-card p {
  margin-top: 3px;
  color: #2b3329;
  line-height: 1.35;
}

.product-service-list {
  display: grid;
  gap: 10px;
}

.product-service-list div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.product-service-list svg {
  width: 20px;
  height: 20px;
}

.product-service-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.product-service-list strong {
  color: var(--ink);
}

.product-spec-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 18px;
  margin-top: 18px;
}

.product-story-panel,
.product-spec-card {
  padding: clamp(22px, 3vw, 34px);
}

.product-story-panel {
  display: grid;
  align-content: space-between;
  min-height: 360px;
  background:
    radial-gradient(circle at 92% 16%, rgba(235, 255, 140, 0.78), transparent 0 26%, transparent 46%),
    var(--ink);
  color: var(--paper);
}

.product-story-panel .eyebrow {
  color: var(--acid);
}

.product-story-panel h2 {
  max-width: 620px;
  font-size: clamp(2.2rem, 5vw, 5.5rem);
  line-height: 0.88;
}

.product-story-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.product-story-list div {
  min-height: 112px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.product-story-list svg {
  width: 18px;
  height: 18px;
  margin-bottom: 16px;
  color: var(--acid);
}

.product-story-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

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

.spec-grid div {
  min-height: 104px;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
}

.spec-grid span,
.spec-grid strong {
  display: block;
}

.spec-grid span {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.spec-grid strong {
  font-size: 1rem;
  line-height: 1.22;
}

.related-section {
  margin-top: 18px;
}

.related-heading {
  display: flex;
  gap: 18px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 14px;
  padding: 18px 0 0;
}

.related-heading a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 850;
}

.related-heading a:hover {
  background: var(--acid);
  color: var(--ink);
}

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

.related-card {
  display: grid;
  gap: 7px;
  padding: 16px;
  color: var(--ink);
  transition:
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.related-card:hover {
  box-shadow: var(--soft-shadow);
  transform: translateY(-4px);
}

.related-art {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  margin-bottom: 8px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 40%, var(--accent), transparent 0 34%, transparent 56%),
    var(--product-image, url("assets/watch-products.png")) var(--product-position, var(--x) var(--y)) / var(--product-size, 300% 200%) var(--product-repeat, no-repeat);
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.16));
  mix-blend-mode: multiply;
}

.related-card span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
}

.related-card strong {
  font-size: 1rem;
}

.related-card em {
  color: var(--ink);
  font-style: normal;
  font-weight: 850;
}

.checkout-page {
  padding: 28px clamp(18px, 4vw, 56px) 60px;
}

.checkout-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.45fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 18px;
  padding: clamp(24px, 4vw, 46px);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 24%, rgba(235, 255, 140, 0.86), transparent 0 22%, transparent 44%),
    rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 30px rgba(35, 43, 38, 0.06);
}

.checkout-hero > * {
  min-width: 0;
}

.checkout-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3.3rem, 7vw, 7.6rem);
  line-height: 0.86;
}

.checkout-hero p:last-child {
  margin: 0;
  color: #343a35;
  font-size: 1rem;
  line-height: 1.5;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.48fr);
  gap: 18px;
  align-items: start;
}

.checkout-form,
.order-summary {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 30px rgba(35, 43, 38, 0.06);
  backdrop-filter: blur(18px);
}

.checkout-form {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
}

.checkout-section {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.checkout-section-heading {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.checkout-section-heading span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--acid);
  font-size: 0.76rem;
  font-weight: 900;
}

.checkout-section-heading h2 {
  font-size: 1.55rem;
}

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

.form-grid label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 15px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  outline: 0;
  text-transform: none;
}

.form-grid textarea {
  min-height: 104px;
  padding-top: 14px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid textarea:focus {
  border-color: rgba(0, 0, 0, 0.34);
  box-shadow: 0 0 0 4px rgba(235, 255, 140, 0.46);
}

.full-field {
  grid-column: 1 / -1;
}

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

.payment-options label {
  display: grid;
  gap: 12px;
  align-content: center;
  min-height: 118px;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  font-weight: 850;
}

.payment-options input {
  position: absolute;
  opacity: 0;
}

.payment-options label:has(input:checked) {
  background: var(--ink);
  color: var(--paper);
}

.payment-options svg {
  width: 22px;
  height: 22px;
}

.checkout-submit {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  background: var(--acid);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.checkout-submit:hover {
  background: var(--ink);
  color: var(--paper);
}

.checkout-submit:disabled {
  background: var(--sage);
  color: rgba(0, 0, 0, 0.5);
  cursor: not-allowed;
}

.checkout-message {
  min-height: 20px;
  margin: 0;
  color: var(--sage-deep);
  font-weight: 850;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.checkout-message.visible {
  opacity: 1;
  transform: translateY(0);
}

.checkout-message.success {
  color: var(--ink);
}

.order-summary {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 26px);
}

.summary-header h2 {
  font-size: 2rem;
}

.summary-items {
  display: grid;
  gap: 10px;
}

.summary-line {
  position: relative;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 12px 42px 12px 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
}

.summary-thumb {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background-image: var(--product-image, url("assets/watch-products.png"));
  background-position: var(--product-position, var(--x) var(--y));
  background-size: var(--product-size, 300% 200%);
  background-repeat: var(--product-repeat, no-repeat);
  mix-blend-mode: multiply;
}

.summary-line h3 {
  margin: 0 0 4px;
  font-size: 0.88rem;
}

.summary-line p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.summary-line > strong {
  font-size: 0.88rem;
  white-space: nowrap;
}

.summary-qty {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin-top: 10px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 999px;
  background: var(--paper);
  font-size: 0.72rem;
  font-weight: 900;
}

.summary-qty button,
.summary-remove {
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.summary-qty button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.summary-qty button:hover,
.summary-remove:hover {
  background: var(--ink);
  color: var(--paper);
}

.summary-qty svg,
.summary-remove svg {
  width: 14px;
  height: 14px;
}

.summary-remove {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--muted);
}

.summary-totals {
  display: grid;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.summary-totals div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-weight: 800;
}

.summary-totals strong {
  color: var(--ink);
}

.summary-total {
  margin-top: 6px;
  padding: 16px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper) !important;
}

.summary-total strong {
  color: var(--paper);
  font-size: 1.4rem;
}

.summary-note {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 14px;
  border-radius: 8px;
  background: var(--acid);
}

.summary-note p {
  margin: 0;
  color: #2b3329;
  line-height: 1.35;
}

.summary-empty {
  display: grid;
  gap: 9px;
  justify-items: center;
  padding: 28px 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  text-align: center;
}

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

.summary-empty p {
  color: var(--muted);
  line-height: 1.35;
}

.summary-empty a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 850;
}

.confirmation-page {
  padding: 28px clamp(18px, 4vw, 56px) 60px;
}

.confirmation-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
}

.confirmation-hero > div:first-child,
.confirmation-status,
.confirmation-panel {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 30px rgba(35, 43, 38, 0.06);
  backdrop-filter: blur(18px);
}

.confirmation-hero > div:first-child {
  padding: clamp(24px, 4vw, 46px);
  background:
    linear-gradient(120deg, rgba(235, 255, 140, 0.7), transparent 0 28%, transparent 48%),
    rgba(255, 255, 255, 0.62);
}

.confirmation-hero h1 {
  max-width: 920px;
  margin: 0 0 20px;
  font-size: clamp(3.2rem, 7vw, 7.2rem);
  line-height: 0.88;
}

.confirmation-hero p:last-child {
  max-width: 520px;
  margin: 0;
  color: #343a35;
  font-size: 1rem;
  line-height: 1.5;
}

.confirmation-status {
  display: grid;
  gap: 18px;
  align-content: space-between;
  padding: 22px;
  background: var(--ink);
  color: var(--paper);
}

.confirmation-status > span {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
}

.confirmation-status svg {
  width: 22px;
  height: 22px;
}

.confirmation-status small {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.56);
  font-weight: 900;
  text-transform: uppercase;
}

.confirmation-status strong {
  font-size: clamp(1.65rem, 3vw, 3rem);
  line-height: 0.95;
}

.confirmation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.42fr);
  gap: 18px;
  align-items: start;
}

.confirmation-panel {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
}

.confirmation-heading {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.confirmation-heading h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 3.25rem);
  line-height: 1;
}

.confirmation-heading > strong {
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--acid);
  font-size: 1rem;
  white-space: nowrap;
}

.confirmation-items {
  display: grid;
  gap: 10px;
}

.confirmation-line {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.confirmation-line p,
.confirmation-line h3,
.confirmation-line span {
  margin: 0;
}

.confirmation-line p,
.confirmation-line span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.confirmation-line h3 {
  margin: 5px 0 8px;
  font-size: 1rem;
}

.confirmation-line > strong {
  font-size: 0.94rem;
  white-space: nowrap;
}

.confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding-top: 4px;
}

.confirmation-print {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font-weight: 900;
}

.confirmation-print:hover {
  background: var(--ink);
  color: var(--paper);
}

.confirmation-print svg {
  width: 17px;
  height: 17px;
}

.confirmation-side {
  position: sticky;
  top: 118px;
}

.confirmation-detail-grid {
  display: grid;
  gap: 10px;
}

.confirmation-detail-grid div {
  display: grid;
  gap: 8px;
  min-height: 94px;
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
}

.confirmation-detail-grid span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.confirmation-detail-grid strong {
  align-self: end;
  overflow-wrap: anywhere;
  font-size: 0.95rem;
}

.next-steps {
  display: grid;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.next-steps > div {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.next-steps span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.74rem;
  font-weight: 900;
}

.next-steps strong,
.next-steps p {
  margin: 0;
}

.next-steps p {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.38;
}

.confirmation-empty {
  min-height: 260px;
}

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

  .hero-copy {
    min-height: auto;
  }

  .showcase-panel {
    min-height: 500px;
  }

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

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

  .commerce-card-dark {
    grid-column: 1 / -1;
  }

  .product-detail-shell,
  .product-spec-layout {
    grid-template-columns: 1fr;
  }

  .product-gallery-card,
  .product-buy-panel {
    position: relative;
    top: auto;
  }

  .product-buy-panel h1 {
    max-width: 760px;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    min-height: auto;
  }

  .site-header .logo {
    grid-column: 1;
    justify-self: start;
  }

  .site-header .cart-button {
    grid-column: 2;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .category-band {
    top: 122px;
  }

  .catalog-hero {
    min-height: auto;
    padding: 28px 22px;
  }

  h1 {
    font-size: clamp(3.35rem, 13vw, 5.8rem);
  }

  .hero-kpis {
    margin-top: 30px;
  }

  .showcase-panel {
    min-height: 430px;
  }

  .showcase-image {
    inset: 74px -8% 12px;
    background-size: min(680px, 130%) auto;
  }

  .catalog-search {
    grid-template-columns: 1fr;
    padding: 22px 22px 0;
  }

  .catalog-search-copy,
  .search-control {
    min-height: auto;
  }

  .catalog-search-copy h2 {
    font-size: clamp(1.75rem, 6vw, 3rem);
  }

  .shop-shell {
    grid-template-columns: 1fr;
    padding: 22px;
  }

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

  .filter-header,
  .filter-note {
    grid-column: 1 / -1;
  }

  .products-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .toolbar-actions {
    width: 100%;
    justify-content: space-between;
  }

  .service-band {
    grid-template-columns: 1fr;
    padding: 0 22px 40px;
  }

  .materials-panel {
    grid-template-columns: 1fr;
    margin: 0 22px 22px;
  }

  .consultation-section {
    grid-template-columns: 1fr;
    margin: 0 22px 22px;
  }

  .consultation-form {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-left: 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-page {
    padding: 22px;
  }

  .product-gallery-card {
    min-height: 560px;
  }

  .product-main-art {
    top: 82px;
    width: min(78%, 470px);
  }

  .product-story-list,
  .related-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .brand-strip {
    display: none;
  }

  .logo span:last-child {
    font-size: 1.05rem;
    white-space: normal;
  }

  .main-nav a {
    min-height: 32px;
    padding: 0 11px;
    font-size: 0.68rem;
  }

  .site-header .cart-button {
    display: none;
  }

  .mobile-cart-fab {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 34;
    display: inline-grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--ink);
    color: var(--paper);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    cursor: pointer;
  }

  .mobile-cart-fab svg {
    width: 21px;
    height: 21px;
  }

  .mobile-cart-fab .cart-count {
    border-color: var(--ash);
  }

  .catalog-hero {
    gap: 22px;
  }

  h1 {
    font-size: clamp(2.65rem, 16vw, 4.05rem);
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 0.95rem;
  }

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

  .primary-link,
  .ghost-link {
    width: 100%;
  }

  .hero-kpis {
    grid-template-columns: 1fr;
  }

  .showcase-panel {
    min-height: 355px;
  }

  .showcase-toolbar {
    top: 14px;
    right: 14px;
    left: 14px;
  }

  .showcase-image {
    inset: 68px -38% 8px;
    background-size: 150% auto;
  }

  .floating-card {
    min-width: 146px;
    padding: 12px;
  }

  .floating-card-main {
    left: 14px;
    bottom: 14px;
  }

  .floating-card-accent {
    right: 14px;
    bottom: 92px;
  }

  .category-band {
    top: 116px;
    padding: 10px 22px;
  }

  .catalog-search {
    gap: 10px;
  }

  .catalog-search-copy,
  .search-control {
    padding: 16px;
  }

  .search-control {
    grid-template-columns: 22px minmax(0, 1fr) 36px;
    min-height: 68px;
  }

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

  .filter-group:nth-of-type(3) {
    grid-column: 1 / -1;
  }

  .toolbar-actions,
  .sort-control {
    align-items: stretch;
    flex-direction: column;
  }

  .sort-control,
  .sort-control select {
    width: 100%;
  }

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

  .product-card {
    min-height: 410px;
  }

  .materials-panel h2 {
    font-size: clamp(2.35rem, 12vw, 4.1rem);
  }

  .commerce-grid {
    grid-template-columns: 1fr;
    padding: 0 22px 18px;
  }

  .commerce-card {
    min-height: auto;
  }

  .consultation-copy {
    min-height: auto;
  }

  .consultation-copy h2 {
    font-size: clamp(2.35rem, 12vw, 4.1rem);
  }

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

  .product-gallery-card {
    display: grid;
    min-height: auto;
    padding: 18px;
  }

  .product-main-art {
    position: relative;
    top: auto;
    left: auto;
    width: 86%;
    margin: 0 auto;
    transform: none;
  }

  .product-thumbs {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    min-width: 0;
  }

  .product-gallery-top {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .product-stage-shadow {
    display: none;
  }

  .product-gallery-note {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin-top: 8px;
  }

  .product-thumbs button {
    grid-template-columns: 1fr;
    min-height: 76px;
    justify-items: center;
    min-width: 0;
    padding: 8px;
    font-size: 0.68rem;
    text-align: center;
  }

  .thumb-art {
    width: 40px;
  }

  .product-thumbs button:last-child {
    grid-column: 1 / -1;
  }

  .product-buy-panel h1 {
    font-size: clamp(2.8rem, 15vw, 4.5rem);
  }

  .product-price-row strong {
    font-size: 1.65rem;
  }

  .product-quick-specs,
  .product-cta-row,
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .product-icon-action {
    width: 100%;
  }

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

@media (hover: none) {
  .product-card:hover,
  .product-card:focus-within {
    box-shadow: 0 12px 28px rgba(35, 43, 38, 0.06);
    transform: none;
  }
}

@media (max-width: 980px) {
  .checkout-hero,
  .checkout-layout,
  .confirmation-hero,
  .confirmation-layout {
    grid-template-columns: 1fr;
  }

  .order-summary,
  .confirmation-side {
    position: relative;
    top: auto;
    order: -1;
  }

  .confirmation-side {
    order: 0;
  }
}

@media (max-width: 640px) {
  .checkout-page,
  .confirmation-page {
    padding: 22px;
  }

  .checkout-hero h1,
  .confirmation-hero h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 13vw, 3.55rem);
  }

  .checkout-hero p:last-child,
  .confirmation-hero p:last-child {
    width: min(100%, 29ch);
    font-size: 0.95rem;
    overflow-wrap: break-word;
  }

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

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

  .summary-line > strong {
    grid-column: 2;
  }

  .confirmation-heading,
  .confirmation-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .confirmation-heading > strong,
  .confirmation-actions .primary-link,
  .confirmation-print {
    width: 100%;
  }

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

  .confirmation-line > strong {
    grid-column: 2;
  }
}

@media (max-width: 900px) {
  body.drawer-open {
    overflow: hidden;
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }

  .mobile-filter-button {
    display: inline-flex;
  }

  .filter-close {
    display: inline-grid;
  }

  .filters {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 45;
    grid-template-columns: 1fr;
    max-height: min(82dvh, 720px);
    overflow: auto;
    padding: 18px;
    border-radius: 16px;
    background: rgba(248, 250, 247, 0.96);
    box-shadow: 0 -22px 70px rgba(0, 0, 0, 0.22);
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 18px));
    transition:
      opacity 0.22s ease,
      transform 0.22s ease;
  }

  .filters.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .filter-header,
  .filter-note,
  .filter-group:nth-of-type(3) {
    grid-column: auto;
  }

  .filter-group label {
    min-height: 38px;
    font-size: 0.92rem;
  }

  .filter-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }

  .products-toolbar {
    gap: 14px;
    margin-bottom: 12px;
  }

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

  .toolbar-actions > span {
    align-self: center;
  }

  .sort-control {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
  }

  .sort-control select {
    width: 100%;
  }

  .cart-drawer {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .main-nav {
    padding: 4px;
  }

  .catalog-hero,
  .shop-shell,
  .product-page,
  .checkout-page,
  .confirmation-page {
    padding-right: 16px;
    padding-left: 16px;
  }

  .category-band {
    padding-right: 16px;
    padding-left: 16px;
  }

  .catalog-search {
    padding-right: 16px;
    padding-left: 16px;
  }

  .service-band,
  .commerce-grid {
    padding-right: 16px;
    padding-left: 16px;
  }

  .materials-panel,
  .consultation-section {
    margin-right: 16px;
    margin-left: 16px;
  }

  .products-toolbar {
    padding: 16px;
  }

  .products-toolbar h2 {
    font-size: clamp(1.4rem, 7vw, 2rem);
    overflow-wrap: anywhere;
  }

  .toolbar-actions {
    width: 100%;
  }

  .mobile-filter-button {
    min-height: 42px;
    padding: 0 16px;
  }

  .product-card {
    min-height: auto;
  }

  .watch-stage {
    min-height: 240px;
    padding: 40px 18px 10px;
  }

  .watch-art {
    width: min(74%, 230px);
  }

  .product-body {
    min-height: auto;
    padding: 16px;
  }

  .product-card h3 {
    margin-right: 38px;
    font-size: 1rem;
    overflow-wrap: anywhere;
  }

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

  .product-actions {
    width: 100%;
    justify-content: space-between;
  }

  .detail-link {
    flex: 1;
    justify-content: center;
  }

  .cart-drawer-header,
  .cart-summary {
    padding: 18px;
  }

  .cart-items {
    padding: 14px 18px;
  }

  .cart-line {
    grid-template-columns: 66px minmax(0, 1fr);
    padding: 12px 44px 12px 12px;
  }

  .cart-line-total {
    grid-column: 2;
    padding-top: 0;
  }

  .product-buy-panel h1,
  .checkout-hero h1,
  .confirmation-hero h1 {
    overflow-wrap: anywhere;
  }

  .product-lead,
  .product-price-row span,
  .product-service-list p,
  .checkout-hero p,
  .confirmation-hero p {
    overflow-wrap: anywhere;
  }

  .product-cta-row {
    gap: 8px;
  }

  .product-primary-action,
  .product-buy-now-action,
  .product-icon-action,
  .checkout-submit {
    min-height: 52px;
  }

  .product-gallery-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-gallery-note strong {
    white-space: normal;
  }

  .summary-line,
  .confirmation-line {
    gap: 12px;
  }
}

@media (max-width: 430px) {
  .logo span:last-child {
    font-size: 0.96rem;
  }

  .main-nav a {
    padding: 0 10px;
  }

  h1 {
    font-size: clamp(2.35rem, 14vw, 3.45rem);
  }

  .hero-kpis div {
    min-height: 66px;
  }

  .showcase-panel {
    min-height: 330px;
  }

  .showcase-toolbar span:nth-child(2) {
    display: none;
  }

  .floating-card-accent {
    bottom: 84px;
  }

  .catalog-search-copy h2 {
    font-size: clamp(1.55rem, 8vw, 2.35rem);
  }

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

  .mobile-filter-button {
    width: 100%;
  }

  .sort-control {
    grid-template-columns: 1fr;
  }

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

  .product-buy-panel h1 {
    font-size: clamp(2.1rem, 13vw, 3.25rem);
  }
}

@media print {
  .brand-strip,
  .site-header,
  .confirmation-actions {
    display: none !important;
  }

  body {
    background: var(--paper);
  }

  .confirmation-page {
    padding: 0;
  }

  .confirmation-hero,
  .confirmation-layout {
    display: block;
  }

  .confirmation-hero,
  .confirmation-panel {
    break-inside: avoid;
    box-shadow: none;
  }
}

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