/* =========================================================
   Natasha Shahid — Luxury Couture
   Design system + home page styles
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  /* palette */
  --ivory: #f8f4ee;
  --sand: #efe5d6;
  --blush: #e8d5cc;
  --gold: #b89968;
  --gold-deep: #97784e;
  --charcoal: #1a1a1a;
  --ink: #0a0a0a;
  --muted: #6b6357;
  --line: #e6ded1;

  /* typography */
  --serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --cursive: "Cormorant Garamond", "Playfair Display", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --hero-display: "Bodoni Moda", "Playfair Display", Georgia, serif;

  /* spacing scale */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 48px;
  --s-6: 64px;
  --s-7: 96px;
  --s-8: 128px;

  /* layout */
  --container: 1280px;
  --gutter: 24px;
  --radius: 0px;
  --header-h: 84px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.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;
}
svg {
  width: 18px;
  height: 18px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ---------- Typography helpers ---------- */
.display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin: 0;
}
.display span {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-deep);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 12px;
}
.eyebrow.gold {
  color: var(--gold-deep);
}
.eyebrow--light {
  color: rgba(248, 244, 238, 0.85);
}
.cursive {
  font-family: var(--cursive);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 18px;
  font-weight: 500;
}

.lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 540px;
  margin: 18px auto 0;
}
.lede--small {
  font-size: 15px;
  margin-top: 6px;
}

.ornament {
  display: inline-block;
  margin: 18px 0 6px;
  width: 80px;
  height: 1px;
  background: var(--gold);
  position: relative;
  display: none;
}
.ornament::after {
  content: "";
  position: absolute;
  inset: -3px 50% auto auto;
  transform: translateX(50%) rotate(45deg);
  width: 6px;
  height: 6px;
  background: var(--gold);
}
.ornament--light {
  background: rgba(248, 244, 238, 0.6);
}
.ornament--light::after {
  background: rgba(248, 244, 238, 0.85);
}

.text-link {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.text-link:hover {
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.text-link--light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
}
.text-link--light:hover {
  color: var(--blush);
  border-color: var(--blush);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 14px 28px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid var(--charcoal);
  background: var(--charcoal);
  color: var(--ivory);
}
.btn:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}

.btn--solid {
  background: var(--charcoal);
  color: var(--ivory);
  border-color: var(--charcoal);
}
.btn--ghost {
  background: rgba(248, 244, 238, 0);
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}
.btn--ghost:hover {
  background: var(--charcoal);
  color: var(--ivory);
}
.btn--light {
  color: var(--ivory);
  border-color: rgba(248, 244, 238, 0.85);
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(2px);
}
.btn--light:hover {
  background: var(--ivory);
  color: var(--charcoal);
  border-color: var(--ivory);
}
.btn--mini {
  padding: 8px 14px;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--charcoal);
}
.btn--mini:hover {
  background: var(--charcoal);
  color: var(--ivory);
  border-color: var(--charcoal);
}

/* ---------- Announcement bar ---------- */
.announcement {
  background: var(--ink);
  color: #dcd2c0;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.16em;
  padding: 10px var(--gutter);
  display: none;
}
.announcement p {
  margin: 0;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 244, 238, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.brand-mark {
  text-align: center;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  white-space: nowrap;
}
.brand-mark .logo {
  background: url(../assets/images/logo.jpg) no-repeat;
  background-size: 100% auto;
  width: 85px;
  height: 85px;
  display: inline-block;
}
.brand-mark__text {
  display: inline-block;
}

.nav ul {
  display: flex;
  gap: 20px;
  align-items: center;
}
.nav a {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 6px 0;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.nav--right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav--right .btn--header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fff;
  background: var(--charcoal);
  border: 1px solid var(--charcoal);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.nav--right .btn--header::after {
  display: none;
}
.nav--right .btn--header:hover {
  color: #fff;
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(151, 120, 78, 0.28);
}
.nav--right .btn--header:active {
  transform: translateY(0);
  box-shadow: none;
}
.mobile-menu__cta {
  margin-top: 8px;
}
.mobile-menu__cta .btn {
  width: 100%;
  text-align: center;
}
.mobile-menu__cta {
  display: none;
}
.icon-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  position: relative;
  border-radius: 50%;
  transition: background 0.2s;
}
.icon-btn:hover {
  background: var(--sand);
}
.icon-btn--bag .badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--gold-deep);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.icon-btn--mobile {
  display: none;
}

.mobile-menu {
  display: none;
  background: var(--ivory);
  border-top: 1px solid var(--line);
  padding: var(--s-3) var(--gutter);
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-menu a {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--charcoal);
}
.mobile-menu.is-open {
  display: block;
}
.insta-grid-wrap {
  margin: 0;
  padding: 0;
  line-height: 0;
}

.insta-grid-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.ns-insta-feed--live {
  margin: 0;
  padding: 0;
  line-height: 0;
}

