:root {
  --ink: #171717;
  --muted: #66625d;
  --line: #e7e1d8;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --accent: #0d6b5f;
  --accent-dark: #08483f;
  --ruby: #8d2639;
  --gold: #c69343;
  /* Variante plus foncee de --gold, utilisee pour le texte sur fond clair
     (le doree clair d'origine n'offre pas assez de contraste pour du texte). */
  --gold-deep: #876024;
  --shadow: 0 20px 50px rgba(23, 23, 23, 0.13);

  /* --- Design system : echelle d'espacement et de rayons (Phase 3) ---
     Valeurs reprises de l'usage existant, nommees pour reutilisation future. */
  --radius-sm: 6px;
  --radius: 8px;
  --radius-pill: 999px;
  --space-1: 6px;
  --space-2: 10px;
  --space-3: 14px;
  --space-4: 18px;
  --space-5: 24px;
  --space-6: 34px;
  --space-7: 54px;
  --space-8: 78px;
  --focus-ring-color: var(--accent);
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

@keyframes shine {
  from {
    transform: translateX(-120%) skewX(-18deg);
  }
  to {
    transform: translateX(180%) skewX(-18deg);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(198, 147, 67, 0.08), transparent 320px),
    var(--paper);
}

main {
  width: 100%;
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(231, 225, 216, 0.8);
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(16px);
}

.edition-strip {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: #fff;
}

.edition-strip-track {
  display: flex;
  width: 100%;
  justify-content: center;
  animation: none;
  will-change: auto;
}

.edition-strip:hover .edition-strip-track {
  animation-play-state: paused;
}

.edition-strip-group {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: center;
  gap: 34px;
  padding: 10px clamp(18px, 4vw, 56px);
}

.edition-strip-group[aria-hidden="true"] {
  display: none;
}

.edition-strip span {
  position: relative;
  padding-left: 34px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.edition-strip span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.brand,
.cart-button,
.main-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: 54px;
  height: 38px;
  object-fit: cover;
  border: 1px solid rgba(198, 147, 67, 0.5);
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(23, 23, 23, 0.12);
}

.main-nav {
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: #494641;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a:hover {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.cart-button {
  gap: 10px;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
  padding: 10px 12px;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.cart-button:hover {
  transform: translateY(-2px);
  border-color: rgba(198, 147, 67, 0.65);
  box-shadow: 0 12px 28px rgba(23, 23, 23, 0.1);
}

.cart-button strong {
  display: grid;
  min-width: 25px;
  height: 25px;
  place-items: center;
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
  font-size: 12px;
}

.hero {
  position: relative;
  min-height: min(710px, calc(100vh - 112px));
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #111;
}

.hero-image {
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 900ms ease, transform 6500ms ease;
}

.hero-image.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  z-index: -1;
  background: linear-gradient(90deg, rgba(15, 14, 12, 0.76), rgba(15, 14, 12, 0.34) 48%, rgba(15, 14, 12, 0.08));
}

.hero-content {
  width: min(680px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding: 64px 0 96px;
  color: #fff;
  animation: floatIn 760ms ease-out 120ms both;
}

.hero-message {
  display: none;
}

.hero-message.active {
  display: block;
}

.eyebrow {
  margin: 0 0 12px;
  /* --gold-deep par defaut : le doree clair d'origine echoue le contraste AA
     sur les fonds clairs (2.6:1 mesure). Sur les sections a fond sombre/photo,
     la regle ci-dessous restaure --gold (deja >6:1 sur fond sombre). */
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.lookbook .eyebrow,
.product-editorial .eyebrow,
.contact-band .eyebrow,
.promo-modal .eyebrow {
  color: var(--gold);
}

.hero h1,
.section-heading h2,
.lookbook h2,
.newsletter h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(40px, 7vw, 82px);
  max-width: 720px;
}

.hero-copy {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.7;
}

.hero-actions,
.catalog-tools,
.filter-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

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

.hero-dots {
  display: flex;
  gap: 9px;
  margin-top: 26px;
}

.hero-dots button {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.hero-dots button.active {
  width: 54px;
  background: var(--gold);
}

.primary-link,
.secondary-link,
.newsletter button,
.checkout-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0 18px;
  font-weight: 800;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-link::after,
.newsletter button::after,
.checkout-button::after,
.add-button::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: translateX(-120%) skewX(-18deg);
}

.primary-link:hover,
.newsletter button:hover,
.checkout-button:hover,
.add-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(13, 107, 95, 0.24);
}

.primary-link:hover::after,
.newsletter button:hover::after,
.checkout-button:hover::after,
.add-button:hover::after {
  animation: shine 760ms ease;
}

.primary-link,
.newsletter button,
.checkout-button {
  border: 0;
  color: #fff;
  background: var(--accent);
}

.secondary-link {
  border: 1px solid rgba(255, 255, 255, 0.44);
  color: #fff;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-strip article {
  padding: 22px clamp(18px, 3vw, 36px);
  background: var(--panel);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.trust-strip article.visible {
  opacity: 1;
  transform: translateY(0);
}

.universe-nav {
  width: calc(100% - clamp(36px, 8vw, 112px));
  margin: 72px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.universe-nav a {
  display: grid;
  gap: 18px;
  min-height: 154px;
  padding: 22px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.54);
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}

.universe-nav a:last-child {
  border-right: 0;
}

.universe-nav span {
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 800;
}

.universe-nav strong {
  align-self: end;
  font-size: clamp(20px, 2.4vw, 31px);
  line-height: 1;
}

.universe-nav a:hover {
  color: #fff;
  background: var(--ink);
  transform: translateY(-5px);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span,
.product-meta,
.lookbook p,
.site-footer span,
.cart-footer p {
  color: var(--muted);
}

.brand-story {
  width: 100%;
  margin: 78px auto;
  padding: 0 clamp(18px, 4vw, 56px);
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) 1.1fr;
  gap: clamp(22px, 5vw, 58px);
  align-items: center;
}

.story-media {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #111;
}

.story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.26));
}

