/* ============================================
   KARADJO — Atelier Noir v1
   Palette : #0A0A09 | #ECE6DA | #C2A36B | #F1ECE1
   ============================================ */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #0A0A09;
  color: #ECE6DA;
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .01em;
  overflow-x: hidden;
}

::selection { background: #C2A36B; color: #0A0A09; }
img { display: block; max-width: 100%; }
a { color: inherit; }
input::placeholder { color: rgba(236,230,218,.35); }

/* --- TYPOGRAPHY --- */
.font-jost   { font-family: 'Jost', sans-serif; }
.font-mono   { font-family: 'JetBrains Mono', monospace; }
.font-manrope{ font-family: 'Manrope', sans-serif; }

/* --- NAV --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px clamp(24px, 5vw, 72px);
  background: rgba(10,10,9,.74);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(194,163,107,.18);
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(236,230,218,.72);
}

.nav-links a {
  text-decoration: none;
  color: inherit;
  transition: color .2s;
}
.nav-links a:hover { color: #C2A36B; }

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}

.nav-logo-text {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 20px;
  letter-spacing: .46em;
  color: #ECE6DA;
  padding-left: .46em;
}

.nav-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-end;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.lang-switcher {
  display: flex;
  gap: 8px;
  align-items: center;
}

.lang-btn {
  cursor: pointer;
  opacity: .4;
  transition: opacity .2s;
  border: none;
  background: none;
  color: #ECE6DA;
  font: inherit;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 0;
}
.lang-btn.active { opacity: 1; }
.lang-sep { opacity: .3; }

/* --- HERO --- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: calc(100vh - 76px);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 96px);
  position: relative;
  background-color: #0C0B09;
  background-image: repeating-linear-gradient(135deg, rgba(236,230,218,.035) 0 1px, transparent 1px 20px);
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #C2A36B;
  margin-bottom: 34px;
}

.hero-kicker-line {
  width: 34px;
  height: 1px;
  background: #C2A36B;
  flex-shrink: 0;
}

.hero-title {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: clamp(2.6rem, 5.6vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -.01em;
  margin: 0;
  color: #F1ECE1;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: #C2A36B;
}

.hero-sub {
  max-width: 450px;
  margin: 32px 0 0;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.8;
  color: rgba(236,230,218,.64);
}

.hero-ctas {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 42px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border: 1px solid #C2A36B;
  color: #F1ECE1;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: background .25s, color .25s;
}
.btn-primary:hover { background: #C2A36B; color: #0A0A09; }

.btn-ghost {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(236,230,218,.6);
  text-decoration: none;
  border-bottom: 1px solid rgba(194,163,107,.4);
  padding-bottom: 4px;
  transition: color .2s, border-color .2s;
}
.btn-ghost:hover { color: #C2A36B; border-color: #C2A36B; }

.hero-image {
  position: relative;
  overflow: hidden;
  background: #0A0A09;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,9,.5), transparent 22%);
}

.hero-caption {
  position: absolute;
  bottom: 26px;
  right: 26px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(236,230,218,.6);
}

/* --- COLLECTIONS SPLIT --- */
.section-border { border-top: 1px solid rgba(194,163,107,.16); }
.section-border-light { border-top: 1px solid rgba(236,230,218,.1); }

.collections-split {
  padding: clamp(70px, 11vh, 150px) clamp(24px, 6vw, 72px);
}

.section-header-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(44px, 6vh, 76px);
}

.label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: #C2A36B;
  margin-bottom: 22px;
}

.h2 {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  margin: 0;
  line-height: 1.06;
  letter-spacing: -.01em;
}

.collections-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.4vw, 32px);
}

.collection-tile {
  position: relative;
  display: block;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid rgba(194,163,107,.22);
  text-decoration: none;
}

.collection-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.collection-tile:hover img { transform: scale(1.03); }

.tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,7,6,.12) 30%, rgba(7,7,6,.82));
}

.tile-label {
  position: absolute;
  left: clamp(24px, 3vw, 46px);
  bottom: clamp(24px, 3vw, 44px);
  color: #F1ECE1;
}

.tile-label h3 {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  margin: 0 0 10px;
  letter-spacing: .02em;
}

