/* ============================================================
   TOUCH — The Light | Custom Stylesheet
   Stack: Bootstrap 5 + Cormorant Garamond + Jost
   ============================================================ */

/* ── 1. Design Tokens ─────────────────────────────────────── */
:root {
  --cream:            #F3F2EE;
  --cream-mid:        #EDECE8;
  --cream-dark:       #D5D4CF;
  --gold:             #B0A896;
  --gold-light:       #C4BAA8;
  --gold-dark:        #8A8278;
  --dark:             #2D2D2B;
  --dark-mid:         #484845;
  --warm-gray:        #7E7D79;
  --warm-gray-light:  #AEADA8;
  --white:            #FFFFFF;
  --border-gold:      rgba(176, 168, 150, 0.30);
  --border-gold-mid:  rgba(176, 168, 150, 0.55);

  --f-serif:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --f-sans:   'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --section-py:   72px;
  --section-py-sm: 40px;
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in:      cubic-bezier(0.55, 0, 1, 0.45);
}

/* ── 2. Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--f-sans);
  background-color: var(--cream);
  color: var(--dark);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--f-serif);
  font-weight: 400;
  line-height: 1.12;
  color: var(--dark);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
h4 { font-size: 1.2rem; font-family: var(--f-sans); font-weight: 400; }

em { font-style: italic; }

p { color: var(--warm-gray); line-height: 1.85; margin-bottom: 0; }

a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}
a:hover { color: var(--gold); }

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

/* ── 3. Announcement Bar ─────────────────────────────────── */
.announcement-bar {
  background-color: #EBEBEA;
  color: var(--dark-mid);
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 7px 16px;
  border-bottom: 1px solid #D8D7D3;
  z-index: 200;
  position: relative;
}

.announcement-bar a {
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(72, 72, 69, 0.3);
  transition: border-color 0.2s, color 0.2s;
}
.announcement-bar a:hover { color: var(--dark-mid); border-color: transparent; }

/* ── 4. Header ───────────────────────────────────────────── */
.site-header {
  background-color: var(--cream);
  border-bottom: 1px solid var(--border-gold);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled {
  background-color: rgba(243, 242, 238, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(45, 45, 43, 0.07);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 0;
}

.header-left {
  display: flex;
  align-items: center;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

/* Logo */
.site-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  gap: 6px;
  text-decoration: none;
  line-height: 1;
  transition: opacity 0.2s ease;
}
.site-logo:hover { opacity: 0.72; }

.logo__main {
  font-family: var(--f-sans);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 13px;
  color: var(--dark);
  text-transform: uppercase;
  display: block;
  transition: color 0.3s ease;
}
.logo__sub {
  font-family: var(--f-sans);
  font-size: 7px;
  font-weight: 300;
  letter-spacing: 6px;
  color: var(--warm-gray-light);
  text-transform: uppercase;
  display: block;
  transition: color 0.3s ease;
}

.footer-logo { padding: 0; }
.footer-logo .logo__main { color: var(--cream); font-size: 21px; }
.footer-logo .logo__sub  { color: var(--warm-gray); }

/* Nav */
.header-nav { display: flex; align-items: center; gap: 26px; }

.nav-link-custom {
  font-family: var(--f-sans);
  font-size: 12.5px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-mid);
  white-space: nowrap;
  transition: color 0.2s ease;
  padding-bottom: 2px;
  position: relative;
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-link-custom:hover { color: var(--dark); }
.nav-link-custom:hover::after { width: 100%; }

/* Header icons */
.header-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 6px;
  color: var(--dark);
  font-size: 19px;
  cursor: pointer;
  transition: color 0.2s ease;
  text-decoration: none;
  position: relative;
}
.header-icon-btn:hover { color: var(--gold); }

.cart-btn { position: relative; }
.cart-count {
  position: absolute;
  top: 0px;
  right: 0px;
  background: var(--gold);
  color: white;
  font-size: 9px;
  font-weight: 500;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cart-count:empty, .cart-count[data-count="0"] { display: none; }

/* ── 5. Mega Menu ────────────────────────────────────────── */
.nav-item-mega { position: relative; }

.mega-menu {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--cream);
  border: 1px solid var(--border-gold);
  box-shadow: 0 20px 60px rgba(44, 36, 32, 0.12);
  padding: 36px 0;
  min-width: 680px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.nav-item-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 0 40px;
}

.mega-menu__title {
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}

.mega-menu__list { list-style: none; padding: 0; margin: 0; }
.mega-menu__list li { margin-bottom: 8px; }
.mega-menu__list a {
  font-size: 14px;
  color: var(--dark-mid);
  transition: color 0.2s;
}
.mega-menu__list a:hover { color: var(--gold); }

.mega-menu__drop-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--dark-mid);
}
.mega-menu__drop-img {
  width: 44px;
  height: 44px;
  border-radius: 2px;
  background: linear-gradient(135deg, #E8D5B0 0%, #C0A070 100%);
  flex-shrink: 0;
}

/* ── 6. Search Overlay ───────────────────────────────────── */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(245, 240, 232, 0.97);
  backdrop-filter: blur(10px);
  z-index: 500;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-form {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border-gold-mid);
  padding-bottom: 12px;
}

.search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--f-serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--dark);
  font-style: italic;
}

.search-input::placeholder { color: var(--warm-gray-light); }

.search-submit {
  background: none;
  border: none;
  color: var(--dark);
  font-size: 22px;
  cursor: pointer;
  padding: 4px;
}

.search-close {
  position: absolute;
  top: 32px;
  right: 32px;
  background: none;
  border: none;
  color: var(--dark);
  font-size: 24px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── 7. Mobile Off-canvas ────────────────────────────────── */
.mobile-menu {
  background: var(--cream);
  border-right: 1px solid var(--border-gold);
}

.mobile-menu .offcanvas-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-gold);
}

.mobile-nav__link {
  display: block;
  font-family: var(--f-sans);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--dark);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-gold);
  text-transform: uppercase;
}

.mobile-nav__btn {
  font-family: var(--f-sans);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--dark) !important;
  background: none !important;
  box-shadow: none !important;
  text-transform: uppercase;
  padding: 14px 0;
}

.mobile-nav__sub {
  display: block;
  font-size: 14px;
  color: var(--warm-gray);
  padding: 8px 0;
}

.accordion-item { background: none; border: none; border-bottom: 1px solid var(--border-gold); }
.accordion-body { padding: 8px 0 16px 12px; }
.accordion-button::after { filter: opacity(0.5); }

