:root {
  --bg: #f4f4f1;
  --ink: #151515;
  --muted: #62666d;
  --panel: #ffffff;
  --panel-soft: #fafaf7;
  --line: #ddddd6;
  --carbon: #202326;
  --red: #d9362e;
  --red-dark: #ad221d;
  --green: #35d27c;
  --blue: #2867d9;
  --shadow: 0 18px 50px rgba(18, 18, 15, 0.1);
  --shadow-soft: 0 10px 30px rgba(18, 18, 15, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

body.request-dialog-open {
  overflow: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(30, 30, 26, 0.1);
  background: rgba(250, 250, 247, 0.9);
  backdrop-filter: blur(18px) saturate(1.15);
  box-shadow: 0 8px 28px rgba(18, 18, 15, 0.05);
}

.brand,
.main-nav,
.filters,
.swatches {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.main-nav {
  gap: clamp(14px, 3vw, 34px);
  color: #333;
  font-weight: 700;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--red);
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 160ms ease, transform 160ms ease;
}

.main-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-whatsapp {
  color: var(--red);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(18, 18, 15, 0.06);
}

.language-switcher button {
  min-width: 38px;
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #343434;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  transition: background 160ms ease, color 160ms ease;
}

.language-switcher button.is-active {
  background: #171717;
  color: #fff;
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #111;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.22) 62%, rgba(0, 0, 0, 0.5)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent 48%);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 clamp(72px, 13vh, 128px);
  color: #fff;
}

.hero-copy p,
.section-heading p {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy > span,
.section-heading > span {
  display: block;
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
}

.hero-copy > span {
  margin: -14px 0 26px;
  color: rgba(255, 255, 255, 0.86);
}

.hero-copy h1 {
  margin: 0 0 28px;
  font-family: Orbitron, Inter, sans-serif;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(217, 54, 46, 0.26);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.primary-link:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(217, 54, 46, 0.32);
}

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

.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 6px;
  padding: 0 22px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 900;
  backdrop-filter: blur(12px);
  transition: background 160ms ease, border-color 160ms ease;
}

.secondary-link:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.14);
}

.section {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 4vw, 54px);
}

.section-heading {
  width: min(1120px, 100%);
  margin: 0 auto 28px;
}

.section-heading h2 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
}

.filters {
  width: min(1120px, 100%);
  margin: 0 auto 28px;
  flex-wrap: wrap;
  gap: 10px;
}

