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

:root {
  --bg-deep: #05070c;
  --text: #f7f1e7;
  --muted: rgba(247, 241, 231, 0.78);
  --muted-soft: rgba(247, 241, 231, 0.58);

  --gold: #d6b25c;
  --gold-light: #f3dfad;
  --gold-deep: #8c621d;
  --gold-soft: rgba(214, 178, 92, 0.82);

  --line-gold: rgba(214, 178, 92, 0.14);
  --line-soft: rgba(255, 255, 255, 0.08);

  --glass-dark: rgba(8, 9, 12, 0.42);
  --glass-dark-2: rgba(5, 6, 9, 0.28);

  --radius-xl: 40px;
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 16px;

  --shadow-soft: 0 18px 44px rgba(0, 0, 0, 0.24);
  --shadow-card: 0 24px 64px rgba(0, 0, 0, 0.42);
  --shadow-card-hover: 0 30px 78px rgba(0, 0, 0, 0.5);
  --shadow-panel: 0 28px 90px rgba(0, 0, 0, 0.42);

  --easing: cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================================================
   1. BASE
   ========================================================= */

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html {
  background: var(--bg-deep);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: transparent;
  min-height: 100vh;
  position: relative;
  isolation: isolate;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before,
body::after {
  display: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

/* =========================================================
   2. VIDEO BACKGROUND
   ========================================================= */

.video-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

#bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  filter: brightness(0.76) contrast(1.05) saturate(1.03);
}

/* =========================================================
   3. MAIN SHELL
   ========================================================= */

.site-shell {
  position: relative;
  z-index: 1;
  width: min(1500px, calc(100% - 40px));
  margin: 18px auto 40px;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: visible;
}

.site-shell::before,
.site-shell::after {
  display: none;
}

.site-shell > * {
  position: relative;
  z-index: 1;
}

/* =========================================================
   4. HERO
   ========================================================= */

.hero {
  position: relative;
 /* padding: 44px 24px 34px; */
  text-align: center;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  animation: heroFade 1s var(--easing);
}

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

.topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 16px;
  margin-bottom: 34px;
}

.topbar__left {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.topbar__right {
  display: flex;
  justify-content: flex-end;
}

.logo,
.logo2 {
  grid-column: 2;
}

.logo img {
  width: 110px;
  height: auto;
  margin: 0 auto;
  filter:
    drop-shadow(0 12px 26px rgba(0, 0, 0, 0.34))
    drop-shadow(0 0 12px rgba(214, 178, 92, 0.05));
}

.logo2 img {
  height: 360px;
  width: auto;
  margin: 0 auto;
  filter:
    drop-shadow(0 16px 28px rgba(0, 0, 0, 0.36))
    drop-shadow(0 0 16px rgba(214, 178, 92, 0.04));
}

.hero__eyebrow,
.section-heading__eyebrow,
.cart-panel__eyebrow,
.modal__eyebrow {
  margin: 0 0 14px;
  font-size: 0.78rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(243, 223, 173, 0.78);
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.55),
    0 0 14px rgba(214, 178, 92, 0.08);
}

.hero-title {
  position: relative;
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  text-align: center;
  isolation: isolate;
}

.hero-title::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(90vw, 900px);
  height: min(90vw, 320px);
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    circle at center,
    rgba(214, 178, 92, 0.16) 0%,
    rgba(214, 178, 92, 0.07) 28%,
    transparent 60%
  );
  filter: blur(30px);
  opacity: 0.85;
}

.hero h1 {
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-title span {
  display: block;
  text-align: center;
  font-family: "Cinzel", serif;
  font-size: clamp(3rem, 7vw, 7.2rem);
  line-height: 0.94;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  background: linear-gradient(
    180deg,
    #fff8e3 0%,
    #f3dfad 22%,
    #d6b25c 48%,
    #8d6522 74%,
    #f5e3b6 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter:
    drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6))
    drop-shadow(0 0 16px rgba(214, 178, 92, 0.12));
  animation: heroGoldGlow 4.8s ease-in-out infinite alternate;
}

@keyframes heroGoldGlow {
  0% {
    filter:
      drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6))
      drop-shadow(0 0 12px rgba(214, 178, 92, 0.08));
  }
  100% {
    filter:
      drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6))
      drop-shadow(0 0 22px rgba(214, 178, 92, 0.16));
  }
}

