:root {
  color-scheme: dark;
  --color-bg: #070707;
  --color-surface: #131313;
  --color-primary: #c9a96e;
  --color-primary-soft: rgba(201, 169, 110, 0.16);
  --color-text: #f5f0eb;
  --color-muted: #8a8a8a;
  --color-border: #2d2d2d;
  --color-error: #e07070;
  --color-success: #70c08a;
  --radius: 24px;
  --shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
  --max-width: 1240px;
}

.hidden {
  display: none !important;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top, rgba(201, 169, 110, 0.12), transparent 28%),
              linear-gradient(180deg, #0d0d0d 0%, #080808 100%);
  color: var(--color-text);
}

body {
  line-height: 1.5;
}

button, input, textarea, select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px 24px;
}

.site-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto 32px;
  width: calc(100% - 32px);
  max-width: 1160px;
  padding: 12px 18px;
  border-radius: 12px;
  /* Stronger golden gradient for better presence */
  background: linear-gradient(90deg, rgba(238,230,221,0.22) 0%, rgba(201,169,110,0.22) 100%);
  color: #111111;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  transition: background 300ms ease, box-shadow 300ms ease, color 220ms ease, transform 220ms ease;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  padding: 10px;
}

.site-header .brand strong {
  color: var(--color-text);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.site-header a,
.site-header button {
  color: var(--color-text);
}

.site-header .site-nav a,
.site-header .site-nav button {
  color: rgba(245,240,235,0.9);
  font-weight: 600;
}

/* Brand/logo styling to stand out on golden background */
.brand img {
  width: 58px;
  height: 58px;
  padding: 10px;
  border-radius: 16px;
  background: linear-gradient(135deg, #b88f55, #d1b47b);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.08);
  border: 1px solid rgba(0,0,0,0.18);
}

.brand span {
  color: #6b5c4a;
}

/* Fixed / scrolled header */
.site-header.header--fixed {
  position: fixed;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 96px);
  max-width: 1140px;
  padding: 8px 16px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(245,240,235,0.78) 0%, rgba(201,169,110,0.68) 100%);
  box-shadow: 0 18px 44px rgba(0,0,0,0.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.08);
  backdrop-filter: blur(14px) saturate(1.08);
  z-index: 60;
  transition: background 320ms ease, box-shadow 320ms ease, transform 220ms ease;
}

.site-header.header--fixed .brand {
  gap: 11px;
}

.site-header.header--fixed .brand img {
  width: 48px;
  height: 48px;
  padding: 8px;
  border-radius: 14px;
}

.site-header.header--fixed .brand strong {
  font-size: 1rem;
}

.site-header.header--fixed .brand span {
  font-size: 0.82rem;
}

/* when fixed, switch texts to darker for contrast */
.site-header.header--fixed .brand strong {
  color: #0b0b0b;
}
.site-header.header--fixed a,
.site-header.header--fixed button {
  color: #0b0b0b;
}
.site-header.header--fixed .site-nav a,
.site-header.header--fixed .site-nav button {
  color: #1b1b1b;
}

/* subtle transparency pulse on hover/focus to suggest interactivity */
.site-header.header--fixed:hover {
  background: linear-gradient(90deg, rgba(245,240,235,0.86) 0%, rgba(201,169,110,0.76) 100%);
  transform: translateX(-50%) translateY(-1px);
}

/* When header is fixed, reserve space so content doesn't jump */
.has-fixed-header main {
  padding-top: 76px;
}

.brand strong {
  display: block;
  font-size: 1.1rem;
}

.brand span {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.site-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.site-nav a,
.site-nav button {
  color: var(--color-text);
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 0.95rem;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 14px;
  background: rgba(0,0,0,0.12);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-text);
  transition: transform 220ms ease, opacity 180ms ease;
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  align-items: center;
  gap: 40px;
  padding: 46px 36px;
  border-radius: 36px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  line-height: 1.02;
  max-width: 720px;
}

.hero p {
  max-width: 620px;
  margin: 24px 0;
  color: var(--color-muted);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-media {
  position: relative;
}

.hero-image-frame {
  background: linear-gradient(180deg, rgba(201,169,110,0.18), rgba(16,16,16,0.9));
  border-radius: 34px;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-frame img {
  width: 100%;
  max-width: 520px;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.22);
}

.section {
  margin-bottom: 40px;
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.section-head p {
  margin: 0;
  color: var(--color-muted);
  max-width: 760px;
}

.label {
  display: inline-flex;
  padding: 8px 14px;
  background: rgba(201,169,110,0.12);
  color: var(--color-primary);
  border-radius: 999px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-panel {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.search-panel input {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.04);
  color: var(--color-text);
  border-radius: 24px;
  padding: 16px 20px;
  font-size: 1rem;
}

.search-panel button {
  width: fit-content;
  justify-self: flex-start;
}

.search-suggestions {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.search-suggestions:empty {
  display: none;
}

.search-suggestions span {
  padding: 10px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  color: var(--color-muted);
  cursor: pointer;
}

.results-title {
  margin-bottom: 20px;
  padding: 18px 20px;
  border-radius: 26px;
  background: rgba(255,255,255,0.03);
  color: var(--color-primary);
  font-weight: 600;
}

.empty-message {
  grid-column: 1 / -1;
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  color: var(--color-muted);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.filter-button {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.02);
  color: var(--color-text);
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
}

.filter-button.active {
  background: rgba(201,169,110,0.18);
  border-color: rgba(201,169,110,0.34);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 12px;
  border-radius: 32px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
}

.product-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 28px;
}

.product-image-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 28px;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}

.product-image-button .product-image {
  display: block;
  transition: transform 220ms ease, filter 220ms ease;
}

.product-image-button:hover .product-image,
.product-image-button:focus-visible .product-image {
  transform: scale(1.025);
  filter: brightness(0.88);
}

.product-image-button:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.product-thumbs {
  display: flex;
  gap: 8px;
  min-height: 58px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.thumb-button {
  width: 56px;
  height: 56px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  overflow: hidden;
  flex: 0 0 auto;
}

.thumb-button.active {
  border-color: rgba(201,169,110,0.72);
}

.thumb-button img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
}

.product-copy {
  display: grid;
  gap: 12px;
}

.product-copy h3 {
  margin: 0;
  font-size: 1.2rem;
}

.product-copy p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.product-details {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(201,169,110,0.14);
  color: var(--color-primary);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}

.category-pill {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: var(--color-text) !important;
  font-size: 0.82rem;
}

.stock-low {
  color: var(--color-primary) !important;
  font-weight: 700;
}

/* Catalogue stock — grille minimaliste et détails à la demande */
#catalogue .section-head {
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1.2fr);
  align-items: end;
}