/* ── 8. Buttons ──────────────────────────────────────────── */
.btn-touch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 34px;
  border: 1px solid transparent;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.btn-touch--dark {
  background: var(--dark);
  color: var(--cream);
  border-color: var(--dark);
}
.btn-touch--dark:hover {
  background: var(--dark-mid);
  color: var(--cream);
  border-color: var(--dark-mid);
}

.btn-touch--light {
  background: var(--cream);
  color: var(--dark);
  border-color: var(--cream);
}
.btn-touch--light:hover {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}

.btn-touch--outline-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 240, 232, 0.55);
}
.btn-touch--outline-light:hover {
  background: rgba(245, 240, 232, 0.12);
  color: var(--cream);
  border-color: var(--cream);
}

.btn-touch--outline {
  background: transparent;
  color: var(--dark);
  border-color: rgba(45, 45, 43, 0.35);
}
.btn-touch--outline:hover {
  background: rgba(45, 45, 43, 0.06);
  border-color: var(--dark);
}

.btn-touch--gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-touch--gold:hover {
  background: var(--gold-dark);
  color: var(--dark);
  border-color: var(--gold-dark);
}

/* ── 9. Section Shared ───────────────────────────────────── */
section { overflow: hidden; }

.section-eyebrow {
  display: block;
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 12px;
}

.section-eyebrow--light { color: rgba(245, 240, 232, 0.65); }

.section-header { margin-bottom: 36px; }

.section-desc {
  color: var(--warm-gray);
  font-size: 15px;
  max-width: 420px;
  margin: 12px auto 0;
}

.see-all-link {
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  border-bottom: 1px solid var(--border-gold-mid);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
  margin-bottom: 8px;
}
.see-all-link:hover { color: var(--gold-dark); border-color: var(--gold); }

/* ── 10. Hero ────────────────────────────────────────────── */
.hero {
  height: 100vh;
  min-height: 680px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-tanzanite-ring.jpg');
  background-image: url('../images/hero-tanzanite-ring.webp');
  background-size: cover;
  background-position: center 42%;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  /* Soft cream veil in centre — lifts text off the stone texture */
  background: radial-gradient(ellipse 75% 60% at 42% 44%,
    rgba(243, 242, 238, 0.55) 0%,
    rgba(243, 242, 238, 0.18) 55%,
    transparent 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 0 24px;
  margin-top: 4vh;
  text-align: left;
}

.hero__eyebrow {
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 12px;
  line-height: 1.9;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.3s forwards;
}

.hero__title {
  font-family: var(--f-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.06;
  color: var(--dark);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.5s forwards;
}

.hero__subtitle {
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-gray-light);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.7s forwards;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.9s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1s ease 1.4s forwards;
}

.hero__scroll span {
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray-light);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--warm-gray-light), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── 11. Drop Section ────────────────────────────────────── */
.drop-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.drop-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.drop-section__visual { position: relative; }

.drop-section__img-wrap {
  position: relative;
  overflow: hidden;
}

.drop-img-ph {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}

.drop-img-ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s var(--ease);
}
.drop-section__img-wrap:hover .drop-img-ph img { transform: scale(1.03); }

.drop-section__badge {
  position: absolute;
  top: -14px;
  left: 28px;
  background: var(--dark);
  color: var(--cream);
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 18px;
}

.drop-section__title {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.0;
  margin: 14px 0 24px;
}

.drop-section__text {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 32px;
}

.drop-section__products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 36px;
}

.drop-mini-card {
  display: block;
  text-decoration: none;
  color: var(--dark);
  transition: opacity 0.2s;
}
.drop-mini-card:hover { opacity: 0.8; }

.drop-mini-card__img {
  aspect-ratio: 3/4;
  margin-bottom: 10px;
  overflow: hidden;
  position: relative;
}

.drop-mini-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease);
}
.drop-mini-card:hover .drop-mini-card__img img { transform: scale(1.04); }

.drop-mini-card__info { display: flex; flex-direction: column; gap: 3px; }
.drop-mini-card__name { font-size: 12px; font-weight: 400; color: var(--dark); line-height: 1.4; }
.drop-mini-card__price { font-size: 12px; color: var(--gold-dark); font-weight: 400; }

/* ── 12. Categories ──────────────────────────────────────── */
.categories-section {
  padding: var(--section-py) 0;
  background: var(--cream);
}

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

.cat-card {
  position: relative;
  aspect-ratio: 3/4;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}

/* fallback colors only — real images overlay these */
.cat-card--rings    { background: #3C2A1E; }
.cat-card--pendants { background: #283040; }
.cat-card--earrings { background: #302820; }
.cat-card--bracelets{ background: #283028; }
.cat-card--other    { background: #302830; }

.cat-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
  transition: transform 0.6s var(--ease);
}
.cat-card:hover .cat-card__bg { transform: scale(1.06); }

/* Decorative texture on category cards */
.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 40% 30%, rgba(255,255,255,0.08) 0%, transparent 55%);
  z-index: 1;
  transition: opacity 0.4s ease;
}
.cat-card:hover::before { opacity: 0.5; }

.cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,18,12,0.75) 0%, transparent 55%);
  transition: opacity 0.4s ease;
  z-index: 2;
}
.cat-card:hover .cat-card__overlay { opacity: 0.6; }

.cat-card__content {
  position: relative;
  z-index: 3;
  padding: 18px 16px;
  width: 100%;
}

.cat-card__name {
  font-family: var(--f-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--cream);
  display: block;
  transition: letter-spacing 0.4s ease;
}
.cat-card:hover .cat-card__name { letter-spacing: 0.03em; }

/* ── 13. Brand Story ─────────────────────────────────────── */
.brand-story-section {
  padding: var(--section-py) 0;
  background: var(--cream-mid);
}

.brand-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.brand-story__visual {
  position: relative;
  padding-bottom: 24px;
  padding-right: 24px;
}

.brand-story__img-main {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}

.brand-story__img-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.brand-story__img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48%;
  aspect-ratio: 1;
  border: 6px solid var(--cream-mid);
  overflow: hidden;
}

.brand-story__img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-story__content { padding-left: 16px; }

.brand-story__content h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  margin: 14px 0 26px;
  line-height: 1.05;
}

.brand-story__content p { margin-bottom: 18px; }

/* ── 14. Featured Products ───────────────────────────────── */
.featured-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.product-card {
  display: block;
  text-decoration: none;
  color: var(--dark);
  cursor: pointer;
}

.product-card__img-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
}

.product-card__img {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.product-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s var(--ease);
}

.product-card:hover .product-card__img img { transform: scale(1.04); }

.product-card__actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-card:hover .product-card__actions {
  opacity: 1;
  transform: translateX(0);
}

