/* ============================================================
   BUTIK CEJZI — LUXURY BOUTIQUE WEBSITE
   Mobile-First | Black + Gold | Serif Elegance
   ============================================================ */

/* ─── CSS VARIABLES ─────────────────────────────────────── */
:root {
  --black:       #0a0a0a;
  --black-soft:  #111111;
  --black-card:  #161616;
  --black-light: #1e1e1e;
  --gold:        #c9a84c;
  --gold-light:  #e0c068;
  --gold-dark:   #a0803a;
  --gold-pale:   #f5e8c0;
  --ivory:       #faf7f0;
  --ivory-dark:  #f0e8d8;
  --white:       #ffffff;
  --text-main:   #e8e0d0;
  --text-muted:  #9a9080;
  --text-light:  #c8bfaa;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Raleway', 'Segoe UI', sans-serif;

  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius:      4px;
  --radius-lg:   12px;

  --section-pad: 80px 0;
  --nav-height:  72px;
}

/* ─── RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--black);
  color: var(--text-main);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  /* Space for bottom nav */
  padding-bottom: var(--nav-height);
}

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

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

ul { list-style: none; }

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* ─── TYPOGRAPHY ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

/* ─── CONTAINER ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── SECTION BASE ──────────────────────────────────────── */
.section {
  padding: var(--section-pad);
  position: relative;
}

.section__eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section__eyebrow--light {
  color: var(--gold-light);
}

.section__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--ivory);
  margin-bottom: 16px;
}

.section__title--center { text-align: center; }
.section__title--light  { color: var(--white); }

.section__subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
}

.section__divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  margin-bottom: 32px;
  border: none;
}

.section__divider--center { margin-left: auto; margin-right: auto; }
.section__divider--gold   { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}

.btn--gold:hover, .btn--gold:focus {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  box-shadow: 0 6px 30px rgba(201, 168, 76, 0.55);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn--outline:hover, .btn--outline:focus {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.btn__arrow {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.btn:hover .btn__arrow {
  transform: translateY(4px);
}

/* LANGUAGE SWITCHER */
.lang-switcher {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(10, 8, 4, 0.82);
  border: 1px solid rgba(201,168,76,0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
}

.lang-switcher__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--gold-pale);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
}

.lang-switcher__btn:hover,
.lang-switcher__btn:focus-visible {
  background: rgba(201,168,76,0.12);
}

.lang-switcher__btn.is-active {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  box-shadow: 0 8px 20px rgba(201,168,76,0.25);
}

.lang-switcher__flag {
  width: 20px;
  height: 15px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.16);
  flex-shrink: 0;
}

.lang-switcher__text {
  line-height: 1;
}

/* ════════════════════════════════════════════════════════════
   SECTION 1: HERO
════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--black);
  background-image: url('../img/hero.jpeg');
  background-size: cover;
  background-position: center top;
  background-attachment: scroll;
  text-align: center;
  padding: 20px 20px 100px;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.55) 40%,
    rgba(0,0,0,0.78) 85%,
    rgba(0,0,0,0.92) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 16px;
  animation: heroFadeUp 1.2s ease forwards;
}

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

.hero__eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero__logo {
  display: block;
  width: min(72vw, 560px);
  height: auto;
  margin: 0 auto;
  filter: invert(1) brightness(1.12) drop-shadow(0 10px 26px rgba(0, 0, 0, 0.75));
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero__subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--gold-pale);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero__scroll-hint {
  position: absolute;
  bottom: calc(var(--nav-height) + 24px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* ════════════════════════════════════════════════════════════
   SECTION 2: ZA NAS
════════════════════════════════════════════════════════════ */
.about {
  background-color: var(--black-soft);
}

.about__grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.about__image-wrap {
  position: relative;
  flex-shrink: 0;
}

.about__image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  filter: brightness(0.92) contrast(1.05);
}

.about__image-badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: var(--black);
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  padding: 18px 22px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
  min-width: 90px;
}

.about__image-badge span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 4px;
}