#catalogue .section-head h2 {
  font-weight: 400;
  letter-spacing: -0.035em;
}

.search-panel {
  position: relative;
  display: flex;
  align-items: center;
  width: min(100%, 760px);
  min-height: 40px;
  margin: 24px auto 22px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.025);
  transition: width 220ms ease, border-color 220ms ease, background 220ms ease;
}

.search-reveal {
  display: grid;
  place-items: center;
  flex: 0 0 40px;
  width: 40px;
  height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-primary);
  cursor: pointer;
}

.search-reveal svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.search-panel input {
  min-width: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
  padding: 15px 14px;
  outline: none;
  transition: opacity 160ms ease;
}

.search-submit {
  display: grid;
  place-items: center;
  width: 50px;
  height: 38px;
  margin-right: 9px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: var(--color-primary);
  cursor: pointer;
}

.search-close {
  flex: 0 0 38px;
  width: 38px;
  height: 30px;
  padding: 0;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: rgba(255,255,255,0.72);
  font-size: 1.15rem;
  font-weight: 300;
  cursor: pointer;
}

.search-panel.is-collapsed {
  width: 40px;
  margin-right: auto;
  margin-left: 0;
  border-color: transparent;
  background: transparent;
}

.search-panel.is-collapsed input,
.search-panel.is-collapsed .search-submit,
.search-panel.is-collapsed .search-close {
  width: 0;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.search-submit svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.search-suggestions {
  position: absolute;
  z-index: 5;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #151412;
}

.filters {
  gap: 0;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  overflow-x: auto;
  flex-wrap: nowrap;
}

.filter-button {
  flex: 0 0 auto;
  border: 0;
  border-radius: 0;
  padding: 13px 20px;
  background: transparent;
  color: var(--color-muted);
}

.filter-button.active {
  background: transparent;
  border-bottom: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.results-title {
  padding: 4px 0 14px;
  border-radius: 0;
  background: transparent;
  color: var(--color-muted);
  font-size: 0.85rem;
  font-weight: 400;
}

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

.product-card {
  gap: 9px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  transition: opacity 180ms ease;
}

.product-card:not(.is-expanded):hover {
  opacity: 0.84;
}

.product-card img {
  display: block;
  height: 290px;
  min-height: 290px;
  border-radius: 2px;
  background: #f3f1ed;
}

.product-image-button {
  min-height: 290px;
  border-radius: 2px;
  cursor: pointer;
}

.product-thumbs {
  min-height: 44px;
}

.thumb-button {
  width: 42px;
  height: 42px;
  border-radius: 2px;
}

.product-copy {
  gap: 7px;
  padding: 2px 2px 0;
}

.product-copy h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.8em;
  margin: 0;
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.35;
  text-align: center;
  overflow-wrap: anywhere;
}

.product-meta strong {
  display: block;
  width: 100%;
  padding: 7px 4px;
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  color: #d8b66f;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-align: center;
}

.product-card .product-meta {
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
  width: 100%;
}

.product-reveal {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 9px 0;
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: var(--color-muted);
  font-size: 0.78rem;
  cursor: pointer;
}

.product-expanded {
  display: grid;
  gap: 12px;
  padding: 5px 0 2px;
  animation: productDetailsIn 180ms ease both;
}

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

.product-details {
  padding-left: 16px;
}

.product-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.product-sizes > span {
  display: grid;
  min-width: 58px;
  padding: 7px 9px;
  border: 1px solid rgba(201,169,110,0.35);
  color: var(--color-text);
  text-align: center;
  font-size: 0.8rem;
}

.product-sizes small {
  color: var(--color-muted);
  font-size: 0.58rem;
}

.product-sizes .is-unavailable {
  opacity: 0.38;
  text-decoration: line-through;
}

.product-availability {
  justify-content: flex-start;
}

@keyframes productDetailsIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 960px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  #catalogue .section-head {
    grid-template-columns: 1fr;
  }

  #catalogue .section-head p {
    font-size: 0.92rem;
  }

  .search-panel {
    width: calc(100% - 12px);
    min-height: 40px;
    margin: 22px auto 20px;
  }

  .search-reveal {
    width: 40px;
    height: 38px;
    flex-basis: 40px;
  }

  .search-panel input {
    font-size: 0.86rem;
  }

  .filter-button {
    padding: 11px 14px;
    font-size: 0.82rem;
  }

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

  .product-card img {
    height: min(54vw, 260px);
    min-height: min(54vw, 260px);
  }

  .product-image-button {
    min-height: min(54vw, 260px);
  }

  .product-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .product-copy h3,
  .product-meta strong {
    font-size: 0.78rem;
  }
}