.hero p {
  width: min(860px, 100%);
  margin: 22px auto 0;
  font-size: 1.02rem;
  line-height: 1.92;
  color: rgba(248, 242, 230, 0.8);
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.72),
    0 8px 22px rgba(0, 0, 0, 0.34);
}

.hero-divider {
  width: 110px;
  height: 1px;
  margin: 26px auto 0;
  background: linear-gradient(
    to right,
    transparent,
    rgba(214, 178, 92, 0.72),
    transparent
  );
  box-shadow: 0 0 12px rgba(214, 178, 92, 0.12);
}

.hero-location {
  margin-top: 18px;
  font-size: 0.85rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(243, 223, 173, 0.82);
  text-align: center;
  text-shadow:
    0 1px 4px rgba(0, 0, 0, 0.6),
    0 0 12px rgba(214, 178, 92, 0.08);
}

.hero-location::before {
  content: "";
  display: block;
  width: 80px;
  height: 1px;
  margin: 0 auto 14px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(214, 178, 92, 0.7),
    transparent
  );
}

.hero-location::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  margin: 12px auto 0;
  background: linear-gradient(
    to right,
    rgba(214, 178, 92, 0.6),
    transparent
  );
}

/* =========================================================
   5. LANGUAGE SWITCH
   ========================================================= */

.language-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(10, 10, 12, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  max-width: 100%;
}

.lang-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  transition: all 0.25s ease;
}

.lang-item img {
  width: 18px;
  height: 12px;
  border-radius: 2px;
  object-fit: cover;
}

.lang-item:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.lang-item.active {
  color: #d4af37;
}

.lang-separator {
  color: rgba(255,255,255,0.3);
  font-size: 12px;
}

/* =========================================================
   6. SECTIONS
   ========================================================= */

.section-block {
  margin: 22px 0 14px;
  padding: 0 10px;
  position: relative;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
}

.section-block::before,
.section-block::after {
  display: none;
}

.section-heading {
  position: relative;
  overflow: hidden;
  text-align: center;
  margin: 0 0 30px;
  padding: 34px 28px;
  border-radius: 30px;
  border: 1px solid var(--line-gold);
  background: linear-gradient(
    180deg,
    rgba(10, 11, 16, 0.34),
    rgba(6, 7, 10, 0.22)
  );
  backdrop-filter: blur(10px) saturate(118%);
  -webkit-backdrop-filter: blur(10px) saturate(118%);
  box-shadow:
    var(--shadow-soft),
    0 0 18px rgba(214, 178, 92, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.section-heading::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    125deg,
    rgba(255, 255, 255, 0.09) 0%,
    rgba(255, 255, 255, 0.03) 16%,
    transparent 32%
  );
  opacity: 0.65;
}

.section-heading h2 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 3.2vw, 3.5rem);
  line-height: 1;
  letter-spacing: 0.03em;
  background: linear-gradient(
    180deg,
    #fff8e4 0%,
    #f0d793 34%,
    #d6b25c 70%,
    #8c621d 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.42));
}

.section-heading p {
  width: min(760px, 100%);
  margin: 14px auto 0;
  color: rgba(248, 242, 230, 0.74);
  line-height: 1.82;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}

.section-separator {
  width: 84px;
  height: 1px;
  margin: 20px auto 0;
  background: linear-gradient(
    to right,
    transparent,
    rgba(214, 178, 92, 0.64),
    transparent
  );
}

/* =========================================================
   7. GALLERY / CARDS
   ========================================================= */

.gallery {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(214, 178, 92, 0.1);
  background: linear-gradient(
    180deg,
    rgba(8, 9, 12, 0.42),
    rgba(5, 6, 9, 0.28)
  );
  backdrop-filter: blur(14px) saturate(125%);
  -webkit-backdrop-filter: blur(14px) saturate(125%);
  box-shadow:
    var(--shadow-card),
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 -1px 0 rgba(120, 88, 39, 0.08);
  opacity: 0;
  transform: translateY(42px) scale(0.97);
  transform-origin: center;
  transition:
    opacity .9s ease,
    transform 1s var(--easing),
    box-shadow .45s ease,
    border-color .35s ease,
    filter .35s ease;
}

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

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at top left, rgba(214, 178, 92, 0.06), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    linear-gradient(120deg, rgba(255,255,255,0.05) 0%, transparent 28%);
}