.ns-insta-feed--live .ns-insta-embed {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

.ns-insta-feed--live iframe {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

/* Embed fallback: show header + first row (3 posts) only */
.ns-insta-feed--embed {
  overflow: hidden;
  max-height: 547px;
}

.insta-grid {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.insta-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.insta-tile {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1.368;
  overflow: hidden;
  background: #f3f0eb;
  transition: filter 0.3s;
}

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

.insta-tile:hover {
  filter: brightness(0.78);
}

.insta-tile__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  background: rgba(26, 26, 26, 0.28);
  opacity: 0;
  transition: opacity 0.3s;
}

.insta-tile__stat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.insta-tile__stat svg {
  width: 14px;
  height: 14px;
}

.insta-tile:hover .insta-tile__overlay {
  opacity: 1;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: calc(100vh - var(--header-h) - 38px);
  min-height: 680px;
  max-height: 960px;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
  z-index: 0;
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.hero-slide__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #1a1a1a;
}
/* Full-bleed — slight zoom, head near top */
.hero-slide__img {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
  user-select: none;
}
.hero-slide__img--face1 {
  top: 0;
  height: 112%;
}
.hero-slide__img--face2 {
  top: 0;
  height: 114%;
}
.hero-slide__img--face3 {
  top: 0;
  height: 128%;
}
.hero-slide__img--face4 {
  top: 0;
  height: 113%;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.32) 0%,
    rgba(0, 0, 0, 0.12) 34%,
    rgba(0, 0, 0, 0.02) 58%,
    rgba(0, 0, 0, 0.1) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--s-6) 72px;
  color: var(--ivory);
}
.hero-content--center {
  text-align: center;
}
.hero-content--center::after {
  left: 50%;
  transform: translateX(-50%);
}

.hero-content .display {
  font-family: var(--hero-display);
  color: var(--ivory);
  font-size: clamp(34px, 5.2vw, 58px);
  line-height: 1.08;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.28);
  max-width: 14ch;
  margin: 0 0 20px;
}
.hero-content--center .display {
  margin-left: auto;
  margin-right: auto;
}
.hero-content .display span {
  color: var(--blush);
  font-style: italic;
  font-weight: 400;
}
.hero-content .btn {
  font-size: 10px;
  padding: 12px 22px;
  letter-spacing: 0.2em;
}

.hero-content .cursive {
  color: var(--blush);
  margin-bottom: 16px;
  font-size: 22px;
}
.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: rgba(248, 244, 238, 0.9);
  max-width: 420px;
  margin: 0 0 24px;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.35);
}
.hero-content--center .hero-sub {
  margin-left: auto;
  margin-right: auto;
}

.hero-dots {
  position: absolute;
  bottom: 30px;
  right: 40px;
  display: flex;
  gap: 10px;
  z-index: 3;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transition:
    background 0.2s,
    transform 0.2s;
}
.dot.is-active {
  background: var(--ivory);
  transform: scale(1.25);
}

/* ---------- Section helpers ---------- */
.section {
  padding: var(--s-7) 0;
}
.section--ivory {
  background: var(--ivory);
}
.section--cream {
  background: var(--sand);
}
.section-head {
  margin-bottom: var(--s-5);
}
.section-head--center {
  text-align: center;
}
.section-foot {
  text-align: center;
  margin-top: var(--s-5);
}

/* ---------- Product grid (New Arrivals) ---------- */
.carousel-wrap {
  position: relative;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

#newArrivalsGrid {
  grid-template-columns: repeat(3, 1fr);
}

.product-card {
  position: relative;
}
.product-card__media {
  position: relative;
  overflow: hidden;
  background: #fff;
  aspect-ratio: 3 / 4;
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}
.product-card:hover .product-card__media img {
  transform: scale(1.04);
}

.wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  transition:
    background 0.2s,
    color 0.2s;
  z-index: 2;
}
.wishlist:hover {
  background: var(--charcoal);
  color: var(--ivory);
}
.wishlist.is-active {
  background: var(--gold-deep);
  color: #fff;
}

.quick-view {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.84);
  color: var(--ivory);
  text-align: center;
  padding: 12px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.product-card:hover .quick-view {
  transform: translateY(0);
}
.quick-view span::before {
  content: "\2295";
  margin-right: 8px;
}

.product-card__body {
  padding: 18px 4px 0;
  text-align: left;
}
.product-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.3;
  margin: 0 0 6px;
  color: var(--charcoal);
}
.product-meta {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 8px;
}
.product-card__link {
  display: block;
  color: inherit;
}
.product-card__link::after {
  display: none;
}
.product-title a {
  color: inherit;
  transition: color 0.2s ease;
}
.product-title a:hover {
  color: var(--gold-deep);
}
.product-title a::after {
  display: none;
}
.product-meta--designer {
  margin-bottom: 8px;
}
.product-price {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
  line-height: 1.35;
}
.btn--view {
  margin-top: 14px;
  width: 100%;
  text-align: center;
}

/* ---------- Featured Collections ---------- */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.collection-tile {
  position: relative;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: block;
}
.collection-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.55) 100%
  );
  z-index: 1;
}
.collection-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.35s ease;
  z-index: 1;
}
.collection-tile:hover::after {
  background: rgba(0, 0, 0, 0.18);
}
.collection-tile__caption {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 2;
  color: #fff;
}
.collection-tile h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  margin: 0 0 10px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

/* ---------- Bridal Banner ---------- */
.bridal-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  min-height: 620px;
  background: var(--ink);
}
.bridal-banner__image {
  background-size: cover;
  background-position: left top;
}
.bridal-banner__panel {
  background: var(--ivory);
  color: var(--charcoal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--s-6) var(--s-5);
}
.bridal-banner__panel .display {
  font-size: clamp(32px, 3.4vw, 48px);
  margin-bottom: 30px;
}
.bridal-banner__panel .lede {
  font-size: 16px;
  margin: 18px auto 28px;
  max-width: 420px;
}

