:root {
  color-scheme: dark;
  --bg: #15110f;
  --bg-soft: #211916;
  --ink: #f6ede4;
  --muted: #c8b8ab;
  --accent: #d96a1d;
  --accent-2: #f0c24b;
  --card: rgba(246, 237, 228, 0.06);
  --glass: rgba(246, 237, 228, 0.05);
  --border: rgba(240, 194, 75, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  --radius: 20px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(240, 194, 75, 0.12), transparent 18%),
    radial-gradient(circle at 18% 24%, rgba(217, 106, 29, 0.14), transparent 20%),
    linear-gradient(135deg, #15110f 0%, #1b1411 46%, #241915 100%);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.bg-orb {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  z-index: -1;
}

.orb-1 {
  background: rgba(240, 194, 75, 0.34);
  top: -80px;
  left: -80px;
}

.orb-2 {
  background: rgba(217, 106, 29, 0.28);
  bottom: 10vh;
  right: -120px;
}

.orb-3 {
  background: rgba(184, 132, 71, 0.18);
  top: 40vh;
  right: 10vw;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(20px);
  background: rgba(19, 15, 13, 0.72);
  border-bottom: 1px solid var(--border);
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid;
  place-items: center;
  color: #1a120e;
  font-family: "Playfair Display", serif;
  font-size: 20px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-weight: 600;
  color: var(--muted);
}

.nav a {
  position: relative;
  padding-bottom: 4px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent-2);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.cart-button {
  border: none;
  background: rgba(246, 237, 228, 0.08);
  padding: 10px 14px;
  border-radius: 999px;
  display: flex;
  gap: 8px;
  align-items: center;
  box-shadow: none;
  border: 1px solid var(--border);
  cursor: pointer;
}

.menu-button {
  display: none;
  border: 1px solid var(--border);
  background: rgba(246, 237, 228, 0.08);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.cart-count {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1a120e;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 12px;
}

.hero {
  padding: 110px 0 76px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 54px;
  align-items: center;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3.2rem, 4vw + 1rem, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  max-width: 9ch;
}

.lead {
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 52ch;
  font-size: 1.02rem;
  line-height: 1.9;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--accent-2);
  margin-bottom: 14px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn {
  border: none;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1a120e;
  box-shadow: 0 16px 32px rgba(217, 106, 29, 0.28);
}

.btn.primary:hover {
  transform: translateY(-2px);
}

.btn.ghost {
  background: rgba(246, 237, 228, 0.06);
  border: 1px solid var(--border);
}

.btn.dark {
  background: #f0c24b;
  color: #1a120e;
}

.btn.full {
  width: 100%;
}

.hero-stats {
  display: flex;
  gap: 24px;
}

.hero-stats div {
  display: grid;
  gap: 4px;
}

.hero-stats span {
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  padding: 24px;
  background: linear-gradient(180deg, rgba(246, 237, 228, 0.06), rgba(246, 237, 228, 0.02));
  border: 1px solid rgba(240, 194, 75, 0.12);
  border-radius: 28px;
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.28);
}

.hero-visual img {
  transition: opacity 0.45s ease, filter 0.45s ease, transform 0.55s ease;
}

.hero-visual img.is-switching {
  opacity: 0.42;
  filter: blur(12px);
  transform: scale(1.02);
}

.hero-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: rgba(246, 237, 228, 0.92);
  color: #1a120e;
  padding: 12px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.badge-title {
  font-weight: 700;
}

.badge-sub {
  display: block;
  font-size: 12px;
  color: var(--muted);
}

.page-hero {
  padding: 80px 0 30px;
}

.section-head {
  text-align: center;
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: clamp(2rem, 2vw + 1.4rem, 3rem);
  font-family: "Playfair Display", serif;
}

.section-head p {
  color: var(--muted);
  margin-top: 12px;
}

.catalog {
  padding: 60px 0 80px;
}

.concept-grid {
  display: grid;
  gap: 28px;
  margin-bottom: 72px;
}

.concept-card {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 420px);
  gap: 28px;
  padding: 30px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  min-height: 360px;
  box-shadow: 0 26px 60px rgba(15, 17, 21, 0.14);
}

.concept-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 55%);
  pointer-events: none;
}

.concept-copy,
.concept-visual {
  position: relative;
  z-index: 1;
}

.concept-copy {
  display: grid;
  align-content: center;
  gap: 16px;
}

.concept-copy h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 2vw + 1rem, 3.2rem);
  line-height: 1;
}