body.product-page-open {
  overflow: hidden;
}

.product-page {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 44px;
  overflow-y: auto;
  padding: clamp(28px, 5vw, 72px);
  background: #f8f8f7;
  color: #191919;
}

.product-page-close {
  position: fixed;
  z-index: 2;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 1px solid #c9c9c9;
  border-radius: 50%;
  background: #fff;
  color: #222;
  font-size: 1.8rem;
  cursor: pointer;
}

.product-page-gallery {
  min-width: 0;
}

.product-page-main-image {
  display: block;
  width: 100%;
  height: min(68vh, 680px);
  border: 1px solid #e5e5e5;
  background: #fff;
  object-fit: contain;
}

.product-page-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.product-page-thumbs button {
  width: 92px;
  height: 72px;
  padding: 2px;
  border: 1px solid #ddd;
  background: #fff;
}

.product-page-thumbs button.active {
  border: 2px solid #171717;
}

.product-page-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-page-info {
  display: flex;
  flex-direction: column;
  align-self: center;
  max-width: 520px;
}

.product-page-category {
  margin-bottom: 10px;
  color: #9a7a40;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-page-info h2 {
  margin: 0 0 12px;
  font-family: "Century Gothic", CenturyGothic, sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.product-page-info > strong {
  font-family: "Century Gothic", CenturyGothic, sans-serif;
  color: #a57626;
  font-size: 1.12rem;
  font-weight: 400;
  letter-spacing: 0.015em;
}

.product-page-info > small {
  margin-top: 6px;
  color: #888;
}

.product-page-stock {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 24px 0;
  color: #676767;
}

.product-page-stock i {
  width: 11px;
  height: 11px;
  border: 2px solid #a9ebba;
  border-radius: 50%;
  background: #24c85a;
}

.product-page-stock.out i {
  border-color: #efb4b4;
  background: #cc3b3b;
}

.product-page-sizes,
.product-page-quantity {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
  color: #777;
  font-size: 0.78rem;
}

.product-page-sizes > div,
.product-page-quantity > div {
  display: flex;
}

.product-page-sizes button,
.product-page-quantity button,
.product-page-quantity output {
  display: grid;
  place-items: center;
  min-width: 48px;
  height: 42px;
  border: 1px solid #aaa;
  background: #fff;
  color: #222;
}

.product-page-sizes button.active {
  border-color: #111;
  background: #111;
  color: #fff;
}

.product-page-sizes.needs-selection {
  padding: 8px;
  outline: 1px solid #c34141;
}

.product-page-add {
  width: 100%;
  min-height: 54px;
  border: 0;
  background: #171717;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.product-page-description {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid #ddd;
  color: #6f6f6f;
}

.product-page-description ul {
  padding-left: 20px;
}

@media (max-width: 760px) {
  .product-page {
    display: block;
    padding: 66px 18px 36px;
  }

  .product-page-main-image {
    height: 52vh;
  }

  .product-page-info {
    max-width: none;
    padding-top: 28px;
  }
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.product-meta strong {
  font-size: 1.1rem;
}

.product-card .product-meta strong {
  font-size: 0.78rem;
}

.product-meta span {
  color: var(--color-muted);
}

.button {
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 14px 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  transform: none;
  box-shadow: none;
}

.delivery-time-range {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.delivery-time-range span {
  display: inline-block;
  color: var(--color-muted);
}

.delivery-time-range input {
  width: 100%;
}

.button-primary {
  background: linear-gradient(135deg, #d1b47b, #b88f55);
  color: #111111;
  box-shadow: 0 18px 36px rgba(201,169,110,0.25);
}

.button-secondary,
.button-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--color-text);
  border: 1px solid rgba(255,255,255,0.12);
}

.button-ghost:hover,
.button-secondary:hover {
  background: rgba(255,255,255,0.12);
}

.about-card {
  padding: 32px;
  border-radius: 32px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
}

.about-card h3 {
  margin-top: 0;
}

.about-card ul {
  margin: 20px 0 0;
  padding-left: 20px;
  color: var(--color-muted);
}

.about-card li {
  margin-bottom: 10px;
}

.site-footer {
  padding: 0;
  margin-top: 0;
  min-height: 100vh;
  min-height: 100svh;
  background: #050505;
  position: relative;
  z-index: 5;
  overflow: hidden;
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background: #1b1b1b;
  z-index: -1;
}

.site-footer::before {
  width: 46%;
  height: 155px;
  top: -78px;
  left: -5%;
  border-radius: 0 0 55% 35%;
  transform: rotate(4deg);
}

.site-footer::after {
  width: 38%;
  height: 120px;
  right: -8%;
  bottom: -78px;
  border-radius: 60% 0 0;
  transform: rotate(5deg);
}

.footer-newsletter {
  width: min(100%, 370px);
  margin: 0 0 54px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.footer-newsletter h3 {
  margin: 0 0 16px;
  color: #fff;
  font: 500 0.77rem/1.2 "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  letter-spacing: 0.08em;
}

.footer-newsletter form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.72);
}

.footer-newsletter .newsletter-field {
  flex: 1;
  min-width: 0;
}

.footer-newsletter input[type="email"] {
  flex: 1;
  min-width: 0;
  width: 100%;
  padding: 9px 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font: 400 0.78rem/1.4 "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  letter-spacing: 0.04em;
}

.footer-newsletter input[type="email"]::placeholder {
  color: rgba(255,255,255,0.68);
  opacity: 1;
}

.footer-newsletter input[type="email"]:focus {
  color: #fff;
}

.footer-newsletter form:focus-within {
  border-bottom-color: #fff;
}

.footer-newsletter button {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
}

.footer-newsletter button:disabled {
  cursor: wait;
  opacity: 0.45;
}

.newsletter-status {
  min-height: 1em;
  margin: 10px 0 0;
  color: rgba(255,255,255,0.72);
  font-size: 0.68rem;
}

.newsletter-consent {
  display: flex;
  width: 100%;
  gap: 8px;
  align-items: flex-start;
  padding: 9px 0 5px;
  color: rgba(255,255,255,0.64);
  font-size: 0.65rem;
  line-height: 1.4;
  text-align: left;
}

.newsletter-consent input {
  width: 13px;
  height: 13px;
  margin: 2px 0 0;
  accent-color: var(--color-primary);
}

.newsletter-consent a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.newsletter-honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.sib-form-message-panel {
  display: none;
}

.newsletter-status-success {
  color: #70c08a;
}

.newsletter-status-error,
.entry__error {
  color: #e07070;
}

.entry__error {
  display: block;
  font-size: 0.65rem;
}

.footer-panel {
  max-width: var(--max-width);
  min-height: 100vh;
  min-height: 100svh;
  margin: 0 auto;
  padding: 56px 28px 28px;
  color: #929292;
  display: flex;
  flex-direction: column;
}

.socials {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
}

.social-link {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 7px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 180ms ease, background-color 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}

.social-link img {
  width: 16px;
  height: 16px;
  display: block;
  object-fit: contain;
  filter: grayscale(1) brightness(1.9);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #f5f5f5 !important;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.footer-logo-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 2px solid #f5f5f5;
  border-radius: 10px 4px 10px 4px;
  font-size: 1.05rem;
}

.footer-brand > p {
  max-width: 250px;
  margin: 17px 0 0;
  color: #858585;
  font-size: 0.8rem;
  line-height: 1.65;
}

.footer-col h4 {
  margin: 0 0 16px;
  color: #efefef;
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-col p,
.footer-col li,
.footer-col a {
  color: #8d8d8d;
  font-size: 0.78rem;
  line-height: 1.55;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 7px;
}

.footer-col p {
  margin: 0 0 7px;
}

.footer-col a {
  transition: color 160ms ease;
}

.footer-col a:hover,
.footer-col a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid #232323;
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: #777;
  font-size: 0.72rem;
  letter-spacing: 0.01em;
}

/* Reserve space for footer so it doesn't overlap page content */
main {
  padding-bottom: 200px;
}

@media (min-width: 700px) {
  main {
    padding-bottom: 120px;
  }
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--color-text);
}