.tile-sublabel {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(236,230,218,.72);
  margin-bottom: 18px;
}

.tile-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  border-bottom: 1px solid #C2A36B;
  padding-bottom: 5px;
}

/* --- MANIFESTE --- */
.manifeste {
  padding: clamp(90px, 15vh, 190px) clamp(24px, 6vw, 120px);
  text-align: center;
}

.manifeste-crown {
  display: block;
  margin: 0 auto 38px;
}

.manifeste-quote {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: clamp(1.5rem, 3.4vw, 2.9rem);
  line-height: 1.5;
  margin: 0 auto;
  max-width: 920px;
  color: #EDE7DC;
  letter-spacing: -.005em;
}

.manifeste-quote span {
  color: rgba(236,230,218,.6);
}

/* --- LE BIJOU --- */
.bijou {
  background: #070706;
  padding: clamp(80px, 13vh, 180px) clamp(24px, 6vw, 120px);
}

.bijou-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 110px);
  align-items: center;
}

.bijou-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(194,163,107,.28);
}

.bijou-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bijou-img-caption {
  position: absolute;
  bottom: 18px;
  left: 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(236,230,218,.7);
}

.bijou-h2 {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  margin: 0 0 28px;
  line-height: 1.02;
  letter-spacing: -.01em;
}

.bijou-desc {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(236,230,218,.66);
  max-width: 480px;
  margin: 0 0 36px;
}

.triptyque {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(194,163,107,.25);
}

.triptyque-item {
  flex: 1;
  padding: 22px 0;
}
.triptyque-item:not(:last-child) {
  border-right: 1px solid rgba(194,163,107,.2);
}
.triptyque-item:not(:first-child) {
  padding-left: 24px;
}

.triptyque-value {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  letter-spacing: .04em;
  color: #ECE6DA;
}

.triptyque-value.gold { color: #C2A36B; }

.triptyque-key {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(236,230,218,.45);
  margin-top: 6px;
}

/* --- PIERRES --- */
.pierres {
  padding: clamp(90px, 14vh, 190px) clamp(24px, 6vw, 90px);
}

.pierres-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(60px, 9vh, 110px);
}

.pierres-h2 {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: clamp(2.3rem, 4.8vw, 4.4rem);
  margin: 0 0 26px;
  line-height: 1.04;
  letter-spacing: -.01em;
}

.pierres-sub {
  font-size: 15.5px;
  line-height: 1.85;
  color: rgba(236,230,218,.62);
  margin: 0;
}

.pierres-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.4vw, 40px);
  max-width: 1240px;
  margin: 0 auto;
}

.pierre-card {
  text-align: center;
}

.hexagon-wrap {
  position: relative;
  width: 100%;
  max-width: 150px;
  margin: 0 auto;
  aspect-ratio: 1;
  clip-path: polygon(50% 0%, 93.3% 25%, 93.3% 75%, 50% 100%, 6.7% 75%, 6.7% 25%);
  background: #C2A36B;
}

.hexagon-inner {
  position: absolute;
  inset: 5px;
  clip-path: polygon(50% 0%, 93.3% 25%, 93.3% 75%, 50% 100%, 6.7% 75%, 6.7% 25%);
}

.pierre-name {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 19px;
  margin: 24px 0 8px;
  letter-spacing: .03em;
}

.pierre-energy {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #C2A36B;
  margin-bottom: 12px;
}

.pierre-desc {
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(236,230,218,.5);
  margin: 0 0 10px;
}

.pierre-piece {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(236,230,218,.35);
}

.pierres-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  max-width: 1240px;
  margin: clamp(56px, 8vh, 90px) auto 0;
}

.photo-border {
  border: 1px solid rgba(194,163,107,.2);
  overflow: hidden;
}

/* --- DÉTAIL SIGNATURE --- */
.signature {
  background: #070706;
  padding: clamp(90px, 14vh, 190px) clamp(24px, 6vw, 120px);
}

.signature-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(56px, 8vh, 100px);
}

.signature-h2 {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  margin: 0 0 24px;
  line-height: 1.05;
  letter-spacing: -.01em;
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 46px);
}