/* ---------- Shop the Look ---------- */
.shop-look {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: var(--s-5);
  align-items: stretch;
}
.shop-look__visual {
  position: relative;
  overflow: hidden;
}
.shop-look__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotspot {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gold);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.25s,
    background 0.25s,
    color 0.25s;
}
.hotspot::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(184, 153, 104, 0.55);
  animation: pulse 2.2s ease-out infinite;
}
.hotspot:hover {
  background: var(--gold-deep);
  color: #fff;
  transform: scale(1.08);
}
@keyframes pulse {
  0% {
    transform: scale(0.85);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

.shop-look__panel {
  background: var(--ivory);
  padding: var(--s-5) var(--s-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.shop-look__panel .display {
  font-size: clamp(36px, 3.6vw, 52px);
}

.look-list {
  margin-top: var(--s-4);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.look-list li {
  display: grid;
  grid-template-columns: 32px 64px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}
.look-list li .num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 13px;
  color: var(--gold-deep);
}
.look-thumb {
  width: 64px;
  height: 64px;
  background-size: cover;
  background-position: center;
}
.look-info h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 15px;
  margin: 0;
}
.look-info .price {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.curator {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--muted);
  margin-top: var(--s-4);
}

/* ---------- Instagram ---------- */
.insta .section-head {
  margin-bottom: var(--s-3);
}
.insta .eyebrow a {
  color: inherit;
  text-decoration: none;
}
.insta .eyebrow a:hover {
  opacity: 0.8;
}
.insta-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  color: var(--gold-deep);
  margin-bottom: 6px;
}
.insta-icon svg {
  width: 24px;
  height: 24px;
}

/* ---------- Testimonials ---------- */
.testimonials .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: var(--s-5);
}
.testimonial {
  text-align: center;
  padding: var(--s-3) var(--s-4);
  margin: 0;
  border-right: 1px solid var(--line);
}
.testimonial:last-child {
  border-right: 0;
}
.stars {
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 14px;
  margin-bottom: 14px;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: var(--charcoal);
  margin: 0 0 22px;
}
.testimonial figcaption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--gold-deep);
  font-family: var(--serif);
  font-weight: 500;
  font-size: 16px;
}
.cite {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Newsletter ---------- */
.newsletter {
  display: none;
  background: var(--blush);
  padding: var(--s-7) var(--gutter);
  text-align: center;
  background-image:
    radial-gradient(
      circle at 12% 60%,
      rgba(184, 153, 104, 0.07) 0,
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 30%,
      rgba(184, 153, 104, 0.07) 0,
      transparent 30%
    );
}
.newsletter .display {
  font-size: clamp(32px, 3.6vw, 52px);
  margin-bottom: 10px;
}
.newsletter .lede {
  margin: 6px auto 28px;
  color: var(--charcoal);
  font-style: italic;
}

.newsletter-form {
  display: inline-flex;
  width: 100%;
  max-width: 520px;
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.08);
}
.newsletter-form input[type="email"] {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 16px 20px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--charcoal);
  outline: none;
}
.newsletter-form input[type="email"]::placeholder {
  color: var(--muted);
}
.newsletter-form .btn {
  border-radius: 0;
  padding: 16px 26px;
}

.newsletter-consent {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.newsletter-msg {
  margin-top: 14px;
  font-size: 13px;
  font-style: italic;
  color: var(--gold-deep);
  min-height: 18px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #c9bfad;
  padding: var(--s-6) 0 var(--s-3);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-5);
  padding-top: var(--s-3);
  padding-bottom: var(--s-5);
}
.footer-mark {
  font-family: var(--serif);
  font-size: clamp(28px, 2.6vw, 34px);
  font-weight: 500;
  color: #fff;
  margin: 0 0 18px;
  letter-spacing: 0.01em;
  line-height: 1.15;
}
.footer-tag {
  font-size: 14.5px;
  line-height: 1.75;
  color: #c9bfad;
  max-width: none;
  margin: 0 0 0;
  position: relative;
  padding-bottom: 22px;
}
.footer-tag::after {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  margin-top: 20px;
  background: var(--gold);
  opacity: 0.85;
}
.footer-emails {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
  max-width: 280px;
  display: none;
}
.footer-emails__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-emails__label {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
}
.footer-emails a {
  font-size: 13.5px;
  color: #b5ab97;
  word-break: break-all;
  transition: color 0.2s;
}
.footer-emails a:hover {
  color: var(--ivory);
}
.socials {
  display: flex;
  gap: 14px;
}
.socials a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 191, 173, 0.25);
  border-radius: 50%;
  color: #c9bfad;
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s;
}
.socials a:hover {
  color: var(--ivory);
  border-color: var(--gold);
  background: rgba(184, 153, 104, 0.12);
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.24em;
  color: var(--ivory);
  text-transform: uppercase;
  margin: 6px 0 18px;
}
.footer-col li {
  margin-bottom: 10px;
}
.footer-col a {
  font-size: 14px;
  color: #b5ab97;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--ivory);
}