.orders-list {
  display: grid;
  gap: 10px;
}

.order-card {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.018);
}

.order-card div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.order-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.order-card span {
  color: var(--color-muted);
}

.order-card-header strong {
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.order-card-header span,
.order-status {
  font-size: 0.72rem;
}

.order-card-footer {
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.order-card-footer strong {
  font-size: 0.88rem;
  font-weight: 600;
}

.order-history .section-head {
  align-items: end;
  margin-bottom: 22px;
}

.clear-orders-button {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: transparent;
  color: var(--color-muted);
  font-size: 0.7rem;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.clear-orders-button:hover,
.clear-orders-button:focus-visible {
  border-color: rgba(201, 169, 110, 0.5);
  background: rgba(201, 169, 110, 0.07);
  color: var(--color-text);
  outline: none;
}

.clear-orders-button:disabled {
  opacity: 0.35;
  cursor: default;
}

.cart-drawer,
.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.modal {
  overflow-y: auto;
  padding: 24px;
}

.cart-drawer {
  justify-content: flex-end;
  padding: 24px;
  background: transparent;
  pointer-events: none;
}

.drawer-panel,
.modal-card {
  width: min(100%, 460px);
  background: var(--color-surface);
  border-radius: 32px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.modal-card {
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}

.drawer-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  max-height: calc(100vh - 48px);
  pointer-events: auto;
}

.drawer-content {
  overflow-y: auto;
}

.cart-drawer .drawer-header,
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.drawer-header h2,
.modal-header h2 {
  margin: 0;
}

.close-button {
  background: transparent;
  border: none;
  color: var(--color-text);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}

.cart-items {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.cart-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 14px;
  align-items: start;
}

.cart-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 18px;
}

.cart-item-details {
  display: grid;
  gap: 6px;
}

.cart-item-details h4 {
  margin: 0;
  font-size: 1rem;
}

.cart-item-details p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.quantity-control button {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.06);
  color: var(--color-text);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  cursor: pointer;
}

.quantity-control span {
  min-width: 24px;
  text-align: center;
}

.quantity-control .remove-item {
  width: auto;
  padding: 0 12px;
  color: var(--color-primary);
}

.drawer-footer {
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: grid;
  gap: 18px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-form {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.required-fields-note {
  margin: 0 0 -4px;
  color: var(--color-muted);
  font-size: 0.82rem;
}

.required-fields-note span,
.required-mark {
  color: var(--color-error);
  font-weight: 700;
}

.form-label {
  display: inline-block;
}

.order-form label {
  display: grid;
  gap: 8px;
  color: var(--color-text);
}

.order-form input,
.order-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--color-text);
  border-radius: 18px;
  padding: 16px;
}

.order-form textarea {
  min-height: 110px;
  resize: vertical;
}

.modal-card > p {
  margin: 0;
  padding: 24px;
  color: var(--color-muted);
}

.modal-actions,
.thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.thankyou-actions {
  padding: 24px;
}

#thankyouMessage strong,
#thankyouMessage span {
  display: block;
}