.sig-item-img {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(194,163,107,.2);
}

.sig-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sig-item h3 {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 20px;
  margin: 24px 0 10px;
  letter-spacing: .03em;
}

.sig-item p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(236,230,218,.55);
  margin: 0;
}

/* --- PURE LINEN --- */
.linen {
  padding: clamp(70px, 11vh, 150px) clamp(24px, 6vw, 120px);
}

.linen-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.linen-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid rgba(194,163,107,.2);
}
.linen-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.linen-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #C2A36B;
  margin-bottom: 24px;
}

.linen-h2 {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: clamp(2.3rem, 4.6vw, 4rem);
  margin: 0 0 26px;
  line-height: 1.05;
  letter-spacing: -.01em;
}

.linen-desc {
  font-size: 15.5px;
  line-height: 1.85;
  color: rgba(236,230,218,.64);
  max-width: 460px;
  margin: 0 0 30px;
}

.linen-specs {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(236,230,218,.55);
}

/* --- COLLECTION --- */
.collection {
  padding: clamp(60px, 9vh, 120px) clamp(24px, 6vw, 120px) clamp(80px, 12vh, 150px);
}

.collection-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: clamp(48px, 7vh, 90px);
}

.collection-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #C2A36B;
  margin-bottom: 22px;
}

.collection-h2 {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  margin: 0;
  line-height: 1;
  letter-spacing: -.01em;
}

.collection-desc {
  max-width: 340px;
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(236,230,218,.55);
}

.collection-masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(20px, 3vw, 48px);
}

/* ————— Pierres seules (vente à l'unité, pages Homme / Femme) ————— */
.pierres-shop .stones-shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 44px);
  margin-top: clamp(32px, 5vw, 64px);
}
.stones-shop-grid .stone-shop-visual {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #070706;
  border: 1px solid rgba(194,163,107,.18);
}
.stones-shop-grid .stone-shop-swatch { width: 52%; height: 52%; border-radius: 50%; }
.stones-shop-grid .product-meta h3 { font-size: 1rem; }
.stones-shop-grid .product-sub { font-size: 11px; }
.stones-shop-grid .product-price { font-size: 13px; }

.product-card { cursor: pointer; }

.product-card .img-wrap {
  overflow: hidden;
  border: 1px solid rgba(236,230,218,.1);
}

.product-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.product-card:hover .img-wrap img { transform: scale(1.03); }

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 22px;
  gap: 20px;
}

.product-meta h3 {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 24px;
  margin: 0 0 8px;
  letter-spacing: .02em;
}

.product-sub {
  font-size: 12.5px;
  color: rgba(236,230,218,.5);
  letter-spacing: .04em;
}

.product-price {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 17px;
  white-space: nowrap;
}

/* --- ATELIER --- */
.atelier {
  background: #070706;
  padding: clamp(80px, 12vh, 170px) clamp(24px, 6vw, 120px);
}

.atelier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.atelier-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #C2A36B;
  margin-bottom: 26px;
}

.atelier-h2 {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  margin: 0 0 26px;
  line-height: 1.08;
  letter-spacing: -.01em;
}

.atelier-desc {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(236,230,218,.62);
  margin: 0 0 32px;
  max-width: 440px;
}

.atelier-values {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(236,230,218,.55);
}

.atelier-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.atelier-photos .photo-item {
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 1px solid rgba(236,230,218,.1);
}

.atelier-photos .photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- VALEURS --- */
.valeurs {
  padding: clamp(50px, 8vh, 90px) clamp(24px, 6vw, 120px);
}

.valeurs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 4vw, 64px);
}

.valeur-item {
  border-top: 1px solid #C2A36B;
  padding-top: 22px;
}

.valeur-title {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #ECE6DA;
  margin-bottom: 12px;
}

.valeur-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(236,230,218,.55);
  margin: 0;
}

/* --- FOOTER --- */
.footer {
  padding: clamp(70px, 10vh, 120px) clamp(24px, 6vw, 72px) 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: clamp(60px, 9vh, 100px);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 22px;
}

.footer-tagline {
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(236,230,218,.55);
  max-width: 300px;
  margin: 0 0 22px;
}