.card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(214, 178, 92, 0.02) 18%,
    rgba(255, 255, 255, 0) 38%
  );
  opacity: 0.65;
  z-index: 0;
}

.card > * {
  position: relative;
  z-index: 1;
}

.card:hover {
  transform: translateY(-8px) scale(1.008);
  border-color: rgba(214, 178, 92, 0.16);
  box-shadow:
    var(--shadow-card-hover),
    0 0 18px rgba(214, 178, 92, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.card.added {
  animation: cardPulse 0.6s ease;
}

@keyframes cardPulse {
  0% { transform: translateY(0) scale(1); }
  40% { transform: translateY(-3px) scale(1.02); }
  100% { transform: translateY(0) scale(1); }
}

.card__media {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  background: rgba(255, 255, 255, 0.02);
}

.card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.12), transparent 38%),
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.04) 46%, transparent 58%);
}

.card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04) 0%,
    rgba(255,255,255,0) 34%,
    rgba(255,255,255,0.03) 100%
  );
  opacity: 0;
  transition: opacity .45s ease;
  z-index: 2;
}

.card:hover .card__media::after {
  opacity: 1;
}

.card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(243, 223, 173, 0.92);
  background: rgba(12, 12, 14, 0.56);
  border: 1px solid rgba(214, 178, 92, 0.14);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: none;
}

.card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 1.1s var(--easing), filter .45s ease;
}

.card:hover .card__image {
  transform: scale(1.035);
  filter: saturate(1.02) contrast(1.02) brightness(1.02);
}

.card__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: 36px 34px 30px;
}

.card__meta {
  min-width: 0;
}

.card__series {
  margin: 0 0 10px;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(214, 178, 92, 0.82);
}

.card__title {
  margin: 0 0 14px;
  font-family: "Cinzel", serif;
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  color: #fff8ee;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.48),
    0 0 18px rgba(214, 178, 92, 0.05);
  text-wrap: balance;
}

.card__date {
  display: inline-block;
  margin: 0 0 16px;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(219, 186, 108, 0.9);
}

.card__date::after {
  content: "";
  display: block;
  width: 38px;
  height: 1px;
  margin-top: 12px;
  background: linear-gradient(to right, rgba(214, 178, 92, 0.62), transparent);
}

.card__story {
  margin: 0 0 22px;
  font-size: 1.04rem;
  line-height: 1.9;
  font-style: italic;
  color: rgba(248, 238, 218, 0.96);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.34);
}

.card__story::before {
  content: "";
  display: block;
  width: 44px;
  height: 1px;
  margin-bottom: 14px;
  background: linear-gradient(to right, rgba(214,178,92,0.75), transparent);
}

.card__description {
  margin: 0 0 20px;
  font-size: 0.96rem;
  line-height: 1.8;
  color: rgba(236, 230, 220, 0.76);
}

.card__stock,
.card__number,
.card__shipping,
.card__note,
.card__urgency,
.card__format {
  font-size: 0.82rem;
  line-height: 1.55;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(225, 205, 160, 0.74);
}

.card__stock,
.card__urgency {
  margin: 0 0 18px;
  color: rgba(219, 186, 108, 0.94);
}

.card__price {
  margin: 0 0 16px;
  font-family: "Cinzel", serif;
  font-size: 2rem;
  line-height: 1;
  color: #f8e9c2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.card__note {
  margin: 0;
}

.card__edition-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0 16px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(214,178,92,0.015)
  );
  border: 1px solid rgba(214,178,92,0.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 6px 18px rgba(0,0,0,0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.card__edition-badge span {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(236,224,200,0.66);
}

.card__edition-badge strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: #f6e7c4;
}

.card__edition-badge strong::after {
  content: " EX.";
  font-size: 0.65rem;
  opacity: 0.6;
  margin-left: 2px;
}

/* =========================================================
   8. BUTTONS
   ========================================================= */

.btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  cursor: pointer;
  font-weight: 700;
  transition: transform .25s var(--easing), box-shadow .25s var(--easing), filter .25s ease;
}

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

.btn-luxury {
  min-width: 210px;
  padding: 16px 34px;
  font-size: 1rem;
  font-weight: 700;
  color: #2a1b08;
  background: linear-gradient(
    180deg,
    #f8edc9 0%,
    #ebd38e 30%,
    #d0a84d 68%,
    #9a6d1f 100%
  );
  box-shadow:
    0 16px 36px rgba(0,0,0,0.30),
    0 0 18px rgba(214,178,92,0.10),
    inset 0 1px 0 rgba(255,255,255,0.62),
    inset 0 -1px 0 rgba(120, 88, 39, 0.25);
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    filter .25s ease;
}