#thankyouMessage strong {
  margin-bottom: 8px;
  color: var(--color-text);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 15;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(0,0,0,0.9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  cursor: zoom-out;
}

.lightbox-content {
  display: grid;
  gap: 12px;
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  cursor: default;
}

.lightbox-content img {
  display: block;
  width: auto;
  max-width: min(92vw, 1400px);
  max-height: 82vh;
  margin: auto;
  border-radius: 18px;
  background: #ffffff;
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0,0,0,0.55);
}

.lightbox-content figcaption {
  color: rgba(255,255,255,0.86);
  font-size: 0.95rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 50%;
  background: rgba(20,20,20,0.78);
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: var(--color-primary);
  color: #17120b;
  outline: none;
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 760px) {
  .footer-grid {
    grid-template-columns: minmax(240px, 1.5fr) repeat(3, minmax(130px, 1fr));
    gap: clamp(28px, 5vw, 72px);
  }
  .footer-panel {
    padding: 68px 42px 30px;
  }
}

@media (max-width: 759px) {
  .site-footer::before {
    width: 85%;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-contact {
    grid-column: auto;
  }
}

@media (max-width: 820px) {
  .site-header {
    justify-content: flex-end;
    align-items: center;
    gap: 0;
    width: 100%;
    min-height: 48px;
    padding: 0;
    margin-bottom: 24px;
    background: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .site-header.header--fixed {
    top: 6px;
    right: 12px;
    left: auto;
    width: auto;
    max-width: none;
    padding: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

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

  .menu-toggle {
    display: flex;
  }

  .site-header.header--fixed .menu-toggle {
    border-color: rgba(0,0,0,0.16);
    background: rgba(255,255,255,0.2);
  }

  .site-header.header--fixed .menu-toggle span {
    background: #0b0b0b;
  }

  .site-header.header--fixed:hover {
    background: transparent;
    transform: none;
  }

  .has-fixed-header main {
    padding-top: 72px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: auto;
    right: 0;
    width: min(185px, calc(100vw - 24px));
    z-index: 70;
    display: grid;
    gap: 6px;
    padding: 10px;
    border: 1px solid rgba(201,169,110,0.26);
    border-radius: 16px;
    background: rgba(15,15,15,0.98);
    box-shadow: 0 22px 55px rgba(0,0,0,0.42);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-header.menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .site-nav a,
  .site-nav button,
  .site-header.header--fixed .site-nav a,
  .site-header.header--fixed .site-nav button {
    display: flex;
    width: 100%;
    min-height: 46px;
    align-items: center;
    justify-content: flex-start;
    padding: 11px 14px;
    border-radius: 11px;
    color: var(--color-text);
    text-align: left;
  }

  .site-nav a:hover,
  .site-nav button:hover,
  .site-nav a:focus-visible,
  .site-nav button:focus-visible {
    color: #17120b;
    background: var(--color-primary);
    outline: none;
  }
}

/* Panier et renseignements de livraison — version claire Luxea Closet */
.cart-drawer {
  padding: 14px;
}

.cart-drawer .drawer-panel {
  width: min(100%, 410px);
  max-height: calc(100vh - 28px);
  background: #f7f5f1;
  color: #171513;
  border: 1px solid rgba(23, 21, 19, 0.16);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.cart-drawer .drawer-header {
  padding: 22px 22px 18px;
  border-bottom-color: #ded9d1;
}

.cart-drawer .drawer-header h2 {
  color: #171513;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.cart-drawer .close-button {
  color: #171513;
  font-size: 1.45rem;
}

.cart-drawer .cart-items {
  gap: 0;
  padding: 8px 22px;
}

.cart-drawer .cart-item {
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #e3dfd8;
}

.cart-drawer .cart-item:last-child {
  border-bottom: 0;
}

.cart-drawer .cart-item img {
  width: 78px;
  height: 92px;
  border-radius: 4px;
  background: #fff;
}

.cart-drawer .cart-item-details {
  align-content: start;
  gap: 8px;
}

.cart-drawer .cart-item-details h4 {
  color: #171513;
  font-size: 0.86rem;
  font-weight: 600;
}

.cart-drawer .cart-item-details p {
  color: #746e67;
  font-size: 0.72rem;
  line-height: 1.5;
}

.cart-drawer .quantity-control {
  gap: 5px;
}

.cart-drawer .quantity-control button {
  width: 27px;
  height: 27px;
  border-color: #d7d1c9;
  border-radius: 3px;
  background: #fff;
  color: #171513;
  font-size: 0.8rem;
}

.cart-drawer .quantity-control span {
  min-width: 20px;
  color: #171513;
  font-size: 0.78rem;
}

.cart-drawer .quantity-control .remove-item {
  margin-left: auto;
  padding: 0 4px;
  border: 0;
  background: transparent;
  color: #8b6138;
  font-size: 0.68rem;
}

.cart-drawer .drawer-footer {
  gap: 14px;
  padding: 20px 22px 22px;
  border-top-color: #ded9d1;
  background: #f1eee8;
}

.cart-drawer .cart-total {
  color: #171513;
}

.cart-drawer .cart-total span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cart-drawer .cart-total strong {
  font-size: 1.05rem;
}

.cart-drawer #checkoutBtn {
  width: 100%;
  min-height: 46px;
  border-radius: 4px;
  background: #171513;
  color: #fff;
  box-shadow: none;
}

#orderModal {
  align-items: stretch;
  padding: 0;
  background: #fff;
}

#orderModal .modal-card {
  width: 100%;
  max-height: 100vh;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #171513;
  box-shadow: none;
}

#orderModal .modal-header {
  padding: 20px clamp(24px, 6vw, 96px);
  border-bottom-color: #ded9d1;
}

#orderModal .modal-header h2 {
  color: #171513;
  font-size: 1.25rem;
  font-weight: 500;
}