.story-media img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 700ms ease;
}

.brand-story:hover .story-media img {
  transform: scale(1.04);
}

.story-copy h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.02;
}

.story-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.stats-row strong {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
  font-size: 13px;
}

.stats-row span {
  color: var(--ink);
  font-size: 24px;
}

.section-shell {
  width: 100%;
  margin: 78px auto;
  padding: 0 clamp(18px, 4vw, 56px);
}

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

.section-heading h2,
.lookbook h2,
.newsletter h2 {
  font-size: clamp(28px, 4vw, 48px);
}

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

.collection-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 24px;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.68)),
    linear-gradient(135deg, #0d6b5f, #8d2639);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(23, 23, 23, 0.2);
}

.collection-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.68)),
    linear-gradient(135deg, #202020, #0d6b5f);
}

.collection-card:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.68)),
    linear-gradient(135deg, #8d2639, #c69343);
}

.collection-card:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.68)),
    linear-gradient(135deg, #1c4f73, #c69343);
}

.collection-card span {
  font-size: 28px;
  font-weight: 800;
}

.catalog-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  padding-bottom: 30px;
  border-bottom: 0;
}

.catalog-tools {
  justify-content: flex-end;
}

.search-field {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.search-field input {
  width: min(310px, 82vw);
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  background: #fff;
}

.filter-button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 13px;
  background: #fff;
  cursor: pointer;
}

.filter-button.active {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 8px;
}

.catalog-sections {
  display: grid;
  gap: 54px;
}

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

.category-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin: 28px 0 18px;
}

.category-heading h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.04;
}

.category-heading a {
  color: var(--accent);
  font-weight: 800;
  white-space: nowrap;
}

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

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(420px, 56vh) auto;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 520ms ease, transform 560ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 560ms cubic-bezier(0.16, 1, 0.3, 1), border-color 260ms ease;
  cursor: pointer;
}

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

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

.empty-state {
  display: none;
  margin: 26px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.empty-state.show {
  display: block;
}

.product-card:hover {
  border-color: rgba(198, 147, 67, 0.55);
  transform: translateY(-8px);
  box-shadow: 0 36px 60px -18px rgba(23, 23, 23, 0.24), 0 14px 26px rgba(23, 23, 23, 0.1);
}

.product-card:focus-within {
  outline: 2px solid rgba(198, 147, 67, 0.7);
  outline-offset: 3px;
}

.product-image {
  position: relative;
  display: grid;
  place-items: end start;
  padding: 16px;
  color: #fff;
  overflow: hidden;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0)),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.18)),
    var(--product-image, linear-gradient(135deg, var(--tone-a), var(--tone-b)));
  background-color: #f5f1ea;
  background-size: cover, cover, var(--product-fit, cover);
  background-position: center, center, var(--product-position, center center);
  background-repeat: no-repeat, no-repeat, no-repeat;
  transition: transform 950ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.product-card:hover .product-image {
  transform: scale(1.07);
}