.product-card__wishlist {
  width: 36px;
  height: 36px;
  background: rgba(245, 240, 232, 0.92);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--dark);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  backdrop-filter: blur(4px);
}
.product-card__wishlist:hover { background: var(--dark); color: var(--cream); }

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--f-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 10px;
  background: var(--dark);
  color: var(--cream);
}
.product-card__badge--gold {
  background: var(--warm-gray);
  color: var(--cream);
}

.product-card__info { padding: 0 2px; }

.product-card__meta {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--warm-gray-light);
  margin-bottom: 5px;
}

.product-card__name {
  font-family: var(--f-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 6px;
  transition: color 0.2s;
}
.product-card:hover .product-card__name { color: var(--warm-gray); }

.product-card__price {
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--dark-mid);
  display: block;
}

/* ── 15. Minerals ────────────────────────────────────────── */
.minerals-section {
  padding: var(--section-py) 0;
  background: var(--cream);
}

.mineral-card {
  display: block;
  text-decoration: none;
  color: var(--dark);
  position: relative;
  overflow: hidden;
}

.mineral-card__img {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.mineral-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease);
}
.mineral-card:hover .mineral-card__img img { transform: scale(1.05); }

.mineral-card__info {
  padding: 16px 4px 4px;
}

.mineral-card__name {
  font-family: var(--f-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 4px;
  transition: color 0.2s;
}
.mineral-card:hover .mineral-card__name { color: var(--gold-dark); }

.mineral-card__count {
  font-family: var(--f-sans);
  font-size: 12px;
  color: var(--warm-gray-light);
  font-weight: 300;
}

/* ── 16. Blog ────────────────────────────────────────────── */
.blog-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.blog-card {
  display: block;
  text-decoration: none;
  color: var(--dark);
  height: 100%;
}

.blog-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  margin-bottom: 22px;
}

.blog-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease);
}
.blog-card:hover .blog-card__img img { transform: scale(1.04); }

.blog-card__tag {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
  border-bottom: 1px solid var(--border-gold-mid);
  padding-bottom: 2px;
}

.blog-card__title {
  font-family: var(--f-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
  transition: color 0.2s;
}
.blog-card:hover .blog-card__title { color: var(--gold-dark); }

.blog-card__excerpt {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.75;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__date {
  font-size: 11px;
  color: var(--warm-gray-light);
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* ── 17. Benefits ────────────────────────────────────────── */
.benefits-section {
  padding: var(--section-py) 0;
  background: var(--cream-mid);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-gold-mid);
  font-size: 22px;
  color: var(--gold-dark);
}

.benefit-title {
  font-family: var(--f-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 10px;
}

.benefit-text {
  font-size: 13px;
  color: var(--warm-gray);
  max-width: 180px;
  margin: 0 auto;
}

/* ── 18. Newsletter ──────────────────────────────────────── */
.newsletter-section {
  background: var(--dark);
  padding: var(--section-py) 0;
}

.newsletter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.newsletter__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--cream);
  margin: 12px 0 18px;
  line-height: 1.1;
}

.newsletter__inner > .newsletter__text p {
  color: rgba(245, 240, 232, 0.55);
  font-size: 14px;
}

.newsletter__input-wrap {
  display: flex;
  border-bottom: 1px solid rgba(176, 168, 150, 0.4);
  padding-bottom: 2px;
  margin-bottom: 16px;
}

.newsletter__input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--f-sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--cream);
  padding: 12px 0;
}
.newsletter__input::placeholder { color: rgba(245, 240, 232, 0.35); }

.newsletter__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: rgba(245, 240, 232, 0.4);
  cursor: pointer;
}

.newsletter__consent input { margin-top: 3px; accent-color: var(--gold); }

.newsletter__consent a {
  color: rgba(176, 168, 150, 0.7);
  border-bottom: 1px solid rgba(176, 168, 150, 0.3);
}
.newsletter__consent a:hover { color: var(--gold-light); }

/* ── 19. Footer ──────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  border-top: 1px solid rgba(176, 168, 150, 0.15);
}

.footer-top {
  padding: 72px 0 48px;
}

.footer-logo { display: inline-block; margin-bottom: 20px; }

.footer-brand-desc {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.45);
  line-height: 1.75;
  margin-bottom: 24px;
}

.footer-socials { display: flex; gap: 14px; }

.footer-social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(176, 168, 150, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(245, 240, 232, 0.55);
  transition: border-color 0.2s, color 0.2s;
}
.footer-social-link:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.footer-col-title {
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }

.footer-contacts li { display: flex; align-items: center; }

.footer-bottom {
  border-top: 1px solid rgba(176, 168, 150, 0.12);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: rgba(245, 240, 232, 0.3);
  font-weight: 300;
}

/* ── 20. Back to Top ─────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--dark);
  border: 1px solid var(--border-gold-mid);
  color: var(--cream);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s, transform 0.3s ease;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--dark-mid); color: var(--gold-light); }

/* ── 21. Animations ──────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 0.8; transform: scaleY(1.15); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── 22. Natural Textures ─────────────────────────────────── */

/* Paper grain — universal, fixed (scrolls independently from content) */
body {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='t'><feTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='180' height='180' filter='url(%23t)' opacity='0.03'/></svg>");
  background-size: 180px 180px;
  background-attachment: fixed;
}

/* Stacking context for texture pseudo-elements */
.categories-section,
.minerals-section,
.brand-story-section,
.newsletter-section,
.site-footer {
  position: relative;
  isolation: isolate;
}

/* Linen — category grid (anisotropic: horizontal fiber bias) */
.categories-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='t'><feTurbulence type='fractalNoise' baseFrequency='0.28 0.72' numOctaves='4' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='300' height='300' filter='url(%23t)'/></svg>");
  background-size: 300px 300px;
  opacity: 0.04;
}

/* Raw stone — minerals section */
.minerals-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><filter id='t'><feTurbulence type='fractalNoise' baseFrequency='0.22' numOctaves='5' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='400' height='400' filter='url(%23t)'/></svg>");
  background-size: 400px 400px;
  opacity: 0.045;
}

/* Marble veining — brand story */
.brand-story-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='700' height='700'><filter id='t'><feTurbulence type='turbulence' baseFrequency='0.012' numOctaves='4' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='700' height='700' filter='url(%23t)'/></svg>");
  background-size: 700px 700px;
  opacity: 0.04;
}

/* Matte ceramic — newsletter (dark bg, grain reads as light speckle) */
.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='t'><feTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='200' height='200' filter='url(%23t)'/></svg>");
  background-size: 200px 200px;
  opacity: 0.06;
}