.concept-copy p {
  max-width: 44ch;
  font-size: 1rem;
  line-height: 1.8;
}

.concept-kicker {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 11px;
  font-weight: 700;
}

.concept-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.concept-pills span {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

.concept-visual {
  display: grid;
  align-items: center;
}

.concept-frame {
  position: relative;
  padding: 18px;
  border-radius: 24px;
  min-height: 300px;
}

.concept-frame img {
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: 18px;
}

.concept-overlay {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  padding: 14px 16px;
  border-radius: 18px;
  display: grid;
  gap: 2px;
  font-size: 13px;
}

.concept-overlay strong {
  font-size: 15px;
}

.concept-card-maison {
  background:
    linear-gradient(135deg, #f5efe4 0%, #e7dcc7 100%);
  color: #17120c;
}

.concept-card-maison .concept-kicker {
  color: #8f6d35;
}

.concept-card-maison .concept-pills span,
.concept-card-maison .concept-frame,
.concept-card-maison .concept-overlay {
  background: rgba(255, 251, 243, 0.66);
  border: 1px solid rgba(23, 18, 12, 0.08);
}

.concept-card-atelier {
  background:
    linear-gradient(135deg, #e7e7df 0%, #d3d3c0 52%, #6f7462 100%);
  color: #121511;
}

.concept-card-atelier .concept-kicker {
  color: #44503b;
}

.concept-card-atelier .concept-pills span,
.concept-card-atelier .concept-frame,
.concept-card-atelier .concept-overlay {
  background: rgba(245, 246, 239, 0.62);
  border: 1px solid rgba(18, 21, 17, 0.08);
}

.concept-card-soiree {
  background:
    radial-gradient(circle at top right, rgba(240, 194, 75, 0.18), transparent 24%),
    linear-gradient(135deg, #15110f 0%, #211916 54%, #6a3417 100%);
  color: #f6ede4;
}

.concept-card-soiree .concept-kicker {
  color: #f0c24b;
}

.concept-card-soiree .concept-pills span,
.concept-card-soiree .concept-frame,
.concept-card-soiree .concept-overlay {
  background: rgba(246, 237, 228, 0.08);
  border: 1px solid rgba(240, 194, 75, 0.16);
}

.concept-card-soiree .concept-copy p,
.concept-card-soiree .concept-overlay span {
  color: #dbc8ba;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-chip {
  border: 1px solid var(--border);
  background: rgba(246, 237, 228, 0.06);
  color: var(--ink);
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.2s ease;
}

.filter-chip.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1a120e;
  border-color: transparent;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.product-card {
  padding: 18px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(246, 237, 228, 0.06), rgba(246, 237, 228, 0.03));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: 260px auto auto 1fr auto;
  gap: 12px;
  min-height: 500px;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card > img {
  height: 260px;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(15, 17, 21, 0.18);
}

.product-card h3 {
  font-size: 18px;
  min-height: 56px;
  display: flex;
  align-items: flex-start;
}

.product-card .price {
  font-weight: 700;
  min-height: 32px;
  display: flex;
  align-items: center;
}

.product-card .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.product-card .btn.ghost {
  width: 100%;
  min-height: 48px;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tag {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(240, 194, 75, 0.12);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-2);
}

.card-meta {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
  gap: 10px;
  min-height: 44px;
  align-self: end;
}

.product {
  padding: 80px 0 120px;
}

.product-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.product-gallery {
  padding: 18px;
  border-radius: var(--radius);
  display: grid;
  gap: 14px;
  min-width: 0;
}

.thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.thumbs img {
  width: 70px;
  height: 70px;
  cursor: pointer;
  border-radius: 12px;
  border: 2px solid transparent;
}


.thumbs img.active {
  border-color: var(--accent);
}

.product-details {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.product-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.product-desc {
  color: var(--muted);
}

.price-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.price {
  font-size: 26px;
  font-weight: 800;
}

.chip {
  background: rgba(240, 194, 75, 0.12);
  color: var(--accent-2);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.option-block p {
  font-weight: 600;
  margin-bottom: 10px;
}

.option-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.option-row button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(246, 237, 228, 0.08);
  color: var(--ink);
  cursor: pointer;
}

.option-row button.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1a120e;
}

.product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tryon-entry {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 18px;
}

.tryon-entry h3 {
  font-size: 1.15rem;
}

.tryon-entry-copy {
  color: var(--muted);
}

.info-list {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
}

.cart-drawer {
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  width: min(360px, 90vw);
  background:
    radial-gradient(circle at top left, rgba(240, 194, 75, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(30, 22, 19, 0.98), rgba(17, 12, 10, 0.98));
  color: var(--ink);
  border-left: 1px solid rgba(240, 194, 75, 0.14);
  box-shadow: -24px 0 70px rgba(0, 0, 0, 0.42);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: grid;
  grid-template-rows: auto 1fr auto;
  z-index: 30;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(7, 6, 6, 0.68);
  backdrop-filter: blur(10px);
  display: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 45;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu-panel {
  width: min(360px, 88vw);
  min-height: 100%;
  margin-left: auto;
  background: linear-gradient(180deg, #171210, #0f0b09);
  border-left: 1px solid var(--border);
  padding: 22px 18px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 22px;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.28);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav {
  display: grid;
  align-content: start;
  gap: 12px;
}

.mobile-nav a {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(246, 237, 228, 0.05);
  border: 1px solid rgba(240, 194, 75, 0.08);
  font-weight: 700;
}

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

.cart-header,
.cart-footer {
  padding: 20px;
  background: rgba(246, 237, 228, 0.02);
  border-bottom: 1px solid rgba(240, 194, 75, 0.1);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.cart-items {
  padding: 20px;
  display: grid;
  gap: 16px;
  overflow-y: auto;
  align-content: start;
}

.cart-item {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid rgba(240, 194, 75, 0.08);
  border-radius: 18px;
  background: rgba(246, 237, 228, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  align-items: baseline;
  color: var(--muted);
}

.cart-total strong {
  color: var(--accent-2);
  font-size: 1.2rem;
}

.cart-items > p {
  padding: 18px 16px;
  border-radius: 18px;
  background: rgba(246, 237, 228, 0.04);
  border: 1px dashed rgba(240, 194, 75, 0.12);
  color: var(--muted);
}

.icon-btn {
  border: none;
  background: rgba(246, 237, 228, 0.05);
  color: var(--ink);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(240, 194, 75, 0.1);
  font-size: 18px;
  cursor: pointer;
}

.icon-btn:hover {
  background: rgba(240, 194, 75, 0.12);
}

.tryon-section {
  padding: 0 0 120px;
}

.tryon-shell {
  padding: 28px;
  border-radius: var(--radius);
}

.tryon-head {
  text-align: left;
}

.upload-area {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.upload-box {
  border: 1px dashed var(--border);
  border-radius: 16px;
  padding: 18px;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 128px;
  text-align: center;
  background: rgba(246, 237, 228, 0.06);
  font-weight: 600;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.upload-box.dragover {
  border-color: var(--accent-2);
  background: rgba(240, 194, 75, 0.08);
  transform: translateY(-2px);
}

.upload-box input {
  display: none;
}

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

.tryon-card {
  padding: 16px;
  background: var(--bg-soft);
  border-radius: 16px;
  border: 1px solid var(--border);
  display: grid;
  gap: 10px;
}

.tryon-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tryon-card-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.tryon-card img {
  height: 220px;
  cursor: zoom-in;
}

.tryon-card img.is-placeholder {
  filter: blur(14px) saturate(0.9);
  opacity: 0.82;
}

.tryon-card.result .result-box {
  height: 220px;
  border-radius: 12px;
  border: 1px dashed var(--border);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.result-box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.result-box.show img {
  opacity: 1;
}

.hint {
  color: var(--muted);
  font-size: 13px;
}

.modal-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.loader {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 3px solid rgba(240, 194, 75, 0.2);
  border-top-color: var(--accent-2);
  animation: spin 1s linear infinite;
  display: none;
}

.loader.active {
  display: inline-block;
}

.status {
  color: var(--muted);
  font-size: 14px;
}

.zoom-btn {
  border: 1px solid var(--border);
  background: rgba(246, 237, 228, 0.08);
  color: var(--ink);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.download-btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.fullscreen-viewer {
  position: fixed;
  inset: 0;
  background: rgba(10, 13, 20, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 60;
}

.fullscreen-viewer.open {
  display: flex;
}

.fullscreen-stage {
  max-width: min(1200px, 100%);
  max-height: 100%;
  display: grid;
  gap: 14px;
  justify-items: center;
  overflow: hidden;
  user-select: none;
}

.fullscreen-stage img {
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 120px);
  border-radius: 20px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.03);
  transform-origin: center center;
  transition: transform 0.12s ease-out;
  touch-action: none;
  cursor: grab;
}

.fullscreen-stage img.is-dragging {
  cursor: grabbing;
}

.fullscreen-caption {
  color: white;
  font-weight: 600;
  text-align: center;
}

.fullscreen-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.fullscreen-toolbar {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 10px;
}

.fullscreen-tool {
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.glass {
  background: var(--glass);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.site-footer {
  background:
    linear-gradient(180deg, rgba(10, 8, 7, 0.82), rgba(5, 4, 4, 0.96));
  border-top: 1px solid rgba(240, 194, 75, 0.12);
  margin-top: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.3fr) repeat(3, minmax(180px, 1fr));
  gap: 28px;
  padding: 44px 0;
}

.footer-brand,
.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--accent-2);
}

.footer-brand h3,
.footer-column h4 {
  font-family: "Playfair Display", serif;
}

.footer-brand p,
.footer-column p,
.footer-column a {
  color: var(--muted);
}

.footer-column a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-column a:hover {
  color: var(--ink);
  transform: translateX(2px);
}

.footer-highlight {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1a120e !important;
  font-weight: 800;
  box-shadow: 0 16px 32px rgba(217, 106, 29, 0.24);
}

.about-section {
  padding: 10px 0 90px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 24px;
}

.about-card {
  padding: 28px;
  border-radius: 24px;
  display: grid;
  gap: 14px;
}

.about-card h2,
.about-card h3 {
  font-family: "Playfair Display", serif;
}

.about-card p {
  color: var(--muted);
}

.about-card-primary {
  grid-column: span 2;
  background:
    radial-gradient(circle at top right, rgba(240, 194, 75, 0.1), transparent 26%),
    linear-gradient(135deg, rgba(246, 237, 228, 0.08), rgba(217, 106, 29, 0.08));
}

.about-logo-card {
  grid-column: span 2;
  place-items: center;
  min-height: 260px;
}

.about-brand-logo {
  width: min(320px, 70vw);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  padding: 18px;
  background: rgba(246, 237, 228, 0.06);
  border: 1px solid rgba(240, 194, 75, 0.16);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.about-links {
  display: grid;
  gap: 10px;
}

.about-links a {
  color: var(--ink);
}

body.home-luxe {
  background:
    radial-gradient(circle at top right, rgba(240, 194, 75, 0.14), transparent 18%),
    radial-gradient(circle at 18% 24%, rgba(217, 106, 29, 0.16), transparent 20%),
    linear-gradient(135deg, #15110f 0%, #1b1411 46%, #241915 100%);
  color: #f6ede4;
}

.home-luxe .orb-1 {
  background: rgba(240, 194, 75, 0.34);
}

.home-luxe .orb-2 {
  background: rgba(217, 106, 29, 0.28);
}

.home-luxe .orb-3 {
  background: rgba(184, 132, 71, 0.18);
}

.home-luxe .site-header {
  background: rgba(19, 15, 13, 0.72);
  border-bottom: 1px solid rgba(240, 194, 75, 0.1);
}

.home-luxe .logo {
  color: #f6ede4;
}

.home-luxe .logo-mark {
  background: linear-gradient(135deg, #d96a1d, #f0c24b);
  color: #1a120e;
}

.home-luxe .nav {
  color: #d9c4b5;
}

.home-luxe .nav a::after {
  background: #f0c24b;
}

.home-luxe .cart-button {
  background: rgba(246, 237, 228, 0.08);
  color: #f6ede4;
  box-shadow: none;
  border: 1px solid rgba(240, 194, 75, 0.12);
}

.home-luxe .cart-count {
  background: linear-gradient(135deg, #d96a1d, #f0c24b);
  color: #1a120e;
}

.home-luxe .hero {
  padding: 110px 0 76px;
}

.home-luxe .hero-grid {
  gap: 54px;
}

.home-luxe .eyebrow {
  color: #f0c24b;
}

.home-luxe .hero-content h1 {
  max-width: 9ch;
  font-size: clamp(3.2rem, 4vw + 1rem, 5.6rem);
  letter-spacing: -0.04em;
}

.home-luxe .lead {
  max-width: 52ch;
  color: #d7c4b7;
  font-size: 1.02rem;
  line-height: 1.9;
}

.home-luxe .btn.primary {
  background: linear-gradient(135deg, #d96a1d, #f0c24b);
  color: #1a120e;
  box-shadow: 0 16px 32px rgba(217, 106, 29, 0.28);
}

.home-luxe .btn.ghost {
  background: rgba(246, 237, 228, 0.06);
  color: #f6ede4;
  border: 1px solid rgba(240, 194, 75, 0.16);
}

.home-luxe .hero-stats div {
  padding: 16px 18px;
  min-width: 130px;
  border-radius: 18px;
  background: rgba(246, 237, 228, 0.05);
  border: 1px solid rgba(240, 194, 75, 0.08);
}

.home-luxe .hero-stats strong {
  font-size: 1.3rem;
}

.home-luxe .hero-stats span {
  color: #c8b8ab;
}

.home-luxe .hero-visual {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(246, 237, 228, 0.06), rgba(246, 237, 228, 0.02));
  border: 1px solid rgba(240, 194, 75, 0.12);
  border-radius: 28px;
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.28);
}

.home-luxe .hero-visual img {
  min-height: 620px;
  border-radius: 20px;
}

.home-luxe .hero-badge {
  background: rgba(246, 237, 228, 0.92);
  color: #1a120e;
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.16);
}

.home-luxe .section-head h2,
.home-luxe .section-head p {
  color: #f6ede4;
}

.home-luxe .section-head p {
  color: #cdb8a8;
}

.home-luxe .product-card {
  background: linear-gradient(180deg, rgba(246, 237, 228, 0.06), rgba(246, 237, 228, 0.03));
  border: 1px solid rgba(240, 194, 75, 0.12);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}

.home-luxe .product-card:hover {
  box-shadow: 0 30px 68px rgba(0, 0, 0, 0.24);
}

.home-luxe .product-card h3,
.home-luxe .price {
  color: #f6ede4;
}

.home-luxe .tag {
  background: rgba(240, 194, 75, 0.12);
  color: #f0c24b;
}

.home-luxe .card-meta {
  color: #cdb8a8;
}

.home-luxe .product-card .btn.ghost {
  justify-content: center;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 720px) {
  .nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .container {
    width: min(100%, calc(100vw - 28px));
  }

  .header-inner {
    padding: 14px 0;
    gap: 14px;
  }

  .logo {
    gap: 10px;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 18px;
  }

  .cart-button {
    margin-left: auto;
  }

  .hero {
    padding: 72px 0 42px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-content h1 {
    font-size: clamp(2.3rem, 8vw, 3.4rem);
    max-width: none;
  }

  .lead {
    font-size: 0.96rem;
    line-height: 1.75;
  }

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

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .hero-visual {
    padding: 16px;
  }

  .hero-visual img {
    min-height: 360px;
  }

  .hero-badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 10px 14px;
  }

  .page-hero {
    padding: 56px 0 18px;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .section-head h2 {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  .catalog {
    padding: 36px 0 56px;
  }

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

  .product-card {
    grid-template-rows: 220px auto auto 1fr auto;
    min-height: 456px;
  }

  .product-card > img {
    height: 220px;
  }

  .footer-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-card-primary {
    grid-column: auto;
  }

  .footer-grid {
    gap: 20px;
    padding: 32px 0;
  }

  .hero-stats {
    flex-direction: column;
    gap: 14px;
  }

  .tryon-shell {
    padding: 18px;
  }

  .upload-box {
    min-height: 148px;
    padding: 22px 18px;
    border-radius: 20px;
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .upload-area small {
    font-size: 0.9rem;
  }

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

  .product {
    padding: 56px 0 72px;
  }

  .product-layout {
    gap: 22px;
  }

  .thumbs {
    flex-wrap: wrap;
  }

  .thumbs img {
    width: 64px;
    height: 64px;
  }

  .product-actions .btn,
  .tryon-entry .btn,
  .modal-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

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

  .tryon-card {
    padding: 18px;
    gap: 14px;
  }

  .tryon-card-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .tryon-card-actions {
    justify-content: flex-start;
    width: 100%;
  }

  .zoom-btn {
    min-height: 42px;
    padding: 10px 14px;
    font-size: 13px;
  }

  .tryon-card img,
  .tryon-card.result .result-box {
    height: 280px;
  }

  .modal-actions {
    position: sticky;
    bottom: 12px;
    z-index: 5;
    padding: 14px;
    border-radius: 18px;
    background: rgba(20, 15, 13, 0.92);
    border: 1px solid rgba(240, 194, 75, 0.12);
    backdrop-filter: blur(14px);
  }

  .status {
    width: 100%;
  }

  .fullscreen-viewer {
    padding: 16px;
  }

  .concept-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .concept-copy p {
    max-width: none;
  }

  .concept-frame img {
    min-height: 240px;
  }

  .fullscreen-toolbar {
    left: 16px;
    top: 16px;
    gap: 8px;
  }

  .fullscreen-close {
    top: 16px;
    right: 16px;
  }
}