.newsletter {
  display: flex;
  border-bottom: 1px solid rgba(194,163,107,.4);
  max-width: 320px;
}

.newsletter input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #ECE6DA;
  font: inherit;
  font-size: 13px;
  padding: 10px 0;
}

.newsletter button {
  background: none;
  border: none;
  color: #C2A36B;
  font: inherit;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0 0 0 16px;
  transition: opacity .2s;
}
.newsletter button:hover { opacity: .7; }

.footer-col-title {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(236,230,218,.4);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 13.5px;
  color: rgba(236,230,218,.62);
}

.footer-links a {
  text-decoration: none;
  color: inherit;
  transition: color .2s;
}
.footer-links a:hover { color: #C2A36B; }

.footer-wordmark {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: clamp(3rem, 15vw, 12rem);
  line-height: .9;
  letter-spacing: .05em;
  text-align: center;
  border-top: 1px solid rgba(236,230,218,.08);
  padding-top: clamp(30px, 5vh, 60px);
  background: linear-gradient(180deg, rgba(194,163,107,.4), rgba(194,163,107,.08));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(236,230,218,.38);
  margin-top: 30px;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image { min-height: 55vw; }
  .bijou-grid { grid-template-columns: 1fr; }
  .linen-grid { grid-template-columns: 1fr; }
  .atelier-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .valeurs-grid { grid-template-columns: 1fr 1fr; }
  .pierres-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { grid-template-columns: auto 1fr; }
  .nav-links { display: none; }
  .nav-logo { grid-column: 1; }
  .nav-actions { grid-column: 2; }
  .collections-grid { grid-template-columns: 1fr; }
  .signature-grid { grid-template-columns: 1fr; }
  .pierres-grid { grid-template-columns: repeat(2, 1fr); }
  .pierres-photos { grid-template-columns: 1fr; }
  .collection-masonry { grid-template-columns: repeat(6, 1fr); }
  .pierres-shop .stones-shop-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .valeurs-grid { grid-template-columns: 1fr; }
}

/* ============================================
   KARADJO — GATE PAGE (index.html)
   ============================================ */

.gate-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #0A0A09;
}

.gate-overlay {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(194,163,107,.06), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(194,163,107,.04), transparent 45%);
  pointer-events: none;
  z-index: 0;
}

.gate-header {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px clamp(24px, 5vw, 72px);
}

.gate-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.gate-logo span {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: .5em;
  color: #ECE6DA;
  padding-left: .5em;
}

.gate-tagline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(236,230,218,.5);
}

.gate-main {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(40px, 8vh, 100px) clamp(24px, 5vw, 72px);
  text-align: center;
}

.gate-intro {
  max-width: 760px;
  margin-bottom: clamp(40px, 7vh, 80px);
}

.gate-title {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -.01em;
  margin: 0 0 26px;
  color: #F1ECE1;
}

.gate-title em {
  font-style: italic;
  font-weight: 300;
  color: #C2A36B;
}

.gate-sub {
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.8;
  color: rgba(236,230,218,.58);
  margin: 0 auto;
  max-width: 560px;
}

.gate-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3vw, 40px);
  width: 100%;
  max-width: 1100px;
}

.gate-choice {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 1px solid rgba(194,163,107,.22);
  text-decoration: none;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.gate-choice-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .9s ease;
}

.gate-choice:hover .gate-choice-bg { transform: scale(1.05); }

.gate-choice-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,7,6,.1) 20%, rgba(7,7,6,.88));
  transition: background .4s ease;
}

.gate-choice:hover .gate-choice-overlay {
  background: linear-gradient(180deg, rgba(7,7,6,.2) 20%, rgba(7,7,6,.92));
}

.gate-choice-content {
  position: relative;
  z-index: 2;
  padding: clamp(28px, 4vw, 52px);
  text-align: left;
  color: #F1ECE1;
}

.gate-choice-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #C2A36B;
  margin-bottom: 14px;
}

.gate-choice-title {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin: 0 0 10px;
  letter-spacing: .02em;
}

.gate-choice-material {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(236,230,218,.72);
  margin-bottom: 28px;
}