/* Stone grain — footer (dark bg) */
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='350' height='350'><filter id='t'><feTurbulence type='fractalNoise' baseFrequency='0.25' numOctaves='4' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='350' height='350' filter='url(%23t)'/></svg>");
  background-size: 350px 350px;
  opacity: 0.055;
}

/* ── 23. Fixed Bottom Navigation (mobile) ──────────────────── */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: rgba(243, 242, 238, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid #D5D4CF;
  padding: 8px 0 max(10px, env(safe-area-inset-bottom));
}

.bottom-nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: space-around;
  align-items: center;
}

.bottom-nav__item { flex: 1; }

.bottom-nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--warm-gray);
  transition: color 0.2s ease;
  padding: 4px 0;
}
.bottom-nav__link:hover,
.bottom-nav__link.active { color: var(--dark); }

.bottom-nav__link i {
  font-size: 20px;
  line-height: 1;
}

.bottom-nav__label {
  font-family: var(--f-sans);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .bottom-nav { display: block; }
  body { padding-bottom: 64px; }
}


/* ── 23b. Shop Page ─────────────────────────────────────────────────── */

/* Active nav state */
.nav-link-custom[aria-current="page"] { color: var(--dark); }
.nav-link-custom[aria-current="page"]::after { width: 100%; }

/* Breadcrumb */
.breadcrumb-touch {
  padding: 12px 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border-gold);
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--warm-gray);
}
.breadcrumb-touch a { color: var(--warm-gray); text-decoration: none; transition: color 0.2s; }
.breadcrumb-touch a:hover { color: var(--dark); }
.breadcrumb-touch .sep { margin: 0 8px; color: var(--warm-gray-light); user-select: none; }
.breadcrumb-touch .current { color: var(--dark-mid); }

/* Shop page header */
.shop-page-header { padding: 52px 0 36px; background: var(--cream); }
.shop-page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.1;
}
.shop-page-desc {
  font-size: 13px;
  font-family: var(--f-sans);
  font-weight: 300;
  color: var(--warm-gray);
  margin-top: 4px;
  margin-bottom: 0;
}

/* Category pills */
.category-pills-wrap { background: var(--cream); padding-bottom: 36px; overflow: hidden; }
.category-pills {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}
.category-pills::-webkit-scrollbar { display: none; }
.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  border: 1px solid var(--border-gold-mid);
  background: transparent;
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
}
.category-pill:hover { border-color: var(--dark-mid); color: var(--dark); }
.category-pill.active { background: var(--dark); color: var(--cream); border-color: var(--dark); }
.category-pill__count { font-size: 10px; opacity: 0.55; font-weight: 300; }

/* Shop layout */
.shop-section { padding: 0 0 var(--section-py); background: var(--cream); }
.shop-layout { display: grid; grid-template-columns: 230px 1fr; gap: 52px; align-items: start; }

/* Filter sidebar */
.filter-sidebar { position: sticky; top: 88px; }
.filter-sidebar__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-gold);
}
.filter-sidebar__label {
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
}
.filter-reset {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 300;
  color: var(--warm-gray);
  background: none;
  border: none;
  border-bottom: 1px solid var(--border-gold-mid);
  padding: 0 0 1px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
}
.filter-reset:hover { color: var(--dark); border-color: var(--dark-mid); }
.filter-group { padding: 16px 0; border-bottom: 1px solid var(--border-gold); }
.filter-group__toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  text-align: left;
  transition: color 0.2s;
}
.filter-group__toggle:hover { color: var(--warm-gray); }
.filter-group__icon {
  font-size: 14px;
  color: var(--warm-gray-light);
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
  line-height: 1;
}
.filter-group__toggle[aria-expanded="true"] .filter-group__icon { transform: rotate(45deg); }
.filter-group__body { padding-top: 14px; display: flex; flex-direction: column; gap: 9px; }
.filter-group__body[hidden] { display: none; }

/* Custom checkboxes */
.filter-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--warm-gray);
  cursor: pointer;
  transition: color 0.2s;
  user-select: none;
  line-height: 1.4;
}
.filter-check:hover { color: var(--dark); }
.filter-check input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border: 1px solid var(--cream-dark);
  background: transparent;
  flex-shrink: 0;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
  border-radius: 0;
}
.filter-check input[type="checkbox"]:hover { border-color: var(--dark-mid); }
.filter-check input[type="checkbox"]:checked {
  background-color: var(--dark);
  border-color: var(--dark);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23F3F2EE' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 10px;
}

/* Price inputs */
.price-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 10px; }
.price-input {
  width: 100%;
  background: transparent;
  border: 1px solid var(--cream-dark);
  padding: 8px 10px;
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
  -moz-appearance: textfield;
}
.price-input::-webkit-outer-spin-button,
.price-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.price-input::placeholder { color: var(--warm-gray-light); }
.price-input:focus { border-color: var(--dark-mid); }

/* Toolbar */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.shop-count { font-family: var(--f-sans); font-size: 12px; font-weight: 300; color: var(--warm-gray); letter-spacing: 0.04em; }
.toolbar-right { display: flex; align-items: center; gap: 10px; }
.sort-select {
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 1px solid var(--cream-dark);
  padding: 8px 32px 8px 12px;
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--dark);
  cursor: pointer;
  outline: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%237E7D79' stroke-width='1.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px 6px;
  transition: border-color 0.2s;
  min-width: 140px;
}
.sort-select:hover,
.sort-select:focus { border-color: var(--dark-mid); }
.btn-filter-mobile {
  display: none;
  align-items: center;
  gap: 6px;
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  border: 1px solid var(--cream-dark);
  background: transparent;
  padding: 8px 14px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn-filter-mobile:hover { border-color: var(--dark); background: rgba(45,45,43,.04); }

/* Active filter chips */
.active-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; min-height: 0; }
.active-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px 5px 12px;
  border: 1px solid var(--cream-dark);
  background: transparent;
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 300;
  color: var(--dark-mid);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  line-height: 1.4;
}
.active-filter-chip:hover { border-color: var(--dark); background: rgba(45,45,43,.04); }
.active-filter-chip__remove { font-size: 15px; line-height: 1; color: var(--warm-gray-light); transition: color 0.2s; }
.active-filter-chip:hover .active-filter-chip__remove { color: var(--dark); }

/* Products */
.product-card-item.product-hidden { display: none !important; }

/* Empty state */
.shop-empty { display: none; text-align: center; padding: 72px 0; }
.shop-empty.visible { display: block; }
.shop-empty__icon { font-size: 36px; color: var(--cream-dark); margin-bottom: 18px; display: block; }
.shop-empty__title { font-family: var(--f-serif); font-size: 1.6rem; font-weight: 400; color: var(--dark); margin-bottom: 10px; }
.shop-empty__text { font-size: 13px; color: var(--warm-gray); margin-bottom: 28px; }