.about__text {
  padding-top: 24px;
}

.about__lead {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--ivory);
  margin-bottom: 20px;
}

.about__text p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.about__stats {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.about__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 90px;
}

.about__stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.about__stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ════════════════════════════════════════════════════════════
   SECTION 3: COLLECTIONS
════════════════════════════════════════════════════════════ */
.collections {
  background-color: var(--black);
}

.collection__block {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.collection__block:first-of-type {
  border-top: none;
  margin-top: 24px;
}

.collection__header {
  margin-bottom: 36px;
}

.collection__icon {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
  display: block;
}

.collection__title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  color: var(--ivory);
  margin-bottom: 16px;
}

.collection__desc {
  color: var(--text-light);
  max-width: 640px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.collection__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.collection__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3/4;
  background: var(--black-light);
}

.collection__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.collection__item:hover img {
  transform: scale(1.06);
}

.collection__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.collection__item:hover .collection__item-overlay,
.collection__item:focus-within .collection__item-overlay {
  opacity: 1;
}

.collection__item-overlay span {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--gold-pale);
  font-style: italic;
}

/* Special Order block */
.collection__special {
  background-color: var(--black-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(201,168,76,0.12);
}

.collection__special-inner {
  display: flex;
  flex-direction: column;
}

.collection__special-image {
  flex-shrink: 0;
  height: 300px;
  overflow: hidden;
}

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

.collection__special-text {
  padding: 40px 28px;
}

.collection__features {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.collection__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.feature__icon {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  width: 20px;
}

/* Alt block styling */
.collection__block--alt .collection__header {
  text-align: right;
}

.collection__block--alt .section__divider {
  margin-left: auto;
}

/* ════════════════════════════════════════════════════════════
   SECTION 4: FEATURED / AKCII
════════════════════════════════════════════════════════════ */
.featured {
  background-color: var(--black-soft);
}

.featured__grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

.featured__card {
  background: var(--black-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  border-color: rgba(201,168,76,0.3);
}

.featured__image-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.featured__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured__card:hover .featured__image-wrap img {
  transform: scale(1.05);
}

.featured__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
}

.featured__badge--new {
  background: var(--gold);
  color: var(--black);
}

.featured__badge--sale {
  background: #c0392b;
  color: var(--white);
}

.featured__badge--exclusive {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.featured__info {
  padding: 24px;
}

.featured__name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--ivory);
  margin-bottom: 10px;
}

.featured__text {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

.featured__social-cta {
  text-align: center;
  padding: 36px 20px;
  background: linear-gradient(135deg, rgba(201,168,76,0.07), rgba(201,168,76,0.03));
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
}

.featured__social-cta p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 24px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.featured__social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
}

.social-link--fb {
  background: #1877F2;
  color: var(--white);
}

.social-link--fb:hover {
  background: #0d65d9;
  transform: translateY(-2px);
}

.social-link--ig {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
}

.social-link--ig:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════════════
   SECTION 5: PROCESS & TRADITION
════════════════════════════════════════════════════════════ */
.process {
  position: relative;
  padding: 0;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.process__image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.process__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.process__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.80) 50%,
    rgba(0,0,0,0.70) 100%
  );
}

.process .container {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
}

.process__content {
  max-width: 680px;
}

.process__text p {
  color: var(--text-light);
  margin-bottom: 18px;
  font-size: 0.95rem;
  line-height: 1.85;
}

.process__steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.process__step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.process__step-num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}

.process__step-info h4 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--ivory);
  margin-bottom: 4px;
}

.process__step-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ════════════════════════════════════════════════════════════
   SECTION 6: FAQ
════════════════════════════════════════════════════════════ */
.faq {
  background-color: var(--black);
}

.faq__list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq__item {
  border-bottom: 1px solid rgba(201,168,76,0.15);
  overflow: hidden;
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 500;
  color: var(--ivory);
  text-align: left;
  transition: color 0.25s ease;
  line-height: 1.4;
}