.gate-choice-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  border-bottom: 1px solid #C2A36B;
  padding-bottom: 5px;
  color: #F1ECE1;
}

.gate-lang {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: clamp(40px, 6vh, 70px);
}

.gate-footer {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 24px clamp(24px, 5vw, 72px);
  border-top: 1px solid rgba(194,163,107,.12);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(236,230,218,.4);
  flex-wrap: wrap;
}

.gate-footer a {
  color: rgba(236,230,218,.55);
  text-decoration: none;
  transition: color .2s;
}
.gate-footer a:hover { color: #C2A36B; }

/* ============================================
   KARADJO — UNIVERSE PAGES (homme.html / femme.html)
   ============================================ */

.universe-page .nav-universe {
  grid-template-columns: 1fr auto 1fr;
}

.nav-back {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(236,230,218,.6);
  text-decoration: none;
  transition: color .2s;
}
.nav-back:hover { color: #C2A36B; }

.nav-cart {
  color: rgba(236,230,218,.72);
  text-decoration: none;
  transition: color .2s;
}
.nav-cart:hover { color: #C2A36B; }

.universe-hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: calc(100vh - 76px);
}

.universe-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 96px);
  position: relative;
  background-color: #0C0B09;
  background-image: repeating-linear-gradient(135deg, rgba(236,230,218,.035) 0 1px, transparent 1px 20px);
}

.universe-hero-title {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: clamp(2.6rem, 5.6vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -.01em;
  margin: 0;
  color: #F1ECE1;
}

.universe-hero-title em {
  font-style: italic;
  font-weight: 300;
  color: #C2A36B;
}

.universe-hero-sub {
  max-width: 450px;
  margin: 32px 0 0;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.8;
  color: rgba(236,230,218,.64);
}

.universe-hero-content .btn-primary { margin-top: 42px; }

.universe-hero-image {
  position: relative;
  overflow: hidden;
  background: #0A0A09;
}

.universe-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Universe accents */
.universe-women .universe-hero-content {
  background-color: #0B0A09;
  background-image: repeating-linear-gradient(135deg, rgba(236,230,218,.03) 0 1px, transparent 1px 24px);
}

.universe-women .bijou { background: #080706; }
.universe-women .atelier { background: #080706; }

/* ============================================
   PRODUCT MODAL
   ============================================ */

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.product-modal.active {
  opacity: 1;
  visibility: visible;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7,7,6,.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.product-modal-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  max-height: 90vh;
  overflow-y: auto;
  background: #0A0A09;
  border: 1px solid rgba(194,163,107,.25);
  padding: clamp(28px, 4vw, 48px);
}

.product-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  color: rgba(236,230,218,.6);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  transition: color .2s;
}
.product-modal-close:hover { color: #C2A36B; }

.product-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
}

.product-modal-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid rgba(236,230,218,.1);
  cursor: zoom-in;
  touch-action: pan-y; /* hors zoom : le doigt fait défiler la page normalement */
}

.product-modal-image.zoomed {
  cursor: zoom-out;
  touch-action: none;  /* en zoom : le doigt pilote le détail */
}

.product-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .18s ease-out; /* l'origine suit le curseur instantanément, seul le scale est lissé */
  will-change: transform;
}

/* Galerie du modal : bande de miniatures sous le visuel (photos par coloris) */
.product-modal-media {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-modal-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.modal-thumb {
  width: 56px;
  height: 70px;
  padding: 0;
  background: none;
  border: 1px solid rgba(236,230,218,.18);
  cursor: pointer;
  opacity: .75;
}

.modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-thumb:hover {
  border-color: rgba(194,163,107,.6);
  opacity: 1;
}

.modal-thumb.selected {
  border-color: #C2A36B;
  opacity: 1;
}

.product-modal-info {
  padding-top: 10px;
}

.product-modal-category {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #C2A36B;
  margin-bottom: 16px;
}

.product-modal-title {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin: 0 0 12px;
  color: #F1ECE1;
}

.product-modal-price {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1.4rem;
  color: #ECE6DA;
  margin-bottom: 24px;
}

.product-modal-desc {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(236,230,218,.6);
  margin: 0 0 28px;
}

.product-modal-stones {
  margin-bottom: 28px;
}

.stones-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(236,230,218,.55);
  margin-bottom: 14px;
}