/* Load more */
.load-more-wrap { text-align: center; margin-top: 52px; }
.btn-load-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 44px;
  border: 1px solid rgba(45,45,43,.35);
  background: transparent;
  color: var(--dark);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn-load-more:hover { background: var(--dark); color: var(--cream); border-color: var(--dark); }

/* Recently viewed */
.recently-viewed { padding: var(--section-py) 0; border-top: 1px solid var(--border-gold); background: var(--cream); }

/* Filter offcanvas */
.filter-offcanvas { background: var(--cream) !important; max-width: 320px; }
.filter-offcanvas .offcanvas-header { padding: 20px 24px; border-bottom: 1px solid var(--border-gold); }
.filter-offcanvas .offcanvas-title {
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
}
.filter-offcanvas .offcanvas-body { padding: 0 24px 32px; overflow-y: auto; }

/* Shop responsive */
@media (max-width: 991px) {
  .shop-layout { grid-template-columns: 1fr; }
  .filter-sidebar { display: none !important; }
  .btn-filter-mobile { display: inline-flex; }
  .shop-page-header { padding: 32px 0 20px; }
}

/* ── 24. Responsive ──────────────────────────────────────── */
@media (max-width: 1199px) {
  .categories-grid { grid-template-columns: repeat(5, 1fr); gap: 8px; }
  .drop-section__inner { gap: 52px; }
  .brand-story__inner { gap: 52px; }
  .newsletter__inner { gap: 52px; }
}

@media (max-width: 991px) {
  :root { --section-py: var(--section-py-sm); }

  /* Hero: account for sticky header + bottom nav so buttons stay visible */
  .hero {
    height: calc(100svh - 64px);
    min-height: 540px;
  }
  .hero__content { margin-top: 0; }

  /* Hero: shift right to keep ring in frame on portrait screens */
  .hero__bg { background-position: 68% 42%; }

  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-card--other { display: none; }

  .drop-section__inner { grid-template-columns: 1fr; gap: 40px; }
  .drop-section__visual { max-width: 500px; margin: 0 auto; }

  .brand-story__inner { grid-template-columns: 1fr; gap: 40px; }
  .brand-story__visual { max-width: 500px; margin: 0 auto; }

  .newsletter__inner { grid-template-columns: 1fr; gap: 36px; }

  .mega-menu { min-width: 320px; }
  .mega-menu__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-card--other { display: flex; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }

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

  .hero__title { font-size: clamp(2.5rem, 10vw, 4rem); }

  .site-logo__img { height: 52px; }

  .footer-top { padding: 52px 0 32px; }
}

@media (max-width: 575px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-card { aspect-ratio: 5/4; }   /* landscape: shorter rows, fits screen */
  .cat-card--other { display: none; }

  .hero__actions { flex-direction: row; flex-wrap: wrap; gap: 10px; }
  .btn-touch { padding: 11px 22px; font-size: 11px; }

  .announcement-bar__inner { display: flex; justify-content: center; }

  .back-to-top { bottom: 20px; right: 20px; }
}

/* ═══════════════════════════════════════════════════════════
   25. PAGE HERO (shared banner for inner pages)
═══════════════════════════════════════════════════════════ */
.page-hero {
  padding: 80px 0 64px;
  background: var(--cream-mid);
  border-bottom: 1px solid var(--border-gold);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><filter id='t'><feTurbulence type='fractalNoise' baseFrequency='0.22' numOctaves='5' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='400' height='400' filter='url(%23t)'/></svg>");
  background-size: 400px 400px;
  opacity: 0.04;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 300;
  margin: 10px 0 16px;
  line-height: 1.1;
}
.page-hero__sub {
  font-size: 14px;
  color: var(--warm-gray);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.9;
}
@media (max-width: 767px) {
  .page-hero { padding: 56px 0 44px; }
}

/* ═══════════════════════════════════════════════════════════
   26. ABOUT PAGE
═══════════════════════════════════════════════════════════ */
.about-story-section {
  padding: var(--section-py) 0;
  background: var(--white);
}
.about-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-story__img {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.about-story__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about-story__text h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  margin: 10px 0 28px;
  line-height: 1.08;
}
.about-story__text p { margin-bottom: 18px; }

.philosophy-section {
  padding: var(--section-py) 0;
  background: var(--cream);
}
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.philosophy-card {
  border: 1px solid var(--border-gold);
  padding: 40px 32px;
  background: var(--cream-mid);
  position: relative;
  overflow: hidden;
}
.philosophy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.philosophy-card:hover::before { transform: scaleX(1); }
.philosophy-card__num {
  font-family: var(--f-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.philosophy-card h4 {
  font-family: var(--f-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 14px;
}
.philosophy-card p { font-size: 14px; line-height: 1.85; }

.materials-section {
  padding: var(--section-py) 0;
  background: var(--cream-mid);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.materials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}
.material-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--border-gold-mid);
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--dark-mid);
  background: var(--cream);
  transition: border-color 0.2s, color 0.2s;
}
.material-tag:hover { border-color: var(--gold); color: var(--dark); }
.material-tag i { font-size: 14px; color: var(--gold-dark); }

@media (max-width: 991px) {
  .about-story__inner { grid-template-columns: 1fr; gap: 40px; }
  .about-story__img { max-width: 480px; margin: 0 auto; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 16px; }
  .philosophy-card { padding: 28px 24px; }
}