.faq__question:hover,
.faq__question[aria-expanded="true"] {
  color: var(--gold);
}

.faq__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  line-height: 1;
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq__question[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.faq__answer:not([hidden]) {
  max-height: 400px;
}

.faq__answer p {
  padding: 4px 0 24px;
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.85;
  max-width: 680px;
}

/* ════════════════════════════════════════════════════════════
   SECTION 7: CONTACT
════════════════════════════════════════════════════════════ */
.contact {
  background-color: var(--black-soft);
}

.contact__grid {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.contact__image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  filter: brightness(0.85);
}

.contact__card {
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
}

.contact__card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--ivory);
  margin-bottom: 28px;
}

.contact__item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  align-items: flex-start;
}

.contact__item-icon {
  width: 40px;
  height: 40px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.contact__label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact__value {
  display: flex;
  flex-direction: column;
  font-size: 0.95rem;
  color: var(--text-main);
  gap: 2px;
}

a.contact__value {
  color: var(--gold-pale);
  transition: color 0.2s;
}

a.contact__value:hover { color: var(--gold); }

.contact__social {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(201,168,76,0.12);
}

.contact__social-link {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  transition: var(--transition);
}

.contact__social-link:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: scale(1.1);
}

.contact__map {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,168,76,0.15);
  display: block;
  filter: grayscale(80%) contrast(1.1);
  transition: filter 0.3s ease;
}

.contact__map:hover { filter: grayscale(20%); }

/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.footer {
  background-color: var(--black);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 36px 0 24px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.footer__name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold-pale);
  letter-spacing: 0.05em;
}

.footer__tagline {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.footer__links {
  display: flex;
  gap: 12px;
}

.footer__links a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer__links a:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.footer__disclaimer {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 20px;
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════
   BOTTOM FLOATING NAV
════════════════════════════════════════════════════════════ */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: stretch;
  background: rgba(10, 8, 4, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(201,168,76,0.25);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.6);
  /* Safe area for iOS */
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.bottom-nav__item {
  flex: 1;
  position: relative;
  display: flex;
}

.bottom-nav__btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 4px;
  color: var(--gold-pale);
  font-family: var(--font-sans);
  font-size: 0;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
  border-right: 1px solid rgba(201,168,76,0.1);
  position: relative;
  overflow: hidden;
}

.bottom-nav__item:last-child .bottom-nav__btn { border-right: none; }

.bottom-nav__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.bottom-nav__btn:hover::before,
.bottom-nav__btn:active::before {
  opacity: 1;
}

.bottom-nav__btn:hover,
.bottom-nav__btn:focus,
.bottom-nav__btn:active {
  color: var(--gold);
  outline: none;
}

.bottom-nav__btn[aria-expanded="true"]::before {
  opacity: 1;
}

.bottom-nav__btn--call:hover,
.bottom-nav__btn--call:active   { color: #4ade80; }
.bottom-nav__btn--location:hover,
.bottom-nav__btn--location:active { color: #f59e0b; }
.bottom-nav__btn--email:hover,
.bottom-nav__btn--email:active  { color: var(--gold-light); }
.bottom-nav__btn--social:hover,
.bottom-nav__btn--social:active { color: #f77737; }

.bottom-nav__icon {
  font-size: 1.2rem;
  display: block;
}

.bottom-nav__label {
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-top: 2px;
  color: inherit;
  opacity: 0.85;
}

.bottom-nav__popup {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  transform: translateX(-50%) translateY(8px);
  width: min(220px, calc(100vw - 24px));
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(201,168,76,0.18);
  background:
    linear-gradient(180deg, rgba(32, 24, 11, 0.98), rgba(13, 10, 4, 0.98));
  box-shadow: 0 18px 48px rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 1001;
}

.bottom-nav__popup::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 14px;
  height: 14px;
  transform: translateX(-50%) rotate(45deg);
  background: #120e07;
  border-right: 1px solid rgba(201,168,76,0.18);
  border-bottom: 1px solid rgba(201,168,76,0.18);
}

.bottom-nav__popup.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.bottom-nav__popup-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold-pale);
  margin-bottom: 6px;
}

.bottom-nav__popup-text {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-light);
  margin-bottom: 12px;
}