.stones-hint {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 12px;
}

.stones-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.stone-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(236,230,218,.15);
  background: rgba(7,7,6,.5);
  cursor: pointer;
  transition: border-color .2s, background .2s;
  color: #ECE6DA;
  font-size: 13px;
}

.stone-option:hover { border-color: rgba(194,163,107,.5); }

.stone-option.is-disabled {
  opacity: .32;
  text-decoration: line-through;
  cursor: not-allowed;
}
.stone-option.is-disabled:hover { border-color: rgba(236,230,218,.15); }
.stone-option.selected {
  border-color: #C2A36B;
  background: rgba(194,163,107,.1);
}

.stone-option .stone-swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(236,230,218,.2);
}

.modal-qty-stepper {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(236,230,218,.15);
  background: rgba(7,7,6,.5);
}
.modal-qty-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #C2A36B;
  font-size: 17px;
  line-height: 1;
  padding: 4px 8px;
  transition: color .2s;
}
.modal-qty-btn:hover { color: #F1ECE1; }
.modal-qty-value { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: #ECE6DA; min-width: 18px; text-align: center; }

.product-modal-add {
  width: 100%;
  justify-content: center;
  margin-bottom: 28px;
  background: transparent;
  color: #F1ECE1;
  border: 1px solid #C2A36B;
}
.product-modal-add:hover {
  background: #C2A36B;
  color: #0A0A09;
}

.product-modal-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(236,230,218,.1);
}

.product-modal-details div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-modal-details span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(236,230,218,.45);
}

.product-modal-details strong {
  font-weight: 400;
  font-size: 14px;
  color: #ECE6DA;
}

/* ============================================
   RESPONSIVE — NEW COMPONENTS
   ============================================ */

@media (max-width: 1024px) {
  .universe-hero { grid-template-columns: 1fr; }
  .universe-hero-image { min-height: 55vw; }
  .product-modal-grid { grid-template-columns: 1fr; }
  .product-modal-image { aspect-ratio: 16/10; }
  .modal-thumb { width: 44px; height: 56px; }
}

@media (max-width: 768px) {
  .gate-choices { grid-template-columns: 1fr; }
  .gate-choice { aspect-ratio: 4/5; }
  .gate-header { flex-direction: column; gap: 12px; }
  .gate-footer { flex-direction: column; text-align: center; gap: 8px; }

  .universe-page .nav-universe { grid-template-columns: 1fr 1fr; }
  .universe-page .nav-logo { display: none; }
  .nav-back { grid-column: 1; }
  .nav-actions { grid-column: 2; }

  .product-modal-content { padding: 24px; }
  .product-modal-details { grid-template-columns: 1fr; }
}

/* --- MAISON KARADJO — WHO WE ARE --- */
.maison {
  background: #0A0A09;
  padding: clamp(80px, 12vh, 160px) clamp(24px, 6vw, 120px);
}

.maison-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.maison-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #C2A36B;
  margin-bottom: 26px;
}

.maison-h2 {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  margin: 0 0 26px;
  line-height: 1.08;
  letter-spacing: -.01em;
  color: #F1ECE1;
}

.maison-h2 em {
  font-style: italic;
  font-weight: 300;
  color: #C2A36B;
}

.maison-lead {
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.85;
  color: rgba(236,230,218,.72);
  margin: 0 0 32px;
  max-width: 520px;
}

.maison-body {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(236,230,218,.55);
  margin: 0 0 38px;
  max-width: 480px;
}

.maison-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 40px;
}

.maison-value {
  border-left: 1px solid rgba(194,163,107,.35);
  padding-left: 18px;
}

.maison-value-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #ECE6DA;
  margin-bottom: 8px;
}

.maison-value-desc {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(236,230,218,.5);
  margin: 0;
}

.maison-visual {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid rgba(236,230,218,.1);
}

.maison-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.maison-visual-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(0deg, rgba(7,7,6,.92), transparent);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(236,230,218,.7);
}