.footer-bottom {
  border-top: 1px solid rgba(184, 153, 104, 0.25);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12.5px;
  color: #8e8676;
}
.copy {
  margin: 0;
}
.footer-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.payments {
  display: flex;
  gap: 8px;
}
.payments span {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ivory);
}
.sep {
  color: #5e574a;
}
.locale {
  letter-spacing: 0.1em;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: var(--s-4);
  }
  .footer-grid .footer-col:nth-child(4) {
    grid-column: 2 / span 2;
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 68px;
  }
  .nav--left {
    display: none;
  }
  .icon-btn--mobile {
    display: inline-flex;
  }
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }
  .brand-mark {
    font-size: 22px;
    text-align: left;
    padding-left: 8px;
  }

  .hero {
    height: auto;
    min-height: 580px;
  }
  .hero-slide {
    align-items: flex-end;
  }
  .hero-content {
    padding: 0 60px 64px;
    text-align: left;
  }
  .hero-content .display {
    font-size: clamp(30px, 7.5vw, 38px);
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 16px;
  }
  .hero-content .btn {
    font-size: 9.5px;
    padding: 11px 18px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .product-price {
    font-size: 11px;
    letter-spacing: 0.08em;
  }
  .product-meta {
    font-size: 8.5px;
    letter-spacing: 0.14em;
    margin-bottom: 6px;
  }
  .product-detail__price {
    font-size: 16px;
  }
  .product-detail__info > .eyebrow {
    font-size: 9px;
    letter-spacing: 0.14em;
  }
  #newArrivalsGrid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .testimonials {
    display: none;
  }
  .collection-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .bridal-banner {
    grid-template-columns: 1fr;
  }
  .bridal-banner__image {
    min-height: 380px;
  }
  .shop-look {
    grid-template-columns: 1fr;
  }
  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .testimonial {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .testimonial:last-child {
    border-bottom: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid .footer-col:nth-child(4) {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .section {
    padding: var(--s-6) 0;
  }
  .display {
    font-size: 32px;
  }
  .hero-content {
    padding: 0 20px 45px;
  }
  .hero-content .display {
    font-size: 32px;
  }
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
  .insta-grid {
    grid-template-columns: 1fr 1fr;
  }
  .brand-mark .logo {
    width: 69px;
    height: 69px;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form .btn {
    width: 100%;
  }
  .announcement p {
    font-size: 11px;
  }
  .nav--right .btn--header {
    padding: 10px 18px;
    font-size: 9.5px;
    letter-spacing: 0.2em;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- Subtle reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Inner pages — page hero ---------- */
.page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
  color: var(--ivory);
  overflow: hidden;
}
.page-hero--image,
.page-hero--shop,
.page-hero--about,
.page-hero--contact {
  background-size: cover;
  background-position: center;
}
.page-hero--about {
  background-position: left 17%;
}
.page-hero--image::before,
.page-hero--shop::before,
.page-hero--about::before,
.page-hero--contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.35) 0%,
    rgba(10, 10, 10, 0.72) 100%
  );
}
.page-hero--shop {
  background-color: var(--charcoal);
}
.page-hero--contact {
  background-color: #f3ece0;
  background-position: right center;
  color: #1a1a1a;
  align-items: center;
}
.page-hero--contact::before {
  background: none;
}
.page-hero__inner--contact {
  max-width: var(--container);
  padding-top: var(--s-5);
  padding-bottom: var(--s-5);
}
.page-hero--contact .page-hero__eyebrow {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: clamp(16px, 1.6vw, 20px);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #ad946d;
}
.page-hero--contact .page-hero__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #111;
}
.page-hero--contact .page-hero__rule {
  display: block;
  width: 48px;
  height: 1px;
  margin: 16px 0 18px;
  background: #ad946d;
}
.page-hero--contact .page-hero__lede {
  margin: 0;
  max-width: 28ch;
  font-family: var(--serif);
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 400;
  line-height: 1.55;
  color: #2a2a2a;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--s-6) var(--gutter) var(--s-5);
}
.page-hero__inner .display {
  color: var(--ivory);
  margin: 0 0 12px;
  font-size: clamp(36px, 5vw, 56px);
}
.page-hero__inner .lede {
  max-width: 560px;
  color: rgba(248, 244, 238, 0.82);
  margin: 0;
}
.page-hero--about .page-hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ivory);
  margin: 0 0 8px;
}
.page-hero__inner--about .ornament {
  display: block;
  margin: 14px 0 18px;
}
.page-hero__lead {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 3.2vw, 34px);
  line-height: 1.35;
  color: rgba(248, 244, 238, 0.95);
  max-width: 34ch;
  margin: 0 0 14px;
}
.page-hero__sub {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.55;
  color: rgba(248, 244, 238, 0.82);
  max-width: 42ch;
  margin: 0 0 8px;
}