.bottom-nav__popup-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 12px;
  margin-top: 8px;
  border-radius: 12px;
  border: 1px solid rgba(201,168,76,0.18);
  background: rgba(255,255,255,0.04);
  color: var(--gold-pale);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
}

.bottom-nav__popup-link:hover,
.bottom-nav__popup-link:focus {
  background: rgba(201,168,76,0.14);
  border-color: rgba(201,168,76,0.36);
  color: var(--white);
}

.bottom-nav__popup-link--primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  border-color: transparent;
}

.bottom-nav__popup-link--primary:hover,
.bottom-nav__popup-link--primary:focus {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
}

/* ════════════════════════════════════════════════════════════
   TABLET (min-width: 600px)
════════════════════════════════════════════════════════════ */
@media (min-width: 600px) {
  .bottom-nav__label {
    font-size: 0.6rem;
  }

  .bottom-nav__popup {
    width: 220px;
  }

  .featured__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .featured__grid .featured__card:last-child {
    grid-column: 1 / -1;
  }

  .contact__image {
    height: 340px;
  }

  .about__image {
    height: 400px;
  }
}

/* ════════════════════════════════════════════════════════════
   DESKTOP (min-width: 900px)
════════════════════════════════════════════════════════════ */
@media (min-width: 900px) {
  :root {
    --section-pad: 100px 0;
    --nav-height: 68px;
  }

  /* About grid – 2 col */
  .about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }

  .about__image {
    height: 520px;
  }

  /* Collections grid – keep 2 col but bigger */
  .collection__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .collection__item {
    aspect-ratio: 2/3;
  }

  /* Special – 2 col */
  .collection__special-inner {
    flex-direction: row;
  }

  .collection__special-image {
    width: 45%;
    height: auto;
    min-height: 460px;
  }

  .collection__special-text {
    padding: 56px 48px;
    flex: 1;
  }

  /* Featured – 3 col */
  .featured__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .featured__grid .featured__card:last-child {
    grid-column: auto;
  }

  /* Contact – 2 col */
  .contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }

  .contact__image {
    height: 100%;
    min-height: 400px;
    grid-row: 1 / 3;
  }

  .contact__map-col {
    grid-column: 2;
  }

  .contact__map {
    height: 340px;
  }

  /* Process steps 4 col */
  .process__steps {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Bottom nav labels visible */
  .bottom-nav__label {
    font-size: 0.62rem;
  }

  .bottom-nav__icon { font-size: 1.3rem; }

  /* Collection alt right-align */
  .collection__block--alt .collection__header {
    text-align: left;
  }

  /* Hero parallax effect on desktop */
  .hero {
    background-attachment: fixed;
  }
}

/* ════════════════════════════════════════════════════════════
   LARGE DESKTOP (min-width: 1200px)
════════════════════════════════════════════════════════════ */
@media (min-width: 1200px) {
  .about__image {
    height: 560px;
  }

  .collection__grid {
    gap: 20px;
  }
}

/* ════════════════════════════════════════════════════════════
   ACCESSIBILITY & FOCUS
════════════════════════════════════════════════════════════ */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS (progressive enhancement)
════════════════════════════════════════════════════════════ */
.js-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.js-reveal-delay-1 { transition-delay: 0.1s; }
.js-reveal-delay-2 { transition-delay: 0.2s; }
.js-reveal-delay-3 { transition-delay: 0.3s; }

/* ─── GOLD ORNAMENT DIVIDER ─────────────────────────────── */
.ornament {
  text-align: center;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.5em;
  margin: 8px 0;
  opacity: 0.6;
}

/* ─── SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

/* ─── SELECTION ─────────────────────────────────────────── */
::selection {
  background: var(--gold);
  color: var(--black);
}