.product-image::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -70%;
  width: 45%;
  height: 140%;
  z-index: 1;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.22) 46%,
    rgba(255, 255, 255, 0.36) 50%,
    rgba(255, 255, 255, 0.22) 54%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-18deg) translateX(0);
  transition: transform 950ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.product-card:hover .product-image::before {
  transform: skewX(-18deg) translateX(330%);
}

.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.32) 100%);
  opacity: 0;
  transition: opacity 450ms ease;
  pointer-events: none;
}

.product-card:hover .product-image::after {
  opacity: 1;
}

.product-image strong {
  position: relative;
  align-self: start;
  justify-self: start;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  padding: 7px 10px;
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.discount-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: var(--radius-pill);
  padding: 0 12px;
  color: #fff;
  background: var(--ruby);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(141, 38, 57, 0.25);
}

.discount-badge.inline {
  position: static;
  margin-right: 10px;
  vertical-align: middle;
}

.like-button {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: #fff;
  background: rgba(23, 23, 23, 0.38);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.like-button:hover,
.like-button.liked {
  color: #fff;
  background: var(--ruby);
  transform: scale(1.06);
}

.like-button svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.product-info {
  display: grid;
  gap: 8px;
  padding: 18px 4px 0;
}

.product-row,
.cart-line,
.cart-total {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.product-row {
  display: grid;
  align-items: start;
}

.product-title {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  text-transform: none;
}

.product-meta {
  margin: 0;
  font-size: 13px;
}

.price {
  color: var(--muted);
  font-weight: 400;
  white-space: nowrap;
}

.price.sale,
.detail-price.sale {
  color: var(--ruby);
}

.price del,
.detail-price del {
  margin-right: 8px;
  color: var(--muted);
  font-weight: 400;
}

.add-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  background: var(--ink);
  cursor: pointer;
  font-weight: 800;
  position: relative;
  overflow: hidden;
  transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 240ms ease 70ms, transform 240ms ease 70ms;
}

.product-card:hover .product-actions,
.product-card:focus-within .product-actions {
  opacity: 1;
  transform: translateY(0);
}

.detail-link {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  padding: 0;
  color: var(--ink);
  font-weight: 800;
  font-size: 13px;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.detail-link:hover {
  color: var(--accent);
  border-color: currentColor;
  transform: translateY(-2px);
}

.product-detail-shell,
.creation-story,
.detail-notes {
  width: 100%;
  margin: 54px auto 78px;
  padding-left: clamp(18px, 4vw, 56px);
  padding-right: clamp(18px, 4vw, 56px);
}

.product-showcase {
  margin-top: 28px;
}

.detail-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.detail-breadcrumb span::before,
.detail-breadcrumb strong::before {
  content: "/";
  margin-right: 10px;
  color: var(--line);
}

.detail-breadcrumb strong {
  color: var(--ink);
}

.showcase-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.showcase-gallery {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  min-height: min(760px, calc(100vh - 160px));
}

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

.showcase-image {
  min-height: min(760px, calc(100vh - 160px));
}

.purchase-panel {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 18px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 48px rgba(23, 23, 23, 0.09);
  backdrop-filter: blur(14px);
}

.purchase-panel h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.98;
}

.detail-pills,
.panel-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-pills span,
.panel-services span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-pill);
  padding: 0 12px;
  font-size: 12px;
  font-weight: 800;
}

.detail-pills span {
  color: var(--ink);
  background: #f2ede4;
}

.panel-services {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.panel-services span {
  color: var(--muted);
  border: 1px solid var(--line);
}

.purchase-actions {
  display: grid;
  gap: 10px;
}

.product-editorial {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) 1.25fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  margin: 40px auto 0;
  padding: clamp(44px, 7vw, 88px) clamp(18px, 4vw, 56px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23, 23, 23, 0.96), rgba(13, 107, 95, 0.86)),
    url("assets/products/fb-cover.jpg") center / cover;
}

.product-editorial h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
}

.product-editorial p:not(.eyebrow) {
  margin: 0;
  max-width: 780px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.75;
}