.btn-luxury:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow:
    0 22px 46px rgba(0,0,0,0.34),
    0 0 24px rgba(214,178,92,0.16),
    inset 0 1px 0 rgba(255,255,255,0.68),
    inset 0 -1px 0 rgba(120, 88, 39, 0.25);
}

.btn-secondary {
  color: rgba(248,242,230,0.9);
  border: 1px solid rgba(214,178,92,0.10);
  background: rgba(255,255,255,0.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* =========================================================
   9. LIGHTBOX / MODAL
   ========================================================= */

.lightbox,
.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(4, 4, 5, 0.88);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 1000;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lightbox {
  background:
    radial-gradient(circle at center, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.92) 76%),
    rgba(4,4,5,0.96);
}

.lightbox.is-open,
.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__inner {
  position: relative;
  width: min(96vw, 1480px);
  height: min(88vh, 920px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 34px 100px rgba(0,0,0,0.52);
  transform: scale(.96);
  opacity: 0;
  transition: transform .45s var(--easing), opacity .35s ease;
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox.is-open .lightbox__img {
  transform: scale(1);
  opacity: 1;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next,
.modal__close {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 14px 26px rgba(0,0,0,0.18);
  z-index: 10;
}

.lightbox__close,
.modal__close {
  top: 14px;
  right: 14px;
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
}

.lightbox__prev,
.lightbox__next {
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  font-size: 1.7rem;
}

.lightbox__prev {
  left: 12px;
}

.lightbox__next {
  right: 12px;
}

/* =========================================================
   10. CART PANEL
   ========================================================= */

.cart-panel {
  position: fixed;
  right: 22px;
  bottom: 22px;
  left: auto;
  top: auto;
  width: min(430px, calc(100vw - 44px));
  max-height: calc(100vh - 44px);
  display: none;
  z-index: 1200;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(214,178,92,0.28);
  background: linear-gradient(
    180deg,
    rgba(8, 9, 12, 0.78),
    rgba(5, 6, 9, 0.66)
  );
  color: var(--text);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(214, 178, 92, 0.12),
    0 0 22px rgba(214, 178, 92, 0.08),
    inset 0 1px 0 rgba(255, 245, 220, 0.08);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  transition: width .28s ease, height .28s ease, border-radius .28s ease;
}

.cart-panel:not(.is-minimized)::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(255, 240, 200, 0.85) 0%,
    rgba(214, 178, 92, 0.7) 28%,
    rgba(140, 98, 29, 0.55) 58%,
    rgba(243, 223, 173, 0.78) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0.95;
}

.cart-panel:not(.is-minimized)::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 18px rgba(214, 178, 92, 0.06);
}

.cart-panel.is-open {
  display: block;
}

.cart-panel__minimized-icon {
  display: none;
}

.cart-panel__svg {
  width: 24px;
  height: 24px;
  display: block;
}

.cart-panel.is-minimized {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: auto;
  top: auto;
  width: 68px;
  height: 68px;
  border-radius: 999px;
  padding: 0;
  cursor: pointer;
  overflow: visible;
  display: block;
  background: linear-gradient(
    180deg,
    rgba(28, 20, 12, 0.96),
    rgba(10, 7, 4, 0.98)
  );
  border: 1px solid rgba(214,178,92,0.18);
  box-shadow:
    0 14px 32px rgba(0,0,0,0.45),
    0 0 14px rgba(214,178,92,0.08),
    inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.cart-panel.is-minimized:hover {
  transform: translateY(-2px) scale(1.04);
  border-color: rgba(214,178,92,0.35);
  box-shadow:
    0 20px 44px rgba(0,0,0,0.55),
    0 0 22px rgba(214,178,92,0.18),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

.cart-panel.is-minimized::before {
  content: "";
  position: absolute;
  top: -6px;
  right: -6px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255,255,255,0.8),
    transparent 60%
  );
  opacity: 0.35;
  z-index: 3;
}

.cart-panel.is-minimized::after {
  content: attr(data-count);
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 26px;
  height: 26px;
  padding: 0 7px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #2a1b08;
  background: linear-gradient(
    180deg,
    #fff6d6 0%,
    #f3d98a 40%,
    #d4a94a 75%,
    #8c621d 100%
  );
  border: 2px solid rgba(10,7,4,0.95);
  box-shadow:
    0 8px 18px rgba(0,0,0,0.35),
    0 0 12px rgba(214,178,92,0.35),
    inset 0 1px 0 rgba(255,255,255,0.7),
    inset 0 -1px 0 rgba(120,88,39,0.4);
  backdrop-filter: blur(6px);
  z-index: 2;
}

.cart-panel.is-minimized .cart-panel__header,
.cart-panel.is-minimized .cart-panel__body {
  display: none;
}

.cart-panel.is-minimized .cart-panel__minimized-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.cart-panel.is-minimized .cart-panel__svg {
  width: 24px;
  height: 24px;
  stroke: #f3dfad;
  color: #f3dfad;
  opacity: 0.95;
}

.cart-panel__header {
  position: relative;
  padding: 18px 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(180deg, rgba(255,255,255,0.028), rgba(255,255,255,0.006));
}

.cart-panel__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 8px 24px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.12);
  transition:
    transform .25s var(--easing),
    background .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

.cart-panel__close:hover {
  transform: scale(1.10);
  background: rgba(255,255,255,0.12);
}

.cart-close-icon {
  width: 16px;
  height: 16px;
  stroke: #ffffff;
  stroke-width: 2.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-panel__head-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.cart-panel__title {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1;
  color: #f3dfad;
}

.cart-panel__count {
  color: rgba(247,241,215,0.72);
  font-size: .92rem;
  white-space: nowrap;
}

.cart-panel__body {
  padding: 18px 20px 20px;
}

.cart-items {
  display: grid;
  gap: 12px;
  margin: 0 0 16px;
  max-height: 260px;
  overflow: auto;
  padding-right: 4px;
}

.cart-items::-webkit-scrollbar {
  width: 10px;
}

.cart-items::-webkit-scrollbar-thumb {
  background: rgba(240, 207, 122, 0.22);
  border-radius: 999px;
}

/* ARTICLE PANIER + FORMATS */
.cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px;
  gap: 18px;
  align-items: start;
  width: 100%;
  padding: 14px 14px 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.cart-item__left {
  min-width: 0;
  width: 100%;
}

.cart-item__title {
  display: block;
  color: #fff7eb;
  font-weight: 600;
  margin: 0 0 4px 0;
  line-height: 1.2;
}

.cart-item__qty-label {
  display: block;
  color: rgba(255,241,215,0.62);
  font-size: .88rem;
  margin: 0 0 10px 0;
  line-height: 1.2;
}

.cart-format-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  min-width: 0;
}

.cart-format-row {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  column-gap: 10px;
  width: 100%;
  max-width: 100%;
  margin: 0;
  cursor: pointer;
}

.cart-format-radio {
  width: 18px;
  height: 18px;
  margin: 2px 0 0 0;
  accent-color: #d4b16a;
}

.cart-format-text {
  display: block;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
  line-height: 1.25;
  min-width: 0;
  color: #fff7eb;
}

.cart-item__qty-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
}