.catalog-tools {
  width: min(1120px, 100%);
  margin: 0 auto 18px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.catalog-search {
  display: grid;
  gap: 8px;
  width: min(420px, 100%);
  color: #262626;
  font-weight: 800;
}

.catalog-search input {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 12px;
  background: #fff;
  font: inherit;
  font-weight: 700;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.catalog-search input:focus,
.controls input:focus,
.customer-form input:focus,
.customer-form textarea:focus {
  border-color: rgba(217, 54, 46, 0.56);
  box-shadow: 0 0 0 4px rgba(217, 54, 46, 0.1);
}

.catalog-tools p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.filter-button,
.swatch {
  border: 1px solid var(--line);
  background: #fff;
  color: #202020;
  cursor: pointer;
}

.filter-button {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 6px;
  font-weight: 900;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.filter-button:hover {
  transform: translateY(-1px);
  border-color: #171717;
}

.filter-button.is-active {
  border-color: #171717;
  background: #171717;
  color: #fff;
}

.product-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  text-align: left;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  border-color: rgba(217, 54, 46, 0.26);
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(20, 20, 18, 0.13);
}

.product-card.empty-result {
  cursor: default;
}

.product-card.empty-result:hover {
  transform: none;
  box-shadow: 0 8px 24px rgba(20, 20, 18, 0.06);
}

.product-card.empty-result p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.product-card figure {
  margin: 0;
  aspect-ratio: 3 / 4;
  background: linear-gradient(145deg, #e6e6df, #f7f7f2);
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 260ms ease, filter 260ms ease;
}

.product-card:hover img {
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.035);
}

.product-card .empty-image {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 20px;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.product-info {
  padding: 16px 16px 18px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-info h3 {
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.1;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 999px;
  padding: 0 10px;
  margin-bottom: 10px;
  background: #eef2ed;
  color: #1f6b3d;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.include-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 10px;
  margin: 0 0 10px 6px;
  background: var(--panel-soft);
  color: #333;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.status-comingSoon {
  background: #f1eee4;
  color: #8b671b;
}

.status-soldOut {
  background: #f5e8e8;
  color: #a52828;
}

.status-reserved {
  background: #eeeaf8;
  color: #5b3da3;
}

.status-madeToOrder {
  background: #e7edf8;
  color: #1e4f9a;
}

.status-lastUnit {
  background: #fff0df;
  color: #b24b10;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
  margin-top: 4px;
  padding-top: 14px;
  font-weight: 900;
}

.stock {
  color: var(--blue);
  font-size: 13px;
  text-transform: uppercase;
}

.product-dialog {
  width: min(1040px, calc(100% - 28px));
  max-height: min(820px, calc(100svh - 28px));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  background: var(--panel);
  color: var(--ink);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  overflow: auto;
}

.product-dialog::backdrop {
  background: rgba(15, 15, 14, 0.62);
}

.dialog-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: #171717;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.dialog-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 0;
}

.dialog-gallery {
  padding: 18px;
  background: #eeeeea;
}

.dialog-main-image {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 8px;
  background: #deded8;
}

.dialog-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dialog-main-image img[src=""] {
  display: none;
}

.dialog-empty-image {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  padding: 24px;
  color: var(--muted);
  font-weight: 900;
  text-align: center;
}

.dialog-main-image.is-empty .dialog-empty-image {
  display: grid;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 38px;
  height: 46px;
  border: 0;
  border-radius: 6px;
  background: rgba(23, 23, 23, 0.72);
  color: #fff;
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
}

.gallery-nav[disabled] {
  display: none;
}

.gallery-prev {
  left: 10px;
}

.gallery-next {
  right: 10px;
}

.gallery-count {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.dialog-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(62px, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.thumb-button {
  aspect-ratio: 1;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 0;
  background: #fff;
  cursor: pointer;
}

.thumb-button.is-active {
  border-color: var(--red);
}

.thumb-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dialog-info {
  display: grid;
  align-content: center;
  padding: clamp(24px, 4vw, 46px);
  background: linear-gradient(180deg, #fff, #fbfbf7);
}

.dialog-info p {
  margin: 0 0 12px;
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
}

.dialog-info h2 {
  margin: 0 0 24px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
}

.dialog-info dl {
  display: grid;
  gap: 12px;
  margin: 0 0 26px;
}

.dialog-info dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.dialog-info dt {
  color: var(--muted);
  font-weight: 800;
}

.dialog-info dd {
  margin: 0;
  font-weight: 800;
}

.reserve-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  background: #171717;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.reserve-link:hover,
.add-custom-button:hover {
  background: #2a2a2a;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

.reserve-link:disabled {
  background: #8d8d86;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.option-check {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--panel-soft);
  color: #262626;
  cursor: pointer;
  font-weight: 900;
}

.option-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
}

.dialog-option {
  margin-bottom: 16px;
}

.dialog-option.is-hidden {
  display: none;
}

.add-custom-button {
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  background: #171717;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.request-fab {
  position: fixed;
  right: clamp(16px, 4vw, 32px);
  bottom: clamp(16px, 4vw, 32px);
  z-index: 30;
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: var(--red);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
  transition: transform 160ms ease, background 160ms ease;
}

.request-fab:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.request-fab.is-visible {
  display: inline-flex;
}

.request-fab span {
  display: grid;
  place-items: center;
  min-width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  color: var(--red);
}

.request-mini {
  position: fixed;
  right: clamp(16px, 4vw, 32px);
  bottom: 92px;
  z-index: 29;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  width: min(360px, calc(100% - 32px));
  border: 1px solid rgba(23, 23, 23, 0.14);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.request-mini[hidden] {
  display: none;
}

.request-mini strong {
  display: block;
  margin-bottom: 4px;
}

.request-mini p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.request-mini button {
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  padding: 0 12px;
  background: #171717;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.whatsapp-fab {
  position: fixed;
  left: clamp(16px, 4vw, 32px);
  bottom: clamp(16px, 4vw, 32px);
  z-index: 28;
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  border-radius: 999px;
  padding: 0 18px;
  background: #1fa855;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
  transition: transform 160ms ease, background 160ms ease;
}

.whatsapp-fab:hover {
  background: #168a45;
  transform: translateY(-2px);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 4vw, 54px);
  border-top: 1px solid var(--line);
  background: #151515;
  color: #fff;
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 800;
}

.site-footer button {
  border: 0;
  padding: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.cookie-banner {
  position: fixed;
  left: clamp(16px, 4vw, 32px);
  right: clamp(16px, 4vw, 32px);
  bottom: clamp(16px, 4vw, 32px);
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 18px;
  background: rgba(21, 21, 21, 0.96);
  color: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
}

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

.cookie-banner p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

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

.legal-page {
  background: var(--bg);
}

.legal-content {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(42px, 8vw, 84px) 0;
}

.legal-content > a {
  color: var(--red);
  font-weight: 900;
}

.legal-content h1 {
  margin: 28px 0 18px;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1;
}

.legal-content h2 {
  margin: 28px 0 10px;
}

.legal-content p {
  color: var(--muted);
  line-height: 1.65;
}

.request-dialog {
  width: min(470px, 100%);
  height: 100svh;
  max-height: 100svh;
  margin: 0 0 0 auto;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  padding: 0;
  background: #151515;
  color: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  overflow: auto;
  overscroll-behavior: contain;
}

.request-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(2px);
}

.request-dialog .dialog-close {
  position: sticky;
  float: right;
  top: 22px;
  right: 22px;
  border-color: rgba(255, 255, 255, 0.16);
  background: #151515;
  color: #fff;
}

.request-dialog .secondary-action {
  border-color: rgba(255, 255, 255, 0.16);
  background: transparent;
  color: #fff;
}

.request-dialog .reserve-link {
  background: var(--red);
  color: #fff;
}

.request-dialog .reserve-link:hover {
  background: var(--red-dark);
}

.request-content {
  display: grid;
  grid-template-rows: auto auto auto auto auto auto;
  min-height: min-content;
  padding: clamp(22px, 4vw, 32px);
}

.request-content > p {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.request-content h2 {
  margin: 0 46px 18px 0;
  color: #fff;
  font-size: clamp(42px, 5vw, 56px);
  line-height: 1;
}

.customer-form {
  order: 4;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 14px 0 0;
  padding-top: 14px;
}

.customer-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.customer-form label:last-child {
  grid-column: 1 / -1;
}

.customer-form input,
.customer-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  padding: 10px 12px;
  background: #101010;
  color: #fff;
  font: inherit;
  font-weight: 600;
}

.customer-form input {
  min-height: 42px;
}

.customer-form textarea {
  resize: vertical;
}

.request-items {
  order: 3;
  align-content: start;
  display: grid;
  gap: 12px;
  padding: 0 4px 12px 0;
}

.request-item {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
}

.request-empty {
  grid-template-columns: 1fr;
}

.request-item-image {
  width: 86px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: #fff;
  object-fit: cover;
}

.request-item-info {
  min-width: 0;
}

.request-item strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
}

.request-item-info > span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 700;
}

.request-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.45;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.request-price {
  color: #fff;
  font-weight: 900;
  white-space: nowrap;
}

.request-quantity {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.quantity-button {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.request-quantity span {
  min-width: 18px;
  text-align: center;
  color: #fff;
  font-weight: 900;
}

.remove-request-item {
  min-height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 0 10px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.request-total {
  order: 5;
  display: grid;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 18px;
  padding-top: 20px;
}

.request-total div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.request-total .total-line {
  color: #fff;
  font-size: 28px;
}

.request-actions {
  order: 6;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 14px;
}

.copy-feedback {
  order: 7;
  margin: 10px 0 0;
  color: #1f6b3d;
  font-weight: 900;
}

.secondary-action {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: #171717;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.secondary-action:hover {
  border-color: #171717;
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.customizer-section {
  background: #e9e9e3;
}

.process-section {
  background: var(--bg);
}

.process-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.process-grid article:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(20, 20, 18, 0.1);
}

.process-grid article > span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-bottom: 16px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
}

.process-grid h3 {
  margin: 0 0 10px;
  font-size: 19px;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.shipping-note {
  width: min(1120px, 100%);
  margin: 16px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
  background: #171717;
  color: #fff;
}

.shipping-note strong {
  font-size: 18px;
}

.shipping-note span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  line-height: 1.45;
}

.faq-section {
  background: #e8e8e2;
}

.story-section {
  background: #151515;
  color: #fff;
}

.story-layout {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.story-section .section-heading {
  margin: 0;
}

.story-section .section-heading > span {
  color: rgba(255, 255, 255, 0.72);
}

.story-copy {
  display: grid;
  gap: 18px;
  border-left: 2px solid var(--red);
  padding-left: clamp(18px, 3vw, 32px);
}

.story-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.65;
}

.faq-list {
  width: min(900px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.faq-list details[open] {
  border-color: rgba(217, 54, 46, 0.3);
  box-shadow: 0 14px 34px rgba(20, 20, 18, 0.09);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--red);
  font-size: 22px;
  line-height: 0.8;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 0 18px 18px;
  color: var(--muted);
  line-height: 1.55;
}

.customizer-layout {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  gap: 22px;
  align-items: start;
}

.preview-panel,
.controls {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #fbfbf7);
  box-shadow: var(--shadow);
}

.preview-panel {
  padding: clamp(14px, 3vw, 32px);
}

.box-preview {
  position: relative;
  container-type: inline-size;
  aspect-ratio: 1491 / 1502;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: #10100f;
  box-shadow: inset 0 0 0 1px rgba(20, 20, 18, 0.06), 0 10px 28px rgba(20, 20, 18, 0.08);
}

.box-base {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-text {
  position: absolute;
  z-index: 2;
  color: var(--green);
  font-family: Orbitron, Inter, sans-serif;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-text-stroke: 1.2px color-mix(in srgb, currentColor 60%, #ffffff);
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.55);
  mix-blend-mode: screen;
}

.brand-text {
  top: 39.4%;
  left: 54.3%;
  transform: translateX(-50%) skewX(-10deg);
  font-size: clamp(14px, 4.1cqw, 42px);
}

.top-right-text {
  top: 34.4%;
  right: 9.7%;
  width: 24%;
  overflow: hidden;
  text-align: center;
  transform: skewX(-10deg);
  transform-origin: center;
  font-size: clamp(9px, 2.35cqw, 24px);
}

.bottom-text {
  top: 68.8%;
  left: 54.2%;
  max-width: 58%;
  overflow: hidden;
  transform: translateX(-50%) skewX(-10deg);
  font-size: clamp(14px, 4.3cqw, 44px);
}

.screw {
  position: absolute;
  z-index: 3;
  width: 4.4%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 42% 35%, #ffffff 0 10%, currentColor 12% 58%, #2b2b2b 60% 76%, rgba(0, 0, 0, 0.35) 78%);
  color: #c9c9c9;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.28), 0 2px 5px rgba(0, 0, 0, 0.38);
  opacity: 0.82;
  mix-blend-mode: screen;
}

.screw-top-left {
  top: 40.2%;
  left: 15.2%;
}

.screw-top-right {
  top: 40.9%;
  right: 8.6%;
}

.screw-bottom-left {
  top: 68.6%;
  left: 14.8%;
}

.screw-bottom-right {
  top: 69.2%;
  right: 9.2%;
}

.screw-accent {
  background: radial-gradient(circle at 42% 35%, #ffffff 0 8%, currentColor 10% 70%, #2b2b2b 72% 82%, rgba(0, 0, 0, 0.25) 84%);
  opacity: 1;
  mix-blend-mode: normal;
}

.controls {
  display: grid;
  gap: 18px;
  padding: 20px;
}

.controls label,
.controls legend {
  color: #262626;
  font-weight: 800;
}

.controls label {
  display: grid;
  gap: 8px;
}

.field-counter {
  justify-self: end;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.controls input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 12px;
  font: inherit;
  font-weight: 700;
  text-transform: uppercase;
  outline: none;
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.controls fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.controls legend {
  margin-bottom: 10px;
}

.swatches {
  flex-wrap: wrap;
  gap: 9px;
}

.swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  padding: 0;
  background: var(--swatch-color);
}

.swatch.is-active {
  outline: 3px solid #171717;
  outline-offset: 2px;
}

.summary {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.summary strong {
  display: block;
  margin-bottom: 6px;
}

.summary p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.custom-price-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: linear-gradient(135deg, #171717, #2a2e31);
  color: #fff;
}

.custom-price-note strong {
  font-size: 18px;
}

.custom-price-note span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.custom-actions {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 10px;
}

.generated-preview {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: #f7f7f4;
}

.generated-preview[hidden] {
  display: none;
}

.generated-preview img {
  width: 100%;
  border-radius: 6px;
  background: #fff;
}

.generated-preview a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 6px;
  background: #fff;
  color: #171717;
  font-weight: 900;
}

@media (max-width: 840px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    min-height: 66px;
    gap: 14px;
    padding: 10px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .main-nav {
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    gap: 12px;
    font-size: 14px;
    white-space: nowrap;
    scrollbar-width: thin;
  }

  .language-switcher {
    margin-left: auto;
  }

  .hero {
    min-height: calc(78svh - 66px);
  }

  .hero-copy {
    width: min(620px, calc(100% - 32px));
    padding-bottom: 56px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 13vw, 72px);
  }

  .section {
    padding: 52px 16px;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
  }

  .filter-button {
    flex: 0 0 auto;
  }

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

  .product-info {
    padding: 12px;
  }

  .product-info h3 {
    font-size: 17px;
  }

  .product-meta,
  .price-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .customizer-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .catalog-tools {
    align-items: stretch;
    flex-direction: column;
  }

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

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

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

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

  .dialog-gallery {
    padding: 12px;
  }

  .dialog-main-image {
    max-height: 58svh;
  }

  .dialog-info {
    align-content: start;
    padding: 22px;
  }

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

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

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

  .preview-panel,
  .controls {
    box-shadow: 0 10px 30px rgba(25, 25, 20, 0.09);
  }

  .preview-panel {
    padding: 12px;
  }

  .controls {
    gap: 14px;
    padding: 16px;
  }

  .swatch {
    width: 34px;
    height: 34px;
  }

  .request-fab {
    right: 14px;
    bottom: 14px;
  }

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

  .cookie-banner {
    grid-template-columns: 1fr;
  }

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

  .request-mini {
    right: 14px;
    bottom: 78px;
    width: min(340px, calc(100% - 28px));
  }

  .brand-text {
    font-size: clamp(14px, 4.7cqw, 28px);
  }

  .bottom-text {
    font-size: clamp(13px, 4.5cqw, 26px);
  }
}

@media (max-width: 520px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .language-switcher {
    margin-left: 0;
  }

  .hero {
    min-height: 68svh;
  }

  .hero-copy {
    padding-bottom: 42px;
  }

  .primary-link {
    width: 100%;
    justify-content: center;
  }

  .hero-actions {
    display: grid;
  }

  .secondary-link {
    justify-content: center;
  }

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

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

  .story-copy {
    border-left: 0;
    padding-left: 0;
  }

  .product-card figure {
    aspect-ratio: 4 / 3;
  }

  .dialog-close {
    top: 8px;
    right: 8px;
  }

  .dialog-main-image {
    aspect-ratio: 4 / 5;
  }

  .dialog-thumbs {
    grid-template-columns: repeat(auto-fill, minmax(52px, 1fr));
  }

  .box-preview {
    border-radius: 6px;
  }

  .preview-text {
    -webkit-text-stroke-width: 1.1px;
  }

  .brand-text {
    font-size: clamp(13px, 4.55cqw, 22px);
  }

  .top-right-text {
    font-size: clamp(8px, 2.45cqw, 13px);
  }

  .bottom-text {
    font-size: clamp(12px, 3.9cqw, 20px);
  }

  .custom-price-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .request-fab {
    left: 14px;
    right: 14px;
    justify-content: center;
  }

  .whatsapp-fab {
    display: none;
  }

  .request-mini {
    display: none;
  }
}