/* ---------- Shop listing ---------- */
.shop-toolbar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-5);
}
.shop-count {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.shop-filters__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.shop-filter {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--charcoal);
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}
.shop-filter:hover {
  border-color: var(--charcoal);
}
.shop-filter.is-active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: #fff;
}
.shop-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  padding: var(--s-6) 0;
  font-family: var(--serif);
  font-size: 22px;
}
.shop-section .product-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* ---------- Product detail ---------- */
.product-detail {
  padding: var(--s-6) 0 var(--s-7);
  background: var(--ivory);
}
.product-detail__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--s-6);
  align-items: start;
}
.product-detail__gallery {
  position: relative;
}
.product-slider {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #fff;
}
.product-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.product-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.product-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}
.product-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.product-thumb {
  width: 72px;
  height: 90px;
  padding: 0;
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.65;
  transition:
    opacity 0.25s ease,
    border-color 0.25s ease;
}
.product-thumb.is-active,
.product-thumb:hover {
  opacity: 1;
  border-color: var(--gold-deep);
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail__info {
  padding: var(--s-2) 0;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.product-detail__info .display {
  font-size: clamp(30px, 3.5vw, 46px);
  margin: 10px 0 14px;
}
.product-detail__designer {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 20px;
}
.product-detail__price {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 0 0 20px;
  line-height: 1.35;
}
.product-detail__info > .eyebrow {
  font-size: 10px;
  letter-spacing: 0.18em;
  margin-bottom: 10px;
}
.product-detail__desc {
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 var(--s-3);
  max-width: 46ch;
}
.product-sections {
  max-width: 46ch;
  margin: 4px 0 28px;
  border-top: 1px solid var(--line);
}
.product-block {
  margin: 0;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.product-block[hidden] {
  display: none !important;
  padding: 0;
  border: 0;
}
.product-sections > .product-block:last-child {
  border-bottom: 0;
  padding-bottom: 4px;
}
.product-block__heading {
  margin: 0 0 12px;
  padding-left: 12px;
  border-left: 2px solid var(--gold-deep);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  line-height: 1.2;
}
.product-block__text {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 14px;
}
.product-block__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-block__list li {
  position: relative;
  padding-left: 14px;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}
.product-block__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-deep);
  opacity: 0.7;
}
.product-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.product-size {
  min-width: 46px;
  height: 46px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.product-size:hover {
  border-color: var(--charcoal);
}
.product-size.is-active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--ivory);
}
.product-size--custom {
  min-width: auto;
  padding: 0 16px;
  letter-spacing: 0.1em;
}
.product-care {
  margin: 0 0 var(--s-4);
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  max-width: 46ch;
}
.product-care__heading {
  margin: 0 0 12px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.product-care__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-care__list li {
  position: relative;
  padding-left: 14px;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}
.product-care__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-deep);
  opacity: 0.7;
}
.product-detail__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.product-detail__actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 240px;
  padding: 16px 40px;
  letter-spacing: 0.2em;
}
.product-not-found {
  text-align: center;
  padding: var(--s-8) 0;
}
.product-not-found .display {
  margin-bottom: var(--s-3);
}
.breadcrumb {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--s-4);
}
.breadcrumb a {
  color: var(--muted);
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--gold-deep);
}
.breadcrumb span {
  margin: 0 8px;
  opacity: 0.5;
}

/* ---------- About page ---------- */
.about-story {
  max-width: 720px;
  margin: 0 auto var(--s-6);
  text-align: center;
}
.about-story .lede {
  margin-top: var(--s-3);
}
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
  margin-top: 0;
}
.promise-section__head {
  margin-bottom: var(--s-4);
}
.promise-section__head .ornament {
  margin: 14px auto 0;
}
.about-promise-intro {
  max-width: 580px;
  margin: var(--s-3) auto 0;
  text-align: center;
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
}
.about-value {
  position: relative;
  text-align: center;
  padding: var(--s-4) var(--s-3) var(--s-4);
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.about-value::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(184, 153, 104, 0.06) 0%,
    transparent 55%
  );
  pointer-events: none;
}
.about-value:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(26, 26, 26, 0.07);
  border-color: var(--gold);
}
.about-value__num {
  position: absolute;
  top: 12px;
  right: 16px;
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
  color: var(--sand);
  pointer-events: none;
  user-select: none;
}
.about-value__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--s-2);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-deep);
  background: var(--ivory);
  position: relative;
  z-index: 1;
}
.about-value__icon svg {
  width: 22px;
  height: 22px;
}
.about-value h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  margin: 0 0 12px;
  position: relative;
  z-index: 1;
}
.about-value p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--s-6);
  align-items: start;
}
.contact-card {
  padding: var(--s-4);
  background: #fff;
  border: 1px solid var(--line);
}
.contact-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 var(--s-3);
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-list strong {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.contact-list a,
.contact-list span {
  font-size: 16px;
  color: var(--charcoal);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  font-family: var(--sans);
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--charcoal);
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-form-msg {
  font-size: 14px;
  margin: 0;
  min-height: 1.4em;
}

@media (max-width: 1100px) {
  .shop-section .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-detail__grid {
    gap: var(--s-5);
  }
}

@media (max-width: 900px) {
  .shop-toolbar {
    flex-direction: column;
    align-items: center;
  }
  .shop-filters {
    width: 100%;
  }
  .product-detail__grid {
    grid-template-columns: 1fr;
    gap: var(--s-4);
  }
  .product-detail__info {
    position: static;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-values {
    grid-template-columns: 1fr;
    gap: var(--s-2);
  }
  .about-value__num {
    font-size: 36px;
  }
}

@media (max-width: 560px) {
  .shop-section .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .shop-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .shop-filters__inner {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }
  .shop-filter {
    flex-shrink: 0;
  }
  .page-hero {
    min-height: 260px;
  }
  .page-hero--contact {
    min-height: 280px;
    background-position: 95% center;
  }
  /* Our Story banner text — mobile typography only */
  .page-hero--about {
    min-height: 440px;
    align-items: center;
  }
  .page-hero--about::before {
    background: linear-gradient(
      100deg,
      rgba(243, 236, 224, 0.94) 0%,
      rgba(243, 236, 224, 0.88) 38%,
      rgba(243, 236, 224, 0.35) 58%,
      transparent 72%
    );
  }
  .page-hero--about .page-hero__inner--about {
    padding: var(--s-5) 24px;
    max-width: 100%;
    text-align: left;
  }
  .page-hero--about {
    background-position: 72% center;
  }
  .page-hero--about .page-hero__title {
    font-family: var(--serif);
    font-size: clamp(26px, 7vw, 32px);
    font-weight: 500;
    color: #5a4636;
    margin: 0 0 8px;
  }
  .page-hero--about .page-hero__lead {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(20px, 5.8vw, 26px);
    line-height: 1.25;
    color: #5a4636;
    max-width: 12ch;
    margin: 0 0 14px;
  }
  .page-hero--about .page-hero__sub {
    font-family: var(--sans);
    font-weight: 400;
    font-size: clamp(12px, 3.4vw, 14px);
    line-height: 1.45;
    color: #5a4636;
    max-width: 18ch;
    margin: 0;
  }
  .page-hero--about .page-hero__inner--about .ornament,
  .page-hero--about .page-hero__inner--about .ornament--light {
    margin: 10px 0 14px;
    width: 64px;
    background: #c4a574;
  }
  .page-hero--about .page-hero__inner--about .ornament::after,
  .page-hero--about .page-hero__inner--about .ornament--light::after {
    background: #c4a574;
  }
  .product-detail__actions .btn {
    width: 100%;
    min-width: 0;
  }
  .product-price {
    font-size: 10px;
    letter-spacing: 0.06em;
  }
  .product-meta {
    font-size: 8px;
    letter-spacing: 0.12em;
    margin-bottom: 5px;
  }
  .product-detail__price {
    font-size: 14px;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
  }
  .product-detail__info > .eyebrow {
    font-size: 8.5px;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
  }
}

/* ---------- Nav bank trigger ---------- */
.nav-bank-trigger {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 6px 0;
  position: relative;
  line-height: 1.6;
  cursor: pointer;
}
.nav-bank-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.nav-bank-trigger:hover::after {
  transform: scaleX(1);
}
.mobile-bank-trigger {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: none;
  padding: 0;
}
.mobile-bank-trigger::after {
  display: none;
}

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.42);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.whatsapp-fab svg {
  width: 28px;
  height: 28px;
}
.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
}