.cart-item__btn {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.12);
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #fff4d6;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-item__qty-value {
  min-width: 18px;
  text-align: center;
  color: #fff9ef;
  font-weight: 700;
  font-size: .95rem;
}

.cart-item__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  min-width: 140px;
}

.cart-item__line-total {
  color: #ffe9b0;
  font-size: .96rem;
  font-weight: 700;
  white-space: nowrap;
}

.cart-item__remove {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255,241,215,0.62);
  font-size: .84rem;
  cursor: pointer;
  padding: 0;
  white-space: nowrap;
}

.cart-empty {
  margin: 8px 0 16px;
  color: rgba(255,241,215,0.62);
}

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

.cart-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 14px;
  display: grid;
  gap: 14px;
}

.cart-total {
  font-weight: 700;
  color: #fff8ee;
}

.checkout-btn {
  width: 100%;
  padding-block: 15px;
  font-size: .98rem;
}

@keyframes cartBadgePop {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.35); }
  60%  { transform: scale(0.9); }
  100% { transform: scale(1); }
}

.cart-panel.is-minimized.bump::after {
  animation: cartBadgePop 0.4s ease;
}

/* =========================================================
   11. ORDER MODAL
   ========================================================= */

.modal {
  z-index: 1400;
}

.modal__dialog {
  position: relative;
  width: min(920px, calc(100vw - 44px));
  max-height: min(92vh, 760px);
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(214,178,92,0.28);
  background: linear-gradient(
    180deg,
    rgba(8, 9, 12, 0.78),
    rgba(5, 6, 9, 0.66)
  );
  color: var(--text);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(214, 178, 92, 0.12),
    0 0 22px rgba(214, 178, 92, 0.08),
    inset 0 1px 0 rgba(255, 245, 220, 0.08);
  transform: translateY(24px) scale(.97);
  opacity: 0;
  transition: transform .42s var(--easing), opacity .3s ease;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
}