/* ════════════════════════════════════════════════════════════
   MOBILE SPECIFIC REFINEMENTS (max-width: 599px)
════════════════════════════════════════════════════════════ */
@media (max-width: 599px) {
  .lang-switcher {
    top: 12px;
    right: 12px;
    padding: 6px;
  }

  .lang-switcher__btn {
    padding: 7px 10px;
    gap: 6px;
    font-size: 0.66rem;
  }

  /* More breathing room on small screens */
  .container { padding: 0 18px; }

  /* Hero: large bold text works on small screens */
  .hero__title {
    margin-bottom: 18px;
  }

  .hero__logo {
    width: min(88vw, 430px);
  }

  .hero__subtitle {
    font-size: 0.95rem;
  }

  .hero {
    padding-bottom: 90px;
  }

  /* Sections tighter */
  .section { padding: 60px 0; }

  /* About - compact */
  .about__image { height: 260px; }
  .about__stats { gap: 12px; }
  .about__stat-num { font-size: 1.8rem; }

  /* Collection grid - 2 per row always (keep square-ish) */
  .collection__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .collection__item { aspect-ratio: 3/4; }

  /* Featured single column */
  .featured__grid { grid-template-columns: 1fr; }
  .featured__image-wrap { height: 240px; }

  /* Process steps 2 col */
  .process__steps {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* FAQ larger tap targets */
  .faq__question { padding: 18px 0; font-size: 1rem; }
  .faq__icon { width: 26px; height: 26px; font-size: 1rem; }

  /* Contact */
  .contact__image { height: 220px; }
  .contact__card { padding: 24px 18px; }
  .contact__map { height: 250px; }

  /* Bottom nav - ensure labels visible on small screens */
  .bottom-nav__label { font-size: 0.52rem; }
  .bottom-nav__icon  { font-size: 1.1rem; }
  .bottom-nav__popup {
    width: min(210px, calc(100vw - 20px));
    padding: 14px;
  }
  .bottom-nav__popup-title { font-size: 1.05rem; }
  .bottom-nav__popup-text { font-size: 0.76rem; }

  /* Footer compact */
  .footer__inner { flex-direction: column; text-align: center; gap: 16px; }

  /* Buttons full width on hero */
  .hero .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  /* Section eyebrow smaller */
  .section__eyebrow { font-size: 0.62rem; letter-spacing: 0.2em; }
}

/* ════════════════════════════════════════════════════════════
   VERY SMALL PHONES (max-width: 380px)
════════════════════════════════════════════════════════════ */
@media (max-width: 380px) {
  .lang-switcher__text {
    display: none;
  }

  .hero__logo     { width: 90vw; }
  .section__title { font-size: 1.8rem; }
  .collection__grid { gap: 6px; }
  .bottom-nav__label { font-size: 0.46rem; }
  .bottom-nav__icon  { font-size: 1.15rem; }
  :root { --nav-height: 58px; }
}

/* ════════════════════════════════════════════════════════════
   PRINT HIDE BOTTOM NAV
════════════════════════════════════════════════════════════ */
@media print {
  .bottom-nav { display: none; }
  body { padding-bottom: 0; }
}

.products {
  background:
    radial-gradient(circle at top, rgba(201,168,76,0.08), transparent 40%),
    var(--black-soft);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.products__card {
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.12);
  box-shadow: 0 14px 32px rgba(0,0,0,0.22);
}

.products__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.products__card:hover .products__image {
  transform: scale(1.04);
  filter: brightness(1.03);
}

@media (min-width: 600px) {
  .products__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (min-width: 900px) {
  .products__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
  }

  .products__image {
    aspect-ratio: 3 / 4;
  }
}

@media (max-width: 599px) {
  .products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .bottom-nav__popup {
    width: min(240px, calc(100vw - 16px));
  }

  .bottom-nav__item:first-child .bottom-nav__popup {
    left: 0;
    right: auto;
    transform: translateX(0) translateY(8px);
  }

  .bottom-nav__item:first-child .bottom-nav__popup.is-open {
    transform: translateX(0) translateY(0);
  }

  .bottom-nav__item:first-child .bottom-nav__popup::after {
    left: 28px;
    transform: rotate(45deg);
  }

  .bottom-nav__item:last-child .bottom-nav__popup {
    left: auto;
    right: 0;
    transform: translateX(0) translateY(8px);
  }

  .bottom-nav__item:last-child .bottom-nav__popup.is-open {
    transform: translateX(0) translateY(0);
  }

  .bottom-nav__item:last-child .bottom-nav__popup::after {
    left: auto;
    right: 28px;
    transform: rotate(45deg);
  }
}
.products__actions {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0 2rem;
}

.products__guide-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(201,168,76,0.28);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(201,168,76,0.14), rgba(255,255,255,0.04));
  color: var(--ivory);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.products__guide-btn:hover,