#orderModal .close-button {
  color: #171513;
}

#orderModal .checkout-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-content: start;
  padding: 38px clamp(24px, 6vw, 96px);
}

#orderModal .checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 42%);
  min-height: calc(100vh - 70px);
}

#orderModal .form-wide,
#orderModal .required-fields-note {
  grid-column: 1 / -1;
}

#orderModal .required-fields-note {
  color: #7b746d;
}

#orderModal .order-form label {
  gap: 7px;
  color: #27231f;
  font-size: 0.78rem;
}

#orderModal .form-label small {
  color: #8a837c;
  font-size: 0.68rem;
  font-weight: 400;
}

#orderModal .order-form input,
#orderModal .order-form textarea {
  border: 1px solid #d6d0c8;
  border-radius: 6px;
  background: #fff;
  color: #171513;
  padding: 12px 13px;
}

#orderModal .order-form input:focus,
#orderModal .order-form textarea:focus {
  border-color: #a67945;
  outline: 2px solid rgba(166, 121, 69, 0.12);
}

#orderModal .order-form textarea {
  min-height: 82px;
}

#orderModal .delivery-time-range span {
  color: #746e67;
}

#orderModal .modal-actions {
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid #ded9d1;
}

#orderModal .modal-actions .button {
  min-width: 130px;
  border-radius: 5px;
}

#orderModal .modal-actions .button-ghost {
  border: 1px solid #cbc4bb;
  color: #27231f;
}

#orderModal .modal-actions .button-primary {
  background: #171513;
  color: #fff;
  box-shadow: none;
}

#orderModal .checkout-summary {
  padding: 38px clamp(24px, 5vw, 72px);
  border-left: 1px solid #e2ded8;
  background: #f5f4f2;
}

#orderModal .checkout-summary h3 {
  margin: 0 0 24px;
  color: #171513;
  font-size: 1.05rem;
  font-weight: 600;
}

#orderModal .checkout-summary-items {
  display: grid;
  gap: 18px;
}

#orderModal .checkout-summary-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

#orderModal .checkout-summary-image {
  position: relative;
}

#orderModal .checkout-summary-image img {
  display: block;
  width: 64px;
  height: 72px;
  object-fit: cover;
  border: 1px solid #ded9d1;
  border-radius: 7px;
  background: #fff;
}

#orderModal .checkout-summary-image span {
  position: absolute;
  top: -7px;
  right: -7px;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  background: #171513;
  color: #fff;
  font-size: 0.7rem;
}

#orderModal .checkout-summary-item h4 {
  margin: 0 0 4px;
  color: #171513;
  font-size: 0.82rem;
  font-weight: 500;
}

#orderModal .checkout-summary-item > div > span {
  color: #7b746d;
  font-size: 0.72rem;
}

#orderModal .checkout-summary-item > strong {
  font-size: 0.78rem;
  font-weight: 500;
}

#orderModal .checkout-summary-totals {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid #ded9d1;
}

#orderModal .checkout-summary-totals p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  color: #746e67;
  font-size: 0.76rem;
}

#orderModal .checkout-summary-totals strong {
  color: #171513;
}

#orderModal .checkout-summary-totals .checkout-summary-total {
  align-items: baseline;
  padding-top: 7px;
  color: #171513;
  font-size: 0.95rem;
}

#orderModal .checkout-summary-total strong {
  font-size: 1.15rem;
}

@media (max-width: 820px) {
  #orderModal .checkout-layout {
    grid-template-columns: 1fr;
  }

  #orderModal .checkout-summary {
    grid-row: 1;
    border-bottom: 1px solid #e2ded8;
    border-left: 0;
  }
}

@media (max-width: 620px) {
  #orderModal .modal-header {
    padding: 16px 20px;
  }

  #orderModal .checkout-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  #orderModal .form-wide,
  #orderModal .required-fields-note {
    grid-column: auto;
  }

  #orderModal .delivery-time-range {
    align-items: stretch;
    flex-direction: column;
    gap: 7px;
  }

  #orderModal .delivery-time-range span {
    display: none;
  }

  #orderModal .checkout-summary {
    padding: 24px 20px;
  }
}

@media (max-width: 700px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-shell {
    padding: 16px;
  }

  .hero {
    padding: 32px 22px;
  }

  .cart-drawer {
    padding: 12px;
  }

  .modal {
    padding: 12px;
  }

  .drawer-panel,
  .modal-card {
    width: 100%;
    border-radius: 24px;
  }

  .modal-card {
    max-height: calc(100vh - 24px);
  }

  .image-lightbox {
    padding: 58px 12px 18px;
  }

  .lightbox-content img {
    max-width: calc(100vw - 24px);
    max-height: 76vh;
    border-radius: 12px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 380px) {
  .menu-toggle {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }
}

/* Ensure anchored elements (search) are not hidden behind the fixed header */
#searchBar {
  scroll-margin-top: 120px;
}

/* Shoe size modal tweaks: more padding, tighter select, smaller buttons */
#shoeSizeModal .modal-card {
  width: min(100%, 420px);
  padding: 18px 20px;
  border-radius: 16px;
}

#shoeSizeModal .modal-content {
  padding: 8px 6px 14px;
}

#shoeSizeModal label {
  display: block;
  padding: 10px 6px;
  color: var(--color-muted);
  margin: 0 0 8px 0;
}