.modal__dialog::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(255, 240, 200, 0.85) 0%,
    rgba(214, 178, 92, 0.7) 28%,
    rgba(140, 98, 29, 0.55) 58%,
    rgba(243, 223, 173, 0.78) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0.95;
}

.modal__dialog::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 18px rgba(214, 178, 92, 0.06);
}

.modal.is-open .modal__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal__header {
  padding: 18px 24px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.008));
  flex: 0 0 auto;
}

.modal__dialog h2 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(1.8rem, 2.4vw, 2.8rem);
  letter-spacing: 0.03em;
  line-height: .98;
  color: #f3dfad;
}

.modal__subtext {
  margin: 8px 0 0;
  color: rgba(247,241,215,0.7);
  line-height: 1.45;
  max-width: 760px;
  font-size: .95rem;
}

#orderForm {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}

.modal__content {
  padding: 14px 24px 8px;
  flex: 1 1 auto;
  overflow-y: auto;
  min-height: 0;
}

.order-form-wrap {
  height: auto;
  padding: 16px 18px;
  overflow: visible;
  border-radius: 26px;
  border: 1px solid rgba(214,178,92,0.10);
  background: linear-gradient(
    180deg,
    rgba(8, 9, 12, 0.78),
    rgba(5, 6, 9, 0.66)
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px 14px;
  align-items: start;
}

.field {
  display: grid;
  gap: 5px;
  margin-bottom: 4px;
  min-width: 0;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,247,230,0.92);
}

.field input,
.field textarea {
  width: 100%;
  min-width: 0;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.06);
  color: #fff9ef;
  padding: 12px 14px;
  outline: none;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255,241,215,0.4);
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(240, 207, 122, 0.36);
  box-shadow: 0 0 0 4px rgba(240, 207, 122, 0.10);
  background: rgba(255,255,255,0.09);
}

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

.modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 12px 24px 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.04));
  flex: 0 0 auto;
  position: relative;
  z-index: 5;
}

.modal__actions .btn {
  min-width: 180px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
}

.hidden-field {
  display: none;
}

/* =========================================================
   12. FLOATING CART FAB (UNUSED / FALLBACK)
   ========================================================= */

.cart-fab {
  display: none;
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(42,32,20,0.94), rgba(18,13,9,0.98));
  color: #f8e2aa;
  box-shadow: 0 18px 38px rgba(0,0,0,0.34);
  z-index: 1300;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.cart-fab__count {
  position: absolute;
  top: -4px;
  right: -2px;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff1c4, #cb9b3a);
  color: #2d1d08;
  font-size: .78rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.fab-icon {
  width: 24px;
  height: 24px;
  display: block;
}

/* =========================================================
   13. FOOTER
   ========================================================= */

.footer-premium {
  position: relative;
  z-index: 3;
  width: min(1500px, calc(100% - 40px));
  margin: 80px auto 40px;
  padding: 30px 34px 22px;
  border-radius: 26px;
  border: 1px solid rgba(214, 178, 92, 0.1);
  background: linear-gradient(
    180deg,
    rgba(8, 9, 12, 0.38),
    rgba(5, 6, 9, 0.28)
  );
  backdrop-filter: blur(10px) saturate(115%);
  -webkit-backdrop-filter: blur(10px) saturate(115%);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 0 18px rgba(214,178,92,0.04);
}

.footer-premium::before {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  margin: 0 auto 24px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(214,178,92,0.7),
    transparent
  );
}

.footer-premium__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

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