/* Gate page compact version */
.gate-maison {
  padding: clamp(60px, 10vh, 120px) clamp(24px, 6vw, 120px);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.gate-maison-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #C2A36B;
  margin-bottom: 24px;
}

.gate-maison-h2 {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  margin: 0 0 24px;
  line-height: 1.08;
  color: #F1ECE1;
}

.gate-maison-h2 em {
  font-style: italic;
  font-weight: 300;
  color: #C2A36B;
}

.gate-maison-body {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.85;
  color: rgba(236,230,218,.62);
  margin: 0 auto 40px;
  max-width: 680px;
}

.gate-maison-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.gate-maison-value {
  border-top: 1px solid rgba(194,163,107,.35);
  padding-top: 18px;
}

.gate-maison-value-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #ECE6DA;
  margin-bottom: 10px;
}

.gate-maison-value-desc {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(236,230,218,.5);
  margin: 0;
}

@media (max-width: 1024px) {
  .maison-grid { grid-template-columns: 1fr; }
  .maison-visual { aspect-ratio: 16/10; }
}

@media (max-width: 768px) {
  .maison-values { grid-template-columns: 1fr; }
  .gate-maison-values { grid-template-columns: 1fr; }
}

/* ============================================
   KARADJO — CART DRAWER
   ============================================ */

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.cart-drawer.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7,7,6,.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.cart-drawer-content {
  position: relative;
  width: 100%;
  max-width: 460px;
  height: 100%;
  background: #0A0A09;
  border-left: 1px solid rgba(194,163,107,.25);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s ease;
}

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

.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px clamp(24px, 5vw, 36px);
  border-bottom: 1px solid rgba(236,230,218,.1);
}

.cart-drawer-title {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1.5rem;
  letter-spacing: .02em;
  color: #F1ECE1;
  margin: 0;
}

.cart-drawer-close {
  background: none;
  border: none;
  color: rgba(236,230,218,.6);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: color .2s;
}
.cart-drawer-close:hover { color: #C2A36B; }

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px clamp(24px, 5vw, 36px);
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: rgba(236,230,218,.5);
}

.cart-empty p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 28px;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(236,230,218,.08);
}

.cart-item-img {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(236,230,218,.1);
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cart-item-name {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1.15rem;
  color: #F1ECE1;
  margin: 0;
}

.cart-item-stone {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #C2A36B;
}

.cart-item-variant {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(236,230,218,.62);
}

.cart-item-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(236,230,218,.2);
  background: none;
  color: #ECE6DA;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, color .2s;
}
.cart-qty-btn:hover { border-color: #C2A36B; color: #C2A36B; }

.cart-qty-value {
  font-size: 14px;
  min-width: 20px;
  text-align: center;
}

.cart-item-price {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  color: #ECE6DA;
}

.cart-item-remove {
  background: none;
  border: none;
  color: rgba(236,230,218,.4);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  align-self: flex-start;
  transition: color .2s;
}
.cart-item-remove:hover { color: #C2A36B; }

.cart-drawer-footer {
  padding: 24px clamp(24px, 5vw, 36px);
  border-top: 1px solid rgba(236,230,218,.1);
  background: #070706;
}

.cart-drawer-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-family: 'Jost', sans-serif;
  font-size: 1.25rem;
  color: #F1ECE1;
}

.cart-drawer-total strong {
  font-weight: 300;
  color: #C2A36B;
}

.cart-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  border: 1px solid #C2A36B;
  background: #C2A36B;
  color: #0A0A09;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: background .25s, color .25s;
  cursor: pointer;
}
.cart-btn-primary:hover { background: transparent; color: #F1ECE1; }

.cart-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid rgba(236,230,218,.2);
  color: rgba(236,230,218,.7);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: border-color .2s, color .2s;
  cursor: pointer;
  background: none;
}
.cart-btn-ghost:hover { border-color: #C2A36B; color: #C2A36B; }

.nav-cart {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

@media (max-width: 520px) {
  .cart-drawer-content { max-width: 100%; }
  .cart-item { grid-template-columns: 64px 1fr; gap: 12px; }
}

/* ============================================
   KARADJO — CART PAGE
   ============================================ */

.cart-page {
  padding: clamp(60px, 10vh, 120px) clamp(24px, 6vw, 120px);
}

.cart-page-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vh, 80px);
}