#shoeSizeModal #shoeSizeSelect {
  display: inline-block;
  width: 260px; /* reduced width for the choices frame */
  max-width: 86%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: var(--color-text);
}

#shoeSizeModal .modal-actions {
  padding: 12px 10px 6px;
  gap: 12px;
  justify-content: flex-end;
}

#shoeSizeModal .modal-actions .button {
  padding: 8px 12px; /* smaller buttons */
  font-size: 0.95rem;
  border-radius: 12px;
}

/* Give actions a little breathing room from the modal edges */
#shoeSizeModal .modal-card > .modal-actions {
  margin-top: 8px;
  padding-left: 12px;
  padding-right: 12px;
}

@media (max-width: 420px) {
  #shoeSizeModal #shoeSizeSelect { width: 100%; }
  #shoeSizeModal .modal-card { padding: 14px; }
}

/* Accueil inspiré de la nouvelle couverture Luxea Closet */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.catalogue-collapsed main {
  padding-bottom: 0;
}

.catalogue-view #catalogue {
  min-height: 100vh;
  min-height: 100svh;
  padding-top: 130px;
}

.orders-view #orderHistory {
  min-height: 100vh;
  min-height: 100svh;
  padding-top: 130px;
}

.page-shell {
  position: relative;
  padding-top: 0;
}

.site-header {
  position: absolute;
  top: 22px;
  left: 50%;
  z-index: 10;
  width: calc(100% - 80px);
  margin: 0;
  padding: 10px 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--color-text);
  transform: translateX(-50%);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.brand {
  flex: 0 0 auto;
}

.brand img,
.site-header.header--fixed .brand img {
  width: clamp(156px, 18vw, 220px);
  height: 76px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  box-shadow: none;
}

.site-nav {
  gap: clamp(12px, 2vw, 26px);
}