.footer-brand h2 {
  margin: 0 0 12px;
  font-family: "Cinzel", serif;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  letter-spacing: 0.04em;
  color: #f3dfad;
  text-shadow:
    0 2px 8px rgba(0,0,0,0.35),
    0 0 12px rgba(214,178,92,0.05);
}

.footer-brand p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(247, 241, 231, 0.72);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 22px;
  max-width: 520px;
  padding-top: 10px;
}

.footer-nav a,
.footer-legal a {
  color: rgba(247, 241, 231, 0.72);
  text-decoration: none;
  font-size: 0.96rem;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.footer-nav a:hover,
.footer-legal a:hover {
  color: #f3dfad;
}

.footer-premium__bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(214, 178, 92, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-premium__bottom p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(247, 241, 231, 0.5);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-legal a {
  font-size: 0.88rem;
}

/* =========================================================
   14. RESPONSIVE
   ========================================================= */

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

@media (max-width: 767px) {
  .site-shell,
  .footer-premium {
    width: calc(100% - 24px);
    margin-left: auto;
    margin-right: auto;
    .hero-title span {
  letter-spacing: 0.03em;
}
  }

  .hero {
    padding: 28px 16px 24px;
  }

  .topbar {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
    margin-bottom: 18px;
  }

  .topbar__left {
    width: auto;
    justify-content: center;
    overflow: visible;
  }

  .topbar__right {
    display: none;
  }

  .logo {
    grid-column: auto;
    justify-self: center;
  }

  .logo img {
    width: 90px;
  }

  .logo2 img {
    height: min(54vw, 220px);
  }
  

 .hero-title span {
    transform: translateX(-0.04em);
    line-height: 1;
    font-size: clamp(1.8rem, 10vw, 3.2rem);
  }

  .language-switch {
    max-width: 100%;
    flex-wrap: nowrap;
    justify-content: center;
  }

  .section-heading {
    padding: 26px 16px;
    border-radius: 24px;
  }

  .gallery {
    gap: 18px;
  }

  .card {
    border-radius: 24px;
  }

  .card__body {
    grid-template-columns: 1fr;
    align-items: stretch;
    padding: 22px 20px 20px;
  }

  .card__title {
    font-size: clamp(1.55rem, 6vw, 2rem);
  }

  .card__actions .btn {
    width: 100%;
  }

  .cart-fab {
    display: none;
  }

  .cart-panel {
    display: none;
    right: 12px;
    left: auto;
    bottom: 12px;
    top: auto;
    width: 84px;
    max-height: calc(100vh - 24px);
    border-radius: 999px;
    overflow: hidden;
  }

  .cart-panel.is-open {
    display: block;
    left: 12px;
    right: 12px;
    bottom: 84px;
    width: auto;
    max-height: calc(100vh - 110px);
    border-radius: 24px;
    overflow-y: auto;
  }

  .cart-panel.is-minimized {
    display: block;
    width: 68px;
    height: 68px;
    left: auto;
    right: 12px;
    bottom: 12px;
    border-radius: 999px;
    overflow: visible;
  }

  .lightbox__prev,
  .lightbox__next {
    width: 44px;
    height: 44px;
  }

  .modal {
    padding: 12px;
    align-items: flex-end;
  }

  .modal__dialog {
    width: 100%;
    max-width: 100%;
    max-height: 94vh;
    border-radius: 24px 24px 0 0;
  }

  .modal__header {
    padding: 20px 16px 16px;
  }

  .modal__content {
    padding: 14px 16px 8px;
    overflow-y: auto;
  }

  .order-form-wrap {
    overflow: visible;
    height: auto;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .field input,
  .field textarea {
    font-size: 16px;
  }

  .modal__actions {
    position: sticky;
    bottom: 0;
    flex-direction: column-reverse;
    padding: 14px 16px 18px;
  }

  .modal__actions .btn {
    width: 100%;
    min-width: 0;
  }

  .cart-item {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .cart-item__right {
    align-items: flex-start;
    min-width: 0;
    width: 100%;
  }

  .cart-item__line-total {
    text-align: right;
    white-space: normal;
  }

  .footer-premium {
    padding: 24px 20px 18px;
    border-radius: 22px;
  }

  .footer-premium__top {
    flex-direction: column;
    gap: 22px;
  }

  .footer-nav {
    justify-content: flex-start;
    padding-top: 0;
    max-width: 100%;
  }

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

  .footer-legal {
    max-width: 100%;
  }
  
   .hero-title {
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
}
}