.products__guide-btn:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(201,168,76,0.48);
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(255,255,255,0.07));
}

.products__guide-icon {
  width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201,168,76,0.18);
  color: var(--gold-light);
}

.products__guide-text {
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.size-guide-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.size-guide-modal[hidden] {
  display: none;
}

.size-guide-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 6, 0.72);
  backdrop-filter: blur(6px);
}

.size-guide-modal__dialog {
  position: relative;
  width: min(1080px, 100%);
  max-height: min(88vh, 980px);
  overflow: auto;
  border-radius: 24px;
  background: linear-gradient(180deg, #181512, #0f0d0b);
  border: 1px solid rgba(201,168,76,0.25);
  box-shadow: 0 28px 70px rgba(0,0,0,0.45);
}

.size-guide-modal__close {
  position: sticky;
  top: 1rem;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--ivory);
  z-index: 2;
}

.size-guide-modal__content {
  padding: 1.25rem 1.25rem 1.5rem;
}

.size-guide-modal__header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 1.5rem;
}

.size-guide-modal__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--ivory);
  margin-bottom: 0.5rem;
}

.size-guide-modal__text,
.size-guide-modal__caption {
  color: var(--text-light);
}

.size-guide-modal__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.25rem;
  align-items: start;
}

.size-guide-modal__figure,
.size-guide-modal__table-wrap {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 20px;
  padding: 1rem;
}

.size-guide-modal__image {
  width: 100%;
  border-radius: 14px;
  background: #f5efe6;
}

.size-guide-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}

.size-guide-table th,
.size-guide-table td {
  padding: 0.9rem 0.7rem;
  text-align: center;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}

.size-guide-table th {
  font-size: 0.8rem;
  color: var(--black);
  background: var(--ivory-dark);
  text-transform: uppercase;
}

.size-guide-table td {
  color: var(--ivory);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .size-guide-modal__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .products__guide-btn {
    width: 100%;
    justify-content: center;
  }

  .size-guide-modal {
    padding: 0.65rem;
  }

  .size-guide-modal__content {
    padding: 0.9rem;
  }

  .size-guide-table th,
  .size-guide-table td {
    padding: 0.7rem 0.45rem;
    font-size: 0.8rem;
  }
}
.products__actions {
  flex-wrap: wrap;
  gap: 0.85rem;
}

.products__guide-btn--secondary {
  background: rgba(255,255,255,0.03);
}

.products__card {
  cursor: pointer;
}

.testimonials {
  background:
    radial-gradient(circle at top left, rgba(201,168,76,0.1), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.testimonial-card {
  padding: 1.4rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.14);
  box-shadow: 0 18px 36px rgba(0,0,0,0.2);
}

.testimonial-card__stars {
  color: var(--gold-light);
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.testimonial-card__text {
  color: var(--text-main);
  margin-bottom: 1rem;
}

.testimonial-card__name {
  color: var(--ivory);
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

.product-gallery-modal,
.size-guide-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.product-gallery-modal[hidden],
.size-guide-modal[hidden] {
  display: none;
}

.product-gallery-modal__backdrop,
.size-guide-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 6, 0.72);
  backdrop-filter: blur(6px);
}

.product-gallery-modal__dialog {
  position: relative;
  width: min(1140px, 100%);
  max-height: min(90vh, 980px);
  overflow: auto;
  border-radius: 28px;
  background: linear-gradient(180deg, #181512, #0f0d0b);
  border: 1px solid rgba(201,168,76,0.25);
  box-shadow: 0 28px 70px rgba(0,0,0,0.45);
}

.product-gallery-modal__close {
  position: sticky;
  top: 1rem;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--ivory);
  z-index: 2;
}

.product-gallery-modal__content {
  padding: 1.25rem 1.25rem 1.5rem;
}

.product-gallery-modal__header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 1.4rem;
}