.site-nav a,
.site-nav button,
.site-header .site-nav a,
.site-header .site-nav button {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  background: var(--color-primary);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav .button-ghost {
  padding: 10px 18px;
  border-color: rgba(201, 169, 110, 0.58);
}

.site-header.header--fixed {
  top: 8px;
  width: calc(100% - 80px);
  max-width: 1160px;
  padding: 7px 18px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 14px;
  background: rgba(13, 9, 7, 0.9);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.site-header.header--fixed:hover {
  background: rgba(13, 9, 7, 0.94);
  transform: translateX(-50%) translateY(-1px);
}

.site-header.header--fixed .site-nav a,
.site-header.header--fixed .site-nav button {
  color: rgba(255, 255, 255, 0.94);
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  width: 100vw;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0 0 0 calc(50% - 50vw);
  padding: 150px 48% 230px 52px;
  align-items: center;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background-color: #160b08;
  background-image: url("couverture.png");
  background-position: center;
  background-size: cover;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.stock-showcase {
  position: absolute;
  right: 50%;
  bottom: 22px;
  z-index: 2;
  width: min(720px, calc(100% - 48px));
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: translateX(50%);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

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

.stock-showcase-card {
  min-width: 0;
  padding: 8px 7px 10px;
  overflow: hidden;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  color: #fffaf5;
  cursor: pointer;
  text-align: center;
  transition: background 350ms ease;
}

.stock-showcase-card-content {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 1000ms ease,
    transform 1000ms cubic-bezier(0.16, 1, 0.3, 1);
}

.stock-showcase-card.is-changing .stock-showcase-card-content {
  opacity: 0;
  transform: translateY(10px) scale(0.96);
}

.stock-showcase-card:hover,
.stock-showcase-card:focus-visible {
  background: rgba(201, 169, 110, 0.14);
  transform: translateY(-2px);
}

.stock-showcase-card img {
  display: block;
  width: 100%;
  height: 88px;
  margin-bottom: 6px;
  object-fit: contain;
}

.stock-showcase-name {
  display: block;
  overflow: hidden;
  font-size: 0.7rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stock-showcase-card strong {
  display: block;
  margin-top: 3px;
  color: #d6a84e;
  font-size: 0.68rem;
  font-weight: 600;
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.28) 0%, rgba(5, 5, 5, 0.05) 48%, transparent 72%);
  content: "";
  pointer-events: none;
}

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

.hero .eyebrow {
  margin-bottom: 12px;
  color: #d6a84e;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.34em;
}

.hero h1 {
  max-width: none;
  color: #fffaf5;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.35rem, 6.2vw, 5.55rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
}

.hero p {
  max-width: 500px;
  margin: 20px 0 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.75;
}

.hero .button-primary {
  min-width: 190px;
  padding: 15px 26px;
  background: linear-gradient(135deg, #e0ad51, #c4882e);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.featured {
  scroll-margin-top: 110px;
}

.cgv-card {
  width: min(100%, 680px);
}

.cgv-page {
  min-height: 100vh;
  min-height: 100svh;
  padding-top: 130px;
}

.cgv-page-card {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 56px);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 20px;
  background: rgba(19, 19, 19, 0.86);
}

.cgv-page-header {
  display: flex;
  margin-bottom: 32px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.cgv-page-header h1 {
  max-width: 700px;
  margin: 8px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.08;
}

@media (max-width: 700px) {
  .cgv-page {
    padding-top: 100px;
  }

  .cgv-page-header {
    flex-direction: column;
  }
}

.cgv-content {
  padding: 24px;
  color: var(--color-muted);
}

.cgv-content h3 {
  margin: 0 0 14px;
  color: var(--color-primary);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cgv-content p {
  margin: 0 0 12px;
}

.cgv-content ul {
  margin: 0;
  padding-left: 22px;
}

.cgv-content li + li {
  margin-top: 8px;
}

.cgv-page .cgv-content {
  padding: 0;
}

.cgv-page .cgv-content section {
  padding: 24px 0;
  border-top: 1px solid rgba(201, 169, 110, 0.16);
}

.cgv-page .cgv-content p {
  line-height: 1.75;
}

.cgv-note {
  color: var(--color-text);
  font-weight: 600;
}

.cgv-warning {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid rgba(224, 112, 112, 0.35);
  border-radius: 14px;
  background: rgba(224, 112, 112, 0.08);
}

.cgv-warning h3 {
  margin-top: 0;
  color: #efb0a7;
}

.cgv-thanks {
  margin: 32px 0 0;
  color: var(--color-text);
  font-size: 1.05rem;
  font-weight: 600;
}

@media (max-width: 960px) {
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding-right: 42%;
  }

  .site-nav {
    gap: 12px;
  }
}

@media (max-width: 820px) {
  .page-shell {
    padding-top: 0;
  }

  .site-header,
  .site-header.header--fixed {
    top: 10px;
    right: auto;
    left: 50%;
    display: flex;
    width: calc(100% - 44px);
    min-height: 70px;
    padding: 4px 62px;
    justify-content: center;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: translateX(-50%);
  }

  .site-header.header--fixed {
    border: 0;
    border-radius: 0;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .site-header.header--fixed:hover {
    background: transparent;
    transform: translateX(-50%);
  }

  .site-header .brand {
    display: flex;
  }

  .brand img,
  .site-header.header--fixed .brand img {
    width: min(42vw, 174px);
    height: 62px;
  }

  .menu-toggle,
  .site-header.header--fixed .menu-toggle {
    position: absolute;
    left: 0;
    display: flex;
    border-color: rgba(201, 169, 110, 0.46);
    background: rgba(0, 0, 0, 0.2);
  }

  .site-header.header--fixed .menu-toggle span {
    background: var(--color-text);
  }

  .site-nav {
    top: calc(100% + 5px);
    right: auto;
    left: 0;
    width: min(230px, calc(100vw - 44px));
    transform-origin: top left;
  }

  .site-nav a,
  .site-nav button,
  .site-header.header--fixed .site-nav a,
  .site-header.header--fixed .site-nav button {
    padding: 11px 14px;
    font-size: 0.82rem;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding: 250px 26px 210px;
    align-items: flex-end;
    background-position: 74% center;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.04) 28%, rgba(5, 5, 5, 0.88) 76%, rgba(5, 5, 5, 0.96) 100%);
  }

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

  .hero h1 {
    font-size: clamp(3.1rem, 13vw, 4.5rem);
  }

  .stock-showcase {
    bottom: 14px;
    width: calc(100% - 28px);
    padding: 0;
    overflow: hidden;
  }

  .stock-showcase-grid {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .stock-showcase-grid::-webkit-scrollbar {
    display: none;
  }

  .stock-showcase-card {
    flex: 0 0 calc(50% - 4px);
  }

  .stock-showcase-card img {
    height: 72px;
  }
}

@media (max-width: 700px) {
  .page-shell {
    padding: 0 12px 16px;
  }

  .site-header,
  .site-header.header--fixed {
    width: calc(100% - 36px);
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    margin-bottom: 0;
    border-radius: 0;
  }

  .catalogue-view #catalogue {
    padding-top: 100px;
  }

  .orders-view #orderHistory {
    padding-top: 100px;
  }

  .hero p {
    margin: 16px 0 24px;
    line-height: 1.6;
  }

  .hero .button-primary {
    width: 100%;
  }
}

/* Navigation plus fine et plus douce */
.site-nav a,
.site-nav button,
.site-header .site-nav a,
.site-header .site-nav button,
.site-header.header--fixed .site-nav a,
.site-header.header--fixed .site-nav button {
  font-family: "Caviar Dreams", "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* Header compact pendant le défilement */
.site-header.header--fixed {
  top: 10px;
  width: calc(100% - 160px);
  max-width: 980px;
  min-height: 56px;
  padding: 3px 15px;
  border-radius: 12px;
  background: rgba(13, 9, 7, 0.97);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}

.site-header.header--fixed:hover {
  background: rgba(13, 9, 7, 0.99);
}

.site-header.header--fixed .brand img {
  width: 132px;
  height: 50px;
}

.site-header.header--fixed .site-nav {
  gap: clamp(10px, 1.45vw, 20px);
}

.site-header.header--fixed .site-nav a,
.site-header.header--fixed .site-nav button {
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 0.7rem;
}

.site-header.header--fixed .site-nav .button-ghost {
  padding: 7px 13px;
}

@media (max-width: 820px) {
  .site-header.header--fixed {
    width: calc(100% - 52px);
    min-height: 52px;
    padding: 3px 12px;
  }

  .site-header.header--fixed .brand img {
    width: 120px;
    height: 46px;
  }
}

/* Le cadre apparaît au défilement et devient plus compact et translucide */
.site-header {
  border: 1px solid transparent;
  background: transparent;
  box-shadow: none;
  transition:
    opacity 260ms ease,
    width 300ms ease,
    padding 300ms ease,
    background 300ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease,
    transform 220ms ease,
    visibility 0s linear 260ms;
}

.site-header.header--fixed {
  border: 1px solid rgba(201, 169, 110, 0.2);
  background: rgba(13, 9, 7, 0.62);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  transition-delay: 0s;
}

.site-header.header--fixed:hover {
  background: rgba(13, 9, 7, 0.68);
}