.detail-flow {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 auto 78px;
  padding: 0 clamp(18px, 4vw, 56px);
  background: var(--line);
}

.detail-flow article {
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(22px, 4vw, 38px);
  background: #fff;
}

.detail-flow span {
  color: var(--gold-deep);
  font-weight: 800;
}

.detail-flow h3 {
  margin: 0;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.04;
}

.detail-flow p,
.detail-flow li {
  color: var(--muted);
  line-height: 1.7;
}

.detail-flow ul {
  margin: 0;
  padding-left: 18px;
}

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

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) 1.05fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.detail-gallery {
  position: sticky;
  top: 118px;
}

.detail-main-image {
  min-height: min(680px, 68vh);
  display: grid;
  place-items: end start;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 20px;
  color: #fff;
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.5)),
    var(--product-image, linear-gradient(135deg, var(--tone-a), var(--tone-b)));
  background-color: #f5f1ea;
  background-size: cover, var(--product-fit, cover);
  background-position: center, var(--product-position, center center);
  background-repeat: no-repeat;
}

.detail-main-image span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.angle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}

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

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

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

.detail-copy {
  padding-top: 22px;
}

.detail-copy h1,
.product-detail-shell > h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1;
}

.detail-intro {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.detail-price {
  margin: 28px 0;
  font-size: 30px;
  font-weight: 800;
}

.detail-specs {
  display: grid;
  gap: 1px;
  margin: 0 0 26px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.detail-specs div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 16px;
  background: #fff;
}

.detail-specs dt {
  color: var(--muted);
  font-weight: 800;
}

.detail-specs dd {
  margin: 0;
}

.detail-cart-button {
  width: 100%;
}

.creation-story {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 28px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.creation-story h2,
.detail-notes h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.04;
}

.story-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.story-steps article,
.detail-notes {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.story-steps article {
  padding: 20px;
}

.story-steps span {
  color: var(--gold-deep);
  font-weight: 800;
}

.story-steps h3 {
  margin: 18px 0 8px;
}

.story-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.detail-notes {
  padding: clamp(22px, 4vw, 38px);
}

.detail-notes ul {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.related-products {
  width: 100%;
  margin: 54px auto 78px;
  padding-left: clamp(18px, 4vw, 56px);
  padding-right: clamp(18px, 4vw, 56px);
}

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

.related-card {
  display: grid;
  gap: 10px;
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  transition: transform 480ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 480ms cubic-bezier(0.16, 1, 0.3, 1);
}

.related-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 48px -16px rgba(23, 23, 23, 0.2), 0 10px 20px rgba(23, 23, 23, 0.08);
}

.related-image {
  min-height: 250px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.28)),
    var(--product-image, linear-gradient(135deg, var(--tone-a), var(--tone-b)));
  background-color: #f5f1ea;
  background-size: cover, var(--product-fit, cover);
  background-position: center, var(--product-position, center center);
  background-repeat: no-repeat;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.related-card:hover .related-image {
  transform: scale(1.06);
}

.related-card strong,
.related-card small {
  padding: 0 16px;
}

.related-card strong {
  text-transform: uppercase;
}

.related-card small {
  padding-bottom: 16px;
  color: var(--muted);
  font-weight: 800;
}

.lookbook,
.newsletter,
.site-footer {
  width: calc(100% - clamp(36px, 8vw, 112px));
  margin: 0 auto 78px;
}

.lookbook {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 5vw, 54px);
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23, 23, 23, 0.94), rgba(13, 107, 95, 0.9)),
    url("assets/products/fb-cover.jpg") center / cover;
}

.lookbook p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 22px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.newsletter form {
  display: flex;
  gap: 10px;
}

.newsletter input,
.newsletter textarea {
  width: min(330px, 70vw);
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  background: #fff;
}

.newsletter textarea {
  width: 100%;
  min-height: 132px;
  padding-top: 13px;
  resize: vertical;
  line-height: 1.6;
}

.contact-section {
  grid-template-columns: minmax(260px, 0.78fr) minmax(320px, 1fr);
  align-items: start;
}

.contact-section p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-form {
  display: grid;
  gap: 10px;
}

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

.contact-form input {
  width: 100%;
}

.contact-form button {
  justify-self: start;
}

.form-message {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--accent-dark);
  font-weight: 700;
}