.product-gallery-modal__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.9rem);
  color: var(--ivory);
  margin-bottom: 0.45rem;
}

.product-gallery-modal__text {
  color: var(--text-light);
}

.product-gallery-modal__stage {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

.product-gallery-modal__nav {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  color: var(--ivory);
  border: 1px solid rgba(201,168,76,0.14);
}

.product-gallery-modal__figure {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 24px;
  padding: 1rem;
}

.product-gallery-modal__image {
  width: 100%;
  max-height: 68vh;
  object-fit: contain;
  border-radius: 16px;
  background: #120f0c;
}

.product-gallery-modal__caption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.85rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

.product-gallery-modal__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(82px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.product-gallery-modal__thumb {
  border: 1px solid rgba(201,168,76,0.14);
  border-radius: 14px;
  padding: 0.2rem;
  background: rgba(255,255,255,0.03);
  opacity: 0.72;
}

.product-gallery-modal__thumb.is-active {
  border-color: rgba(201,168,76,0.45);
  opacity: 1;
}

.product-gallery-modal__thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
}

body.is-size-guide-open,
body.is-products-gallery-open {
  overflow: hidden;
}

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

  .product-gallery-modal__stage {
    grid-template-columns: 1fr;
    position: relative;
  }

  .product-gallery-modal__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    background: rgba(10,10,10,0.7);
    backdrop-filter: blur(4px);
  }

  .product-gallery-modal__nav--prev {
    left: 0.65rem;
  }

  .product-gallery-modal__nav--next {
    right: 0.65rem;
  }

  .product-gallery-modal__figure {
    padding-left: 2.9rem;
    padding-right: 2.9rem;
  }

  .product-gallery-modal__caption {
    flex-direction: column;
  }
}
.testimonials {
  background:
    radial-gradient(circle at top left, rgba(201,168,76,0.1), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}

.reviews-slider {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

.reviews-slider__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2rem) / 3);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.2rem 0;
  scrollbar-width: none;
}

.reviews-slider__track::-webkit-scrollbar {
  display: none;
}

.reviews-slider__nav {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.18);
  background: rgba(255,255,255,0.05);
  color: var(--ivory);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.reviews-slider__nav:hover,
.reviews-slider__nav:focus-visible {
  background: rgba(201,168,76,0.18);
  border-color: rgba(201,168,76,0.45);
}

.reviews-slider__nav[disabled] {
  opacity: 0.38;
  cursor: default;
}

.review-shot {
  scroll-snap-align: start;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.14);
  box-shadow: 0 18px 36px rgba(0,0,0,0.22);
}

.review-shot__image {
  width: 100%;
  display: block;
  aspect-ratio: 9 / 19;
  object-fit: cover;
  background: #120f0c;
}

@media (max-width: 980px) {
  .reviews-slider__track {
    grid-auto-columns: calc((100% - 1rem) / 2);
  }
}

@media (max-width: 640px) {
  .reviews-slider {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .reviews-slider__track {
    order: 2;
    grid-auto-columns: 100%;
  }

  .reviews-slider__nav {
    order: 1;
    width: 2.75rem;
    height: 2.75rem;
  }

  .reviews-slider__nav--prev {
    justify-self: start;
  }

  .reviews-slider__nav--next {
    justify-self: end;
    margin-top: -3.6rem;
  }
}