/* ---------- Bank modal ---------- */
.bank-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gutter);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.bank-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.bank-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.62);
  backdrop-filter: blur(4px);
}
.bank-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 500px;
  overflow: visible;
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: var(--s-4) var(--s-4) var(--s-3);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
  transform: translateY(16px);
  transition: transform 0.35s ease;
}
.bank-modal.is-open .bank-modal__dialog {
  transform: translateY(0);
}
.bank-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  border-radius: 50%;
  transition:
    background 0.2s,
    color 0.2s;
}
.bank-modal__close:hover {
  background: var(--sand);
  color: var(--charcoal);
}
.bank-modal__header {
  text-align: center;
  margin-bottom: var(--s-3);
  padding-right: 28px;
}
.bank-modal__header .ornament {
  margin: 6px 0 0;
}
.bank-modal__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 4vw, 34px);
  margin: 8px 0 4px;
  color: var(--charcoal);
}
.bank-modal__subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.bank-modal__details {
  margin: 0 0 var(--s-3);
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--line);
  background: #fff;
}
.bank-modal__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
  padding: 11px 16px;
  border-bottom: 1px solid var(--line);
}
.bank-modal__row:last-child {
  border-bottom: 0;
}
.bank-modal__row dt {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin: 4px 0 0 0;
}
.bank-modal__row dd {
  margin: 0;
  font-size: 15px;
  color: var(--charcoal);
  font-weight: 500;
}
.bank-modal__row--highlight {
  background: var(--sand);
}
.bank-modal__copy {
  cursor: pointer;
  position: relative;
  display: inline-block;
}
.bank-modal__copy::after {
  content: "Click to copy";
  display: block;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 400;
  margin-top: 4px;
}
.bank-modal__copy.is-copied::after {
  content: "Copied!";
}
.bank-modal__note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 var(--s-3);
  text-align: center;
}
.bank-modal__whatsapp {
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bank-modal__dialog--policy {
  max-width: 520px;
}
.bank-modal__policy {
  margin: 0 0 var(--s-3);
  border: 1px solid var(--line);
  background: #fff;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bank-modal__policy p {
  margin: 0;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.7;
  color: var(--charcoal);
}
.bank-modal__policy strong {
  font-weight: 600;
  color: var(--charcoal);
}

/* ---------- About page — modern layout ---------- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  align-items: center;
  margin-bottom: var(--s-6);
}
.about-split__image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--sand);
}
.about-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-split__content .display {
  font-size: clamp(30px, 3.5vw, 48px);
  margin: 12px 0 18px;
}
.about-split--reverse {
  direction: rtl;
}
.about-split--reverse > * {
  direction: ltr;
}
.about-split__content .btn {
  margin-top: var(--s-4);
}
.about-heritage-section {
  padding-bottom: var(--s-4);
}
.about-atelier {
  position: relative;
  min-height: 550px;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  color: var(--ivory);
  padding: var(--s-6) var(--gutter);
}
/* dark overlay so cream text stays readable */
.about-atelier::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.48);
}
.about-atelier__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  width: 100%;
}
.client-diaries {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: var(--s-6) 0;
  --diaries-serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --diaries-script: "Great Vibes", "Cormorant Garamond", cursive;
  --diaries-cream: #f3e6d0;
}
.client-diaries__ornament {
  width: min(92%, 440px);
  max-width: 440px;
  height: auto;
  margin: 0 0 10px;
  display: block;
  /* black bg drops out; white lines tint to cream #f3e6d0 */
  mix-blend-mode: screen;
  filter: sepia(0.35) saturate(1.1) brightness(1.08);
}
.client-diaries__ornament--flip {
  margin: 10px 0 0;
  transform: scaleY(-1);
}
.client-diaries__title {
  margin: 0 0 14px;
  font-family: var(--diaries-serif);
  font-weight: 500;
  font-style: normal;
  font-size: clamp(28px, 4.8vw, 50px);
  /* letter-spacing: 0.32em; */
  text-indent: 0.32em;
  text-transform: uppercase;
  color: var(--diaries-cream);
  line-height: 1.05;
  -webkit-font-smoothing: antialiased;
}
.client-diaries__script {
  margin: 0;
  font-family: var(--diaries-script);
  font-size: clamp(26px, 3.8vw, 40px);
  font-weight: 400;
  font-style: normal;
  color: var(--diaries-cream);
  line-height: 1.15;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 900px) {
  .client-diaries__ornament {
    width: min(88%, 360px);
  }
  .client-diaries__title {
    font-family: var(--diaries-serif);
    font-size: 28px;
    letter-spacing: 0.28em;
    text-indent: 0.28em;
    margin-bottom: 12px;
  }
  .client-diaries__script {
    font-family: var(--diaries-script);
    font-size: 26px;
  }
}
@media (max-width: 560px) {
  .client-diaries__ornament {
    width: min(90%, 175px);
  }
  .client-diaries__title {
    font-family: var(--diaries-serif);
    font-size: 36px;
    letter-spacing: 0;
    text-indent: 0.24em;
    margin-bottom: 10px;
  }
  .client-diaries__script {
    font-family: var(--diaries-script);
    font-size: 25px;
  }
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  margin-top: var(--s-6);
  text-align: center;
}
.about-stat {
  padding: var(--s-4) var(--s-2);
  border: 1px solid var(--line);
  background: #fff;
}
.about-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  color: var(--gold-deep);
  margin-bottom: 6px;
}
.about-stat span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Contact page — modern layout ---------- */
.contact-page-wrap {
  padding: var(--s-6) 0 48px;
}
.section.contact-page-wrap {
  padding-bottom: 48px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: var(--s-5);
  align-items: start;
}
.contact-visual {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--sand);
}
.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-visual__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: var(--s-4);
  background: linear-gradient(transparent, rgba(10, 10, 10, 0.75));
  color: var(--ivory);
}
.contact-visual__caption h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 6px;
}
.contact-visual__caption p {
  margin: 0;
  font-size: 13px;
  opacity: 0.9;
}
.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-info-item {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
}
.contact-info-item strong {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 500;
}
.contact-info-item span,
.contact-info-item a {
  font-size: 15px;
  color: var(--charcoal);
}
.contact-form-card {
  height: 100%;
  padding: 36px 32px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 36px rgba(26, 26, 26, 0.04);
}
.contact-form-card h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  margin: 8px 0 12px;
  color: var(--charcoal);
}
.contact-whatsapp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 4px;
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}
.contact-whatsapp-cta:hover {
  background: #1fb855;
  border-color: #1fb855;
  color: #fff;
}
.contact-whatsapp-cta svg {
  width: 18px;
  height: 18px;
}