.contact-band {
  width: calc(100% - clamp(36px, 8vw, 112px));
  margin: 0 auto 78px;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23, 23, 23, 0.96), rgba(13, 107, 95, 0.88)),
    url("assets/products/fb-cover.jpg") center / cover;
  box-shadow: var(--shadow);
}

.contact-copy h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
}

.contact-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.quick-message-form {
  display: grid;
  gap: 10px;
}

.quick-message-form textarea {
  width: 100%;
  min-height: 128px;
  border: 0;
  border-radius: var(--radius);
  padding: 14px;
  resize: vertical;
  line-height: 1.6;
  background: #fff;
}

.quick-message-form button {
  min-height: 48px;
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  background: var(--gold);
  font-weight: 800;
  cursor: pointer;
}

.contact-card .whatsapp-direct {
  background: #fff;
  color: var(--ink);
}

.contact-card .form-message {
  color: #fff;
}

.cart-panel {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 40;
  width: min(430px, 100%);
  display: grid;
  grid-template-rows: auto 1fr auto;
  transform: translateX(105%);
  transition: transform 220ms ease;
  background: #fff;
  box-shadow: var(--shadow);
}

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

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

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

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

.cart-header h2 {
  margin: 0;
}

.icon-button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.cart-items {
  overflow: auto;
  padding: 12px 22px;
}

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

.cart-line h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.cart-line p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.cart-line button {
  border: 0;
  background: transparent;
  color: var(--ruby);
  cursor: pointer;
  font-weight: 800;
}

.checkout-button {
  width: 100%;
  margin-top: 18px;
  cursor: pointer;
}

.payment-methods {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.payment-card {
  flex: 1;
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  border: 1px solid transparent;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.payment-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(23, 23, 23, 0.18);
}

.payment-card .payment-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.payment-card.orange-money {
  background: #000;
}

.payment-card.wave {
  background: #00a9e0;
}

.payment-card.is-pending {
  border-color: var(--line);
  cursor: not-allowed;
}

.payment-card.is-pending .payment-logo {
  filter: grayscale(1);
  opacity: 0.45;
}

.payment-card.is-pending:hover {
  transform: none;
  box-shadow: none;
}

.payment-soon {
  position: absolute;
  inset: auto 0 0 0;
  padding: 4px 0;
  background: rgba(23, 23, 23, 0.72);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  opacity: 0;
  background: rgba(0, 0, 0, 0.46);
  transition: opacity 180ms ease;
}

.modal-overlay.open {
  opacity: 1;
}

.marketing-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 65;
  width: min(470px, calc(100% - 36px));
  padding: 30px;
  border: 1px solid rgba(198, 147, 67, 0.32);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translate(-50%, -46%) scale(0.97);
  transition: opacity 180ms ease, transform 180ms ease;
}

.marketing-modal.open {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.modal-product-image {
  display: block;
  width: 100%;
  max-width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 0 auto 18px;
  background: var(--paper);
}

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

.marketing-modal h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.04;
}

.marketing-modal p {
  color: var(--muted);
  line-height: 1.7;
}

.marketing-modal form {
  display: grid;
  gap: 10px;
}

.marketing-modal input {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
}

.marketing-modal form button,
.whatsapp-direct {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  padding: 0 16px;
  color: #fff;
  background: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.promo-modal {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23, 23, 23, 0.96), rgba(141, 38, 57, 0.93)),
    url("assets/products/fb-cover.jpg") center / cover;
}

.promo-modal p {
  color: rgba(255, 255, 255, 0.78);
}

.promo-modal .modal-close {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
}

.promo-modal .primary-link {
  width: auto;
}

.scrim {
  position: fixed;
  inset: 0;
  z-index: 35;
  display: none;
  background: rgba(0, 0, 0, 0.42);
}