/* ═══════════════════════════════════════════════════════════
   27. MINERALS PAGE
═══════════════════════════════════════════════════════════ */
.minerals-page-section {
  padding: var(--section-py) 0;
  background: var(--cream);
}
.minerals-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.mineral-page-card {
  display: block;
  text-decoration: none;
  color: var(--dark);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  transition: border-color 0.3s ease;
}
.mineral-page-card:hover { border-color: var(--gold); }
.mineral-page-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.mineral-page-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease);
}
.mineral-page-card:hover .mineral-page-card__img img { transform: scale(1.05); }
.mineral-page-card__body {
  padding: 24px 24px 28px;
  background: var(--cream-mid);
}
.mineral-page-card__name {
  font-family: var(--f-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.mineral-page-card:hover .mineral-page-card__name { color: var(--gold-dark); }
.mineral-page-card__desc {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 18px;
}
.mineral-page-card__link {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border-bottom: 1px solid var(--border-gold-mid);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.mineral-page-card:hover .mineral-page-card__link { color: var(--dark); border-color: var(--dark); }

@media (max-width: 991px) {
  .minerals-page-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 575px) {
  .minerals-page-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ═══════════════════════════════════════════════════════════
   28. BLOG PAGE
═══════════════════════════════════════════════════════════ */
.blog-page-section {
  padding: var(--section-py) 0;
  background: var(--cream);
}
.blog-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 32px;
}
.blog-page-card {
  display: block;
  text-decoration: none;
  color: var(--dark);
}
.blog-page-card__img {
  aspect-ratio: 3/2;
  overflow: hidden;
  position: relative;
  margin-bottom: 22px;
}
.blog-page-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease);
}
.blog-page-card:hover .blog-page-card__img img { transform: scale(1.04); }
.blog-page-card__category {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
  border-bottom: 1px solid var(--border-gold-mid);
  padding-bottom: 2px;
}
.blog-page-card__title {
  font-family: var(--f-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.25;
  transition: color 0.2s;
}
.blog-page-card:hover .blog-page-card__title { color: var(--gold-dark); }
.blog-page-card__excerpt {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-page-card__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-sans);
  font-size: 11px;
  color: var(--warm-gray-light);
  font-weight: 300;
  letter-spacing: 0.04em;
}
.blog-page-card__meta-sep { color: var(--border-gold-mid); }

@media (max-width: 767px) {
  .blog-page-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ═══════════════════════════════════════════════════════════
   29. ARTICLE PAGE
═══════════════════════════════════════════════════════════ */
.article-hero {
  height: 60vh;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.article-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  z-index: 0;
}
.article-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(26, 18, 12, 0.80) 0%,
    rgba(26, 18, 12, 0.35) 50%,
    transparent 100%);
  z-index: 1;
}
.article-hero__content {
  position: relative;
  z-index: 2;
  padding: 48px 0;
  width: 100%;
}
.article-hero__tag {
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(243, 242, 238, 0.65);
  margin-bottom: 12px;
  display: block;
}
.article-hero__title {
  font-family: var(--f-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  max-width: 720px;
  letter-spacing: -0.01em;
}

.article-meta-bar {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-gold);
  background: var(--cream);
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: var(--f-sans);
  font-size: 12px;
  color: var(--warm-gray);
  font-weight: 300;
  letter-spacing: 0.06em;
  flex-wrap: wrap;
}
.article-meta__item { display: flex; align-items: center; gap: 6px; }
.article-meta__sep { color: var(--cream-dark); }

.article-body {
  padding: var(--section-py) 0;
  background: var(--cream);
}
.article-body__inner {
  max-width: 700px;
  margin: 0 auto;
}
.article-body__inner h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 28px;
  color: var(--dark);
}
.article-body__inner h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 400;
  margin: 48px 0 18px;
  color: var(--dark);
  line-height: 1.18;
}
.article-body__inner p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--warm-gray);
  margin-bottom: 22px;
}
.article-body__img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  margin: 40px 0;
}
.article-body__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.article-pullquote {
  border-left: 2px solid var(--gold);
  padding: 10px 0 10px 28px;
  margin: 40px 0;
}
.article-pullquote p {
  font-family: var(--f-serif);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--dark);
  line-height: 1.5;
  margin-bottom: 0;
}

.article-products-section {
  padding: var(--section-py) 0;
  background: var(--cream-mid);
  border-top: 1px solid var(--border-gold);
}
.article-related-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

/* ═══════════════════════════════════════════════════════════
   30. CONTACTS PAGE
═══════════════════════════════════════════════════════════ */
.contacts-section {
  padding: var(--section-py) 0;
  background: var(--cream);
}
.contacts-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contacts-form-label {
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm-gray);
  display: block;
  margin-bottom: 8px;
}
.contacts-input,
.contacts-select,
.contacts-textarea {
  width: 100%;
  background: var(--cream-mid);
  border: 1px solid var(--border-gold-mid);
  padding: 14px 16px;
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
  display: block;
  margin-bottom: 20px;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.contacts-input:focus,
.contacts-select:focus,
.contacts-textarea:focus { border-color: var(--gold-dark); }
.contacts-input::placeholder,
.contacts-textarea::placeholder { color: var(--warm-gray-light); }
.contacts-textarea { resize: vertical; min-height: 140px; }
.contacts-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%237E7D79' stroke-width='1.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: var(--cream-mid);
  padding-right: 36px;
}
.contacts-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--f-sans);
  font-size: 12px;
  color: var(--warm-gray);
  cursor: pointer;
  margin-bottom: 28px;
  line-height: 1.55;
}
.contacts-consent input { margin-top: 3px; accent-color: var(--dark); flex-shrink: 0; }
.contacts-consent a { color: var(--gold-dark); border-bottom: 1px solid var(--border-gold-mid); }
.contacts-consent a:hover { color: var(--dark); }

.contacts-info-block { padding-top: 8px; }
.contacts-info-title {
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
  margin-top: 32px;
}
.contacts-info-title:first-child { margin-top: 0; }
.contacts-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--dark-mid);
  margin-bottom: 12px;
  text-decoration: none;
  transition: color 0.2s;
}
.contacts-info-item:hover { color: var(--gold-dark); }
.contacts-info-item i { font-size: 17px; color: var(--gold-dark); flex-shrink: 0; width: 20px; }
.contacts-info-item.schedule {
  color: var(--warm-gray);
  font-size: 13px;
}
.contacts-divider {
  border: none;
  border-top: 1px solid var(--border-gold);
  margin: 28px 0;
}
.contacts-thank-you {
  display: none;
  text-align: center;
  padding: 48px 32px;
  border: 1px solid var(--border-gold);
  background: var(--cream-mid);
}
.contacts-thank-you.visible { display: block; }
.contacts-thank-you h3 {
  font-family: var(--f-serif);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 12px;
}
.contacts-thank-you p { font-size: 14px; }

@media (max-width: 991px) {
  .contacts-layout { grid-template-columns: 1fr; gap: 48px; }
}

/* ═══════════════════════════════════════════════════════════
   31. PRODUCT PAGE
═══════════════════════════════════════════════════════════ */
.product-page-section {
  padding: var(--section-py) 0;
  background: var(--cream);
}
.product-page-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Media column */
.product-media__main {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  margin-bottom: 12px;
}
.product-media__main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-media__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.product-media__thumb {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.product-media__thumb.active { border-color: var(--dark); }
.product-media__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease);
}
.product-media__thumb:hover img { transform: scale(1.06); }

/* Info column */
.product-info { position: sticky; top: 88px; }
.product-info__category {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-gray-light);
  text-decoration: none;
  transition: color 0.2s;
  display: inline-block;
  margin-bottom: 12px;
}
.product-info__category:hover { color: var(--gold-dark); }
.product-info h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--dark);
}
.product-info__price {
  font-family: var(--f-sans);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--dark);
  display: block;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.product-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--dark-mid);
  border: 1px solid var(--border-gold-mid);
  padding: 4px 12px;
  margin-bottom: 24px;
}
.product-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6B9E6B;
  flex-shrink: 0;
}