.contact-map-wrap {
  width: 100%;
  line-height: 0;
  background: var(--sand);
}
.contact-map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  filter: grayscale(12%);
}
.contact-map-section {
  background: var(--ivory);
  padding-top: 0;
}
.contact-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.contact-intro__eyebrow {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: clamp(16px, 1.6vw, 20px);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #ad946d;
}
.contact-intro__title {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(27px, 3.75vw, 39px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #111;
}
.contact-intro__lede {
  max-width: 46ch;
  margin: 18px auto 0;
  font-family: var(--serif);
  font-size: clamp(15px, 1.5vw, 17px);
  font-style: italic;
  line-height: 1.7;
  color: var(--muted);
}
.contact-channels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}
.contact-channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 42px 28px 36px;
  background: #fff;
  border: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  min-height: 260px;
  justify-content: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.contact-channel:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(26, 26, 26, 0.08);
  border-color: var(--gold);
}
.contact-channel__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(184, 153, 104, 0.4);
  background: var(--ivory);
  color: var(--gold-deep);
}
.contact-channel__icon svg {
  width: 24px;
  height: 24px;
}
.contact-channel--whatsapp .contact-channel__icon {
  color: #1fb855;
  border-color: rgba(37, 211, 102, 0.35);
  background: rgba(37, 211, 102, 0.08);
}
.contact-channel--instagram .contact-channel__icon {
  color: var(--gold-deep);
  border-color: rgba(184, 153, 104, 0.45);
  background: rgba(184, 153, 104, 0.1);
}
.contact-channel__label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9a8b74;
  margin-bottom: 10px;
}
.contact-channel__value {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 10px;
  word-break: break-word;
}
.contact-channel__hint {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}
.contact-channel.contact-instagram-card {
  padding: 42px 28px 36px;
  background: #fff;
  min-height: 260px;
}
.contact-channel .contact-instagram-card__handle {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--charcoal);
  word-break: break-word;
}