.scrim.open {
  display: block;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 680ms ease, transform 680ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.site-footer strong,
.site-footer span {
  display: block;
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    grid-column: 1 / -1;
    order: 3;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    border-top: 0 solid transparent;
    transition: max-height 220ms ease, border-color 220ms ease, padding 220ms ease;
  }

  .main-nav.open {
    max-height: 360px;
    padding-top: 10px;
    border-top: 1px solid var(--line);
  }

  .main-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip,
  .universe-nav,
  .collection-grid,
  .product-grid,
  .catalog-top,
  .product-detail-layout,
  .showcase-layout,
  .product-editorial,
  .detail-flow,
  .creation-story,
  .brand-story,
  .newsletter {
    grid-template-columns: 1fr 1fr;
  }

  .contact-band {
    grid-template-columns: 1fr;
  }

  .catalog-tools {
    justify-content: flex-start;
  }

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

  .product-card {
    grid-template-rows: 360px auto;
  }

  /* Phase 3 : evite les colonnes trop etroites sur tablette */
  .story-steps {
    grid-template-columns: 1fr 1fr;
  }

  .angle-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: min(760px, calc(100vh - 72px));
    align-items: end;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(15, 14, 12, 0.18), rgba(15, 14, 12, 0.76) 62%, rgba(15, 14, 12, 0.92)),
      linear-gradient(90deg, rgba(15, 14, 12, 0.34), rgba(15, 14, 12, 0.04));
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
    align-self: end;
    padding: 240px 0 46px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-dots button {
    width: 28px;
  }

  .hero-dots button.active {
    width: 42px;
  }

  .trust-strip,
  .universe-nav,
  .collection-grid,
  .product-grid,
  .catalog-top,
  .product-detail-layout,
  .showcase-layout,
  .showcase-gallery,
  .product-editorial,
  .detail-flow,
  .creation-story,
  .story-steps,
  .brand-story,
  .stats-row,
  .newsletter {
    grid-template-columns: 1fr;
  }

  .story-media {
    min-height: 330px;
  }

  .product-card {
    grid-template-rows: 360px auto;
  }

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

  .product-actions {
    opacity: 1;
    transform: none;
  }

  .category-heading {
    display: grid;
  }

  .detail-gallery {
    position: static;
  }

  .purchase-panel {
    position: static;
  }

  .angle-rail {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .detail-specs div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .lookbook,
  .newsletter form,
  .site-footer {
    display: grid;
  }

  .newsletter input {
    width: 100%;
  }

  .contact-band {
    width: calc(100% - 36px);
    padding: 24px;
  }

  .contact-card {
    padding: 12px;
  }
}

@media (min-width: 941px) {
  .edition-strip-group {
    width: 100%;
    justify-content: center;
    gap: clamp(18px, 3vw, 42px);
    padding: 11px clamp(18px, 4vw, 56px);
  }

  .edition-strip span {
    padding-left: 20px;
  }
}

.ndah-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 200;
}

.ndah-cursor-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  padding: 0 16px;
  text-align: center;
  border-radius: 50%;
  background: rgba(23, 23, 23, 0.88);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.3;
  transform: translate(-50%, -50%) scale(0.4);
  opacity: 0;
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1), opacity 260ms ease;
}

.ndah-cursor.is-active .ndah-cursor-inner {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

body.ndah-cursor-enabled .product-image,
body.ndah-cursor-enabled .related-image {
  cursor: none;
}

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

  .ndah-cursor {
    display: none;
  }
}

/* --- Accessibilite (Phase 3) --- */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 12px 18px;
  border-radius: 0 0 var(--radius) 0;
  color: #fff;
  background: var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  left: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--focus-ring-color);
  outline-offset: 2px;
}

.cart-panel:focus-visible,
.marketing-modal:focus-visible {
  outline: none;
}

/* ---------- Avis clients (fiche produit) ---------- */
.product-reviews {
  width: 100%;
  margin: 0 auto 78px;
  padding: 0 clamp(18px, 4vw, 56px);
}

.product-reviews .empty-hint {
  color: var(--muted);
  line-height: 1.7;
}

.reviews-summary {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 18px;
}

.reviews-summary strong {
  font-size: clamp(24px, 3vw, 32px);
}

.reviews-summary span {
  color: var(--muted);
}

.reviews-list {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.review-item {
  padding: 18px clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.review-item-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.review-stars {
  color: var(--gold-deep, #c69343);
  letter-spacing: 1px;
}

.review-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.review-form {
  display: grid;
  gap: 12px;
  max-width: 520px;
}

.review-form label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

.review-form input,
.review-form select,
.review-form textarea {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 14px;
  font: inherit;
}

.review-form textarea {
  min-height: 96px;
  resize: vertical;
}

.review-form button {
  justify-self: start;
  min-height: 48px;
  border: 0;
  border-radius: var(--radius);
  padding: 0 20px;
  color: #fff;
  background: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.review-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  left: -9999px;
}
