/* ═══════════════════ PRODUCTS PAGE ═══════════════════ */

.products-hero {
  position: relative;
  height: 62vh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}
.products-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 55%;
  transform: scale(1.04);
  animation: pHeroZoom 14s ease-out forwards;
}
@keyframes pHeroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.0); }
}
.products-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,0.80) 0%,
    rgba(0,0,0,0.38) 45%,
    rgba(0,0,0,0.12) 100%);
}
.products-hero-content {
  position: relative; z-index: 2;
  padding: 0 5rem 3.5rem;
  max-width: 820px;
}
.products-breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 1.1rem;
}
.products-breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.products-breadcrumb a:hover { color: var(--gold-light); }
.products-hero-tag {
  display: inline-block;
  font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(180,130,50,0.4);
  padding: 0.35rem 0.9rem; margin-bottom: 1.1rem;
}
.products-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 300; color: #fff; line-height: 1.08;
  margin-bottom: 1rem;
}
.products-hero-title em {
  display: block; font-style: italic;
  font-size: 0.72em; color: rgba(255,255,255,0.65);
  font-weight: 300; margin-top: 0.15em;
}
.products-hero-sub {
  font-size: 0.9rem; color: rgba(255,255,255,0.6);
  line-height: 1.75; letter-spacing: 0.02em;
}

/* ─── Sticky Category Nav ─── */
.cat-nav {
  position: sticky;
  top: 72px;
  z-index: 200;
  background: var(--dark);
  border-bottom: 1px solid rgba(180,130,50,0.18);
  display: flex;
  justify-content: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cat-nav::-webkit-scrollbar { display: none; }
.cat-nav-link {
  flex-shrink: 0;
  padding: 1rem 1.8rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.cat-nav-link:hover { color: rgba(255,255,255,0.75); }
.cat-nav-link.active { color: var(--gold); border-bottom-color: var(--gold); }

/* ─── Category Sections ─── */
.products-section {
  padding: 5rem 2rem 5.5rem;
}
.products-section:nth-child(odd) { background: var(--cream-2); }
.products-section:nth-child(even) { background: var(--cream); }

.products-section-header {
  max-width: 1440px; margin: 0 auto 3rem;
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(180,130,50,0.2);
}
.products-section-label {
  font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.55rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.products-section-label::after {
  content: ''; display: block;
  width: 28px; height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
}
.products-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 300; color: var(--dark); line-height: 1.1;
}
.products-section-title em { font-style: italic; color: var(--gold); }
.products-section-count {
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-light); white-space: nowrap;
  padding-bottom: 0.3rem;
}

a.menu-item {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  cursor: pointer;
}

/* ─── Products CTA ─── */
.products-cta {
  background: var(--dark);
  text-align: center;
  padding: 6rem 2rem;
}
.products-cta-eyebrow {
  font-size: 0.65rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
}
.products-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 300; color: #fff;
  line-height: 1.12; margin-bottom: 1.2rem;
}
.products-cta-title em { font-style: italic; color: var(--gold); }
.products-cta-sub {
  font-size: 0.9rem; color: rgba(255,255,255,0.5);
  line-height: 1.8; margin-bottom: 2.2rem;
}
.products-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── Mobile ─── */
@media (max-width: 900px) {
  .cat-nav { top: 64px; }
  .products-hero-content { padding: 0 2rem 2.5rem; }
  .products-section { padding: 3.5rem 1.5rem 4rem; }
  .products-section-header { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
  .products-section-count { display: none; }
}
@media (max-width: 580px) {
  .products-hero { height: 55vh; min-height: 360px; }
  .products-hero-content { padding: 0 1.5rem 2rem; }
  .cat-nav { top: 64px; }
  .cat-nav-link { padding: 0.85rem 1.1rem; font-size: 0.65rem; }
  .products-section { padding: 3rem 1rem 3.5rem; }
  .products-cta { padding: 4rem 1.5rem; }
}