.product-divider {
  border: none;
  border-top: 1px solid var(--border-gold);
  margin: 20px 0 24px;
}

.product-chars { margin-bottom: 24px; }
.product-chars__row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border-gold);
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 300;
}
.product-chars__row:first-child { border-top: 1px solid var(--border-gold); }
.product-chars__key { color: var(--warm-gray-light); min-width: 110px; flex-shrink: 0; }
.product-chars__val { color: var(--dark-mid); }
.product-chars__val a { color: var(--gold-dark); border-bottom: 1px solid var(--border-gold-mid); transition: color 0.2s; }
.product-chars__val a:hover { color: var(--dark); }

.product-sizes-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 12px;
}
.product-sizes-label a {
  font-size: 10px;
  color: var(--warm-gray);
  border-bottom: 1px solid var(--border-gold-mid);
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.product-sizes-label a:hover { color: var(--gold-dark); }
.product-sizes {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.size-btn {
  width: 52px;
  height: 52px;
  border: 1px solid var(--border-gold-mid);
  background: transparent;
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--dark-mid);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.size-btn:hover { border-color: var(--dark); color: var(--dark); }
.size-btn.active { border-color: var(--dark); background: var(--dark); color: var(--cream); }

.product-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-gold-mid);
  width: fit-content;
  margin-bottom: 20px;
}
.product-qty__btn {
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  font-size: 18px;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.product-qty__btn:hover { background: var(--cream-mid); }
.product-qty__num {
  width: 48px;
  text-align: center;
  font-family: var(--f-sans);
  font-size: 15px;
  font-weight: 300;
  border-left: 1px solid var(--border-gold);
  border-right: 1px solid var(--border-gold);
  padding: 10px 0;
}
.product-actions { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }

/* Accordion */
.product-accordion { border-top: 1px solid var(--border-gold); }
.product-accordion__item { border-bottom: 1px solid var(--border-gold); }
.product-accordion__toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.product-accordion__toggle:hover { color: var(--warm-gray); }
.product-accordion__icon {
  font-size: 16px;
  color: var(--warm-gray-light);
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
}
.product-accordion__toggle[aria-expanded="true"] .product-accordion__icon { transform: rotate(45deg); }
.product-accordion__body {
  padding: 0 0 20px;
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--warm-gray);
  line-height: 1.85;
}
.product-accordion__body[hidden] { display: none; }
.product-accordion__body p { margin-bottom: 8px; color: var(--warm-gray); }
.product-accordion__body ul {
  padding-left: 18px;
  margin: 8px 0;
}
.product-accordion__body li { margin-bottom: 4px; }

.product-recs-section {
  padding: var(--section-py) 0;
  background: var(--white);
  border-top: 1px solid var(--border-gold);
}

@media (max-width: 991px) {
  .product-page-layout { grid-template-columns: 1fr; gap: 40px; }
  .product-info { position: static; }
}

/* ═══════════════════════════════════════════════════════════
   32. DROP PAGE
═══════════════════════════════════════════════════════════ */
.drop-hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.drop-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  z-index: 0;
}
.drop-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 18, 12, 0.50);
  z-index: 1;
}
.drop-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}
.drop-hero__eyebrow {
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(243, 242, 238, 0.65);
  margin-bottom: 16px;
  display: block;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.3s forwards;
}
.drop-hero__title {
  font-family: var(--f-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.0;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.5s forwards;
}
.drop-hero__sub {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(243, 242, 238, 0.55);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.7s forwards;
}

.drop-story-section {
  padding: var(--section-py) 0;
  background: var(--white);
}
.drop-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.drop-story__img {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.drop-story__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.drop-story__text h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  margin: 12px 0 24px;
  line-height: 1.08;
}
.drop-story__text p { margin-bottom: 18px; }

.drop-products-section {
  padding: var(--section-py) 0;
  background: var(--cream);
}

@media (max-width: 991px) {
  .drop-hero { height: calc(100svh - 64px); min-height: 500px; }
  .drop-story__inner { grid-template-columns: 1fr; gap: 40px; }
  .drop-story__img { max-width: 480px; margin: 0 auto; }
}

/* ═══════════════════════════════════════════════════════════
   33. DELIVERY PAGE
═══════════════════════════════════════════════════════════ */
.delivery-section {
  padding: var(--section-py) 0;
  background: var(--cream);
}
.delivery-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 52px;
}
.delivery-col-title {
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-gold);
}
.delivery-method {
  border: 1px solid var(--border-gold);
  padding: 24px 24px 22px;
  background: var(--cream-mid);
  margin-bottom: 16px;
}
.delivery-method__name {
  font-family: var(--f-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.delivery-method__name i { font-size: 18px; color: var(--gold-dark); }
.delivery-method__detail {
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--warm-gray);
  line-height: 1.75;
}
.delivery-method__badge {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--warm-gray);
  border: 1px solid var(--border-gold-mid);
  padding: 3px 10px;
  margin-top: 10px;
}
.delivery-note {
  background: var(--dark);
  color: var(--cream);
  padding: 20px 24px;
  margin-top: 28px;
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
}
.delivery-note strong { font-weight: 400; color: var(--gold-light); }

@media (max-width: 991px) {
  .delivery-layout { grid-template-columns: 1fr; gap: 48px; }
}

/* ── Cart & Checkout ─────────────────────────────────────── */

/* ---- Shared form inputs ---- */
.form-touch {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--cream-dark);
  background: transparent;
  font-family: var(--f-sans);
  font-size: 13.5px;
  font-weight: 300;
  color: var(--dark);
  padding: 10px 0;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
}
.form-touch:focus { border-bottom-color: var(--dark); }
.form-touch::placeholder { color: var(--warm-gray-light); }
.form-touch-label {
  display: block;
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 4px;
}
.form-touch-group { margin-bottom: 24px; }
select.form-touch { cursor: pointer; }

/* ---- Cart page ---- */
.cart-section { padding: var(--section-py) 0; background: var(--cream); }

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 52px;
  align-items: start;
}

.cart-heading {
  font-family: var(--f-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 4px;
}
.cart-count-label {
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--warm-gray);
  letter-spacing: 0.06em;
  margin-bottom: 36px;
}

/* Cart item row */
.cart-items { border-top: 1px solid var(--border-gold); }

.cart-item {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-gold);
}