.cart-page-title {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #F1ECE1;
  margin: 0;
}

.cart-page-grid {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: clamp(40px, 5vw, 80px);
  max-width: 1200px;
  margin: 0 auto;
}

.cart-page-items {
  display: flex;
  flex-direction: column;
}

.cart-page-item {
  display: grid;
  grid-template-columns: 100px 1fr auto auto auto;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(236,230,218,.1);
}

.cart-page-img {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(236,230,218,.1);
}

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

.cart-page-details h3 {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1.25rem;
  color: #F1ECE1;
  margin: 0 0 8px;
}

.cart-page-stone {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #C2A36B;
  margin: 0 0 14px;
}

.cart-page-qty {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-page-qty button {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(236,230,218,.2);
  background: none;
  color: #ECE6DA;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, color .2s;
}
.cart-page-qty button:hover { border-color: #C2A36B; color: #C2A36B; }

.cart-page-price,
.cart-page-line {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  color: #ECE6DA;
}

.cart-page-remove {
  background: none;
  border: none;
  color: rgba(236,230,218,.4);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s;
}
.cart-page-remove:hover { color: #C2A36B; }

.cart-page-summary {
  border: 1px solid rgba(194,163,107,.2);
  padding: 32px;
  background: #070706;
  align-self: flex-start;
}

.cart-page-summary h3 {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1.3rem;
  color: #F1ECE1;
  margin: 0 0 24px;
}

.cart-page-line-total {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(236,230,218,.1);
  font-size: 14px;
  color: rgba(236,230,218,.7);
}

.cart-page-line-total.total {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  color: #F1ECE1;
  border-bottom: none;
  padding-top: 20px;
}

.cart-page-line-total.total strong {
  color: #C2A36B;
  font-weight: 300;
}

/* ————— Code promo (cart.html + checkout.html) ————— */
.cart-page-promo { padding: 16px 0; border-bottom: 1px solid rgba(236,230,218,.1); }
.cart-promo-row { display: flex; gap: 10px; }
.cart-promo-input {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(194,163,107,.3);
  color: #ECE6DA;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 12px 14px;
  outline: none;
  transition: border-color .2s;
}
.cart-promo-input:focus { border-color: #C2A36B; }
.cart-promo-input::placeholder { color: rgba(236,230,218,.35); }
.cart-promo-btn {
  background: transparent;
  border: 1px solid #C2A36B;
  color: #C2A36B;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 12px 18px;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.cart-promo-btn:hover:not(:disabled) { background: #C2A36B; color: #0A0A09; }
.cart-promo-btn:disabled { opacity: .45; cursor: wait; }
.cart-promo-msg { margin: 10px 0 0; font-size: 12.5px; line-height: 1.5; }
.cart-promo-msg.ok { color: #9DBE9D; }
.cart-promo-msg.error { color: #C08777; }
.cart-promo-line span { display: inline-flex; align-items: center; gap: 8px; }
.cart-promo-line strong { color: #9DBE9D; font-weight: 400; }
.cart-promo-code { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; letter-spacing: .12em; color: #C2A36B; }
.cart-promo-remove {
  background: none; border: none; cursor: pointer;
  color: rgba(236,230,218,.5); font-size: 15px; line-height: 1;
  padding: 0 4px; transition: color .2s;
}
.cart-promo-remove:hover { color: #ECE6DA; }
.checkout-promo-line { font-size: 14px; color: rgba(236,230,218,.7); border-bottom: 1px solid rgba(236,230,218,.1); padding: 14px 0; }

.cart-page-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.cart-page-empty {
  text-align: center;
  padding: 80px 20px;
  color: rgba(236,230,218,.5);
}

.cart-page-empty p {
  font-size: 16px;
  margin: 0 0 28px;
}

@media (max-width: 768px) {
  .cart-page-grid { grid-template-columns: 1fr; }
  .cart-page-item { grid-template-columns: 80px 1fr; gap: 16px; }
  .cart-page-price, .cart-page-line { justify-self: end; }
}