@media (max-width: 900px) {
  .contact-channels {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .contact-page-wrap {
    padding-bottom: 40px;
  }
  .contact-map-wrap iframe {
    height: 300px;
  }
}

@media (max-width: 900px) {
  .about-split,
  .about-split--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .about-stats {
    grid-template-columns: 1fr;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-info-cards {
    grid-template-columns: 1fr;
  }
  .bank-modal__row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .whatsapp-fab {
    right: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
  }
  .currency-fab {
    right: 16px;
    bottom: 78px;
    min-width: 96px;
    height: 42px;
    padding: 0 10px;
  }
  .currency-fab__code {
    font-size: 11px;
  }
}

/* ---------- Currency switcher ---------- */
.currency-fab {
  position: fixed;
  right: 22px;
  bottom: 88px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 108px;
  height: 44px;
  padding: 0 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 4px 18px rgba(26, 26, 26, 0.1);
  cursor: pointer;
  font-family: var(--sans);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.currency-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.12);
  border-color: var(--gold);
}
.currency-fab__flag {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}
.currency-fab__code {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--charcoal);
}
.currency-fab__chevron {
  width: 14px;
  height: 14px;
  margin-left: auto;
  color: var(--muted);
}

.currency-drawer {
  position: fixed;
  inset: 0;
  z-index: 110;
  pointer-events: none;
  visibility: hidden;
}
.currency-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}
.currency-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.45);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.currency-drawer.is-open .currency-drawer__overlay {
  opacity: 1;
}
.currency-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, 92vw);
  height: 100%;
  background: var(--ivory);
  border-left: 1px solid var(--line);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
}
.currency-drawer.is-open .currency-drawer__panel {
  transform: translateX(0);
}
.currency-drawer__header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: var(--s-4) var(--s-3);
  border-bottom: 1px solid var(--line);
}
.currency-drawer__header h2 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0;
  color: var(--charcoal);
}
.currency-drawer__close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  border-radius: 50%;
  transition:
    background 0.2s,
    color 0.2s;
}
.currency-drawer__close:hover {
  background: var(--sand);
  color: var(--charcoal);
}
.currency-drawer__list {
  list-style: none;
  margin: 0;
  padding: var(--s-2) 0;
  overflow-y: auto;
}
.currency-drawer__list li {
  border-bottom: 1px solid var(--line);
}
.currency-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px var(--s-4);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--sans);
  text-align: left;
  transition: background 0.2s ease;
}
.currency-option:hover {
  background: var(--sand);
}
.currency-option.is-active {
  background: rgba(184, 153, 104, 0.12);
}
.currency-option__flag {
  width: 32px;
  height: 22px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}
.currency-option__code {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--charcoal);
}
.currency-option__check {
  margin-left: auto;
  color: var(--gold-deep);
  font-size: 16px;
  font-weight: 600;
}
.currency-drawer__status {
  margin: 0;
  padding: 14px var(--s-4) var(--s-3);
  border-top: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-align: center;
  color: var(--muted);
  background: #fff;
}
.currency-drawer__status.is-offline {
  color: #9c3a3a;
}

/* ---------- Disclaimer modal ---------- */
.disclaimer-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gutter);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.disclaimer-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.disclaimer-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(3px);
}
.disclaimer-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  max-height: min(88vh, 720px);
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px 28px 22px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  transform: translateY(14px);
  transition: transform 0.35s ease;
}
.disclaimer-modal.is-open .disclaimer-modal__dialog {
  transform: translateY(0);
}
.disclaimer-modal__header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 22px;
  padding-bottom: 4px;
}
.disclaimer-modal__title {
  margin: 0;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.disclaimer-modal__close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  border-radius: 50%;
  transition:
    background 0.2s,
    color 0.2s;
}
.disclaimer-modal__close svg {
  width: 20px;
  height: 20px;
}
.disclaimer-modal__close:hover {
  background: var(--sand);
  color: var(--charcoal);
}

.disclaimer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.disclaimer-list__item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 16px 0;
}
.disclaimer-list__item--alert {
  margin-top: 8px;
  padding-top: 22px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.disclaimer-list__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f3ebe0;
  color: var(--charcoal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.disclaimer-list__icon::after {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  right: -10px;
  width: 1px;
  background: rgba(0, 0, 0, 0.12);
}
.disclaimer-list__icon svg {
  width: 28px;
  height: 28px;
}
.disclaimer-list__item p {
  margin: 0;
  padding-top: 4px;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.65;
  color: var(--charcoal);
  font-weight: 400;
}
.disclaimer-list__item--alert p {
  font-weight: 600;
}
.disclaimer-list__item--alert strong {
  font-weight: 600;
}

.product-disclaimer-hint {
  margin: 0;
}
.product-disclaimer-hint button {
  background: none;
  border: 0;
  padding: 0;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color 0.2s;
}
.product-disclaimer-hint button:hover {
  color: var(--charcoal);
}

@media (max-width: 600px) {
  .disclaimer-modal__dialog {
    padding: 22px 18px 16px;
  }
  .disclaimer-list__item {
    gap: 14px;
    padding: 14px 0;
  }
  .disclaimer-list__icon {
    width: 48px;
    height: 48px;
  }
  .disclaimer-list__icon svg {
    width: 24px;
    height: 24px;
  }
  .disclaimer-list__icon::after {
    right: -8px;
  }
  .disclaimer-list__item p {
    font-size: 13px;
  }
  .bank-modal__policy {
    padding: 16px 16px;
  }
  .bank-modal__policy p {
    font-size: 13px;
  }
  .page-hero--shop {
    background-position: center 30%;
  }
}