.cart-item__img {
  width: 88px;
  height: 88px;
  overflow: hidden;
  flex-shrink: 0;
}
.cart-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cart-item__info { min-width: 0; }
.cart-item__name {
  font-family: var(--f-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
  display: block;
  transition: color .2s;
}
.cart-item__name:hover { color: var(--warm-gray); }
.cart-item__meta {
  font-family: var(--f-sans);
  font-size: 11.5px;
  font-weight: 300;
  color: var(--warm-gray);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

/* Qty stepper inline */
.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--cream-dark);
  gap: 0;
}
.qty-stepper__btn {
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--dark);
  cursor: pointer;
  transition: background .15s;
}
.qty-stepper__btn:hover { background: var(--cream-mid); }
.qty-stepper__num {
  width: 36px;
  text-align: center;
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--dark);
  border-left: 1px solid var(--cream-dark);
  border-right: 1px solid var(--cream-dark);
  height: 32px;
  line-height: 32px;
  user-select: none;
}

/* Cart item price + remove */
.cart-item__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.cart-item__price {
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--dark);
  white-space: nowrap;
}
.cart-item__remove {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--warm-gray-light);
  cursor: pointer;
  text-transform: uppercase;
  transition: color .2s;
}
.cart-item__remove:hover { color: var(--dark); }

/* Cart footer */
.cart-continue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--warm-gray);
  text-transform: uppercase;
  margin-top: 24px;
  text-decoration: none;
  transition: color .2s;
}
.cart-continue:hover { color: var(--dark); }

/* Summary card */
.cart-summary-card {
  position: sticky;
  top: 100px;
  background: var(--cream-mid);
  padding: 32px;
}

.cart-summary-title {
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-gold);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--warm-gray);
  margin-bottom: 12px;
}
.cart-summary-row--total {
  font-size: 15px;
  font-weight: 400;
  color: var(--dark);
  padding-top: 16px;
  border-top: 1px solid var(--border-gold);
  margin-top: 8px;
}
.cart-summary-note {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 300;
  color: var(--warm-gray-light);
  letter-spacing: 0.04em;
  text-align: center;
  margin-top: 14px;
}

/* Payment icons */
.payment-icons {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.payment-icon {
  height: 20px;
  opacity: 0.4;
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--warm-gray);
  border: 1px solid var(--cream-dark);
  padding: 3px 8px;
  display: flex;
  align-items: center;
}

/* Empty cart */
.cart-empty {
  display: none;
  text-align: center;
  padding: 80px 24px;
}
.cart-empty.visible { display: block; }
.cart-empty__icon { font-size: 48px; color: var(--cream-dark); margin-bottom: 20px; }
.cart-empty__title {
  font-family: var(--f-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 10px;
}
.cart-empty__text {
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--warm-gray);
  margin-bottom: 28px;
}

/* ---- Checkout page ---- */
.checkout-section { padding: var(--section-py) 0; background: var(--cream); }

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

/* Steps */
.checkout-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
}
.checkout-step {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--warm-gray-light);
  white-space: nowrap;
}
.checkout-step.active { color: var(--dark); }
.checkout-step.done { color: var(--warm-gray); }
.checkout-step__num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}
.checkout-step.active .checkout-step__num {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--cream);
}
.checkout-step.done .checkout-step__num {
  background: transparent;
  border-color: var(--warm-gray);
  color: var(--warm-gray);
}
.checkout-step__sep {
  width: 28px;
  height: 1px;
  background: var(--cream-dark);
  flex-shrink: 0;
  margin: 0 6px;
}

/* Checkout form blocks */
.checkout-block {
  margin-bottom: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border-gold);
}
.checkout-block:last-of-type { border-bottom: none; }
.checkout-block__title {
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 24px;
}

/* Delivery method radio */
.delivery-method {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.delivery-radio {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--cream-dark);
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color .2s;
}
.delivery-radio:has(input:checked) { border-color: var(--dark); }
.delivery-radio input[type="radio"] {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid var(--cream-dark);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  position: relative;
  transition: border-color .2s;
}
.delivery-radio input[type="radio"]:checked {
  border-color: var(--dark);
  border-width: 4px;
}
.delivery-radio__label {
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--dark);
  display: block;
}
.delivery-radio__sub {
  font-size: 11px;
  color: var(--warm-gray);
  letter-spacing: 0.04em;
  display: block;
  margin-top: 2px;
}
.delivery-radio__price {
  margin-left: auto;
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--warm-gray);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Payment options */
.payment-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.payment-option { border: 1px solid var(--cream-dark); padding: 14px 16px; }
.payment-option:has(input:checked) { border-color: var(--dark); }

/* Order summary sidebar */
.checkout-summary-card {
  position: sticky;
  top: 100px;
  background: var(--cream-mid);
  padding: 28px;
}
.checkout-summary-title {
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-gold);
}
.checkout-summary-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: center;
}
.checkout-summary-item__img {
  width: 56px;
  height: 56px;
  overflow: hidden;
  flex-shrink: 0;
}
.checkout-summary-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.checkout-summary-item__info { flex: 1; min-width: 0; }
.checkout-summary-item__name {
  font-family: var(--f-serif);
  font-size: 0.95rem;
  color: var(--dark);
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.checkout-summary-item__meta {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 300;
  color: var(--warm-gray);
}
.checkout-summary-item__price {
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--dark);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Checkout totals */
.checkout-totals {
  border-top: 1px solid var(--border-gold);
  padding-top: 16px;
  margin-top: 8px;
}
.checkout-total-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--f-sans);
  font-size: 12.5px;
  font-weight: 300;
  color: var(--warm-gray);
  margin-bottom: 8px;
}
.checkout-total-row--final {
  font-size: 14px;
  font-weight: 400;
  color: var(--dark);
  padding-top: 10px;
  border-top: 1px solid var(--border-gold);
  margin-top: 4px;
}

/* Success state */
.checkout-success {
  display: none;
  text-align: center;
  padding: 60px 24px;
}
.checkout-success.visible { display: block; }
.checkout-success__icon {
  width: 64px;
  height: 64px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 24px;
  color: var(--warm-gray);
}
.checkout-success__title {
  font-family: var(--f-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 12px;
}
.checkout-success__order {
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 20px;
}
.checkout-success__text {
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--warm-gray);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 991px) {
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary-card { position: static; }
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary-card { position: static; order: -1; }
  .checkout-steps { gap: 0; font-size: 10px; }
  .checkout-step__sep { width: 16px; }
}
@media (max-width: 575px) {
  .cart-item { grid-template-columns: 72px 1fr auto; gap: 12px; }
  .cart-item__img { width: 72px; height: 72px; }
  .cart-summary-card { padding: 24px 20px; }
  .checkout-steps { display: none; }
}
