/* ═══════════════════════════════════════════
   PRODUCTS — page-specific styles
   Shared styles live in common.css
═══════════════════════════════════════════ */
body { background: #F3EFE3; }

/* ═══════════════════════════════════════════
   SHARED BACKGROUND — hero + outer core
═══════════════════════════════════════════ */
.products-top {
  position: relative;
  background:
    linear-gradient(rgba(240, 220, 178, 0.48), rgba(240, 220, 178, 0.48)),
    url("../assets/images/products-hero.jpg") right top / 100% auto no-repeat;
}

/* Nav: cream colour + subtle shadow */
.page-products .main-nav a {
  color: var(--gold-3);
  text-shadow: 0 1px 6px rgba(20,10,3,0.55);
}
.page-products .main-nav a.active {
  color: var(--white);
  border-color: var(--white);
}

body.header-scrolled.page-products .main-nav a { color: var(--gold-1); text-shadow: none; }
body.header-scrolled.page-products .main-nav a.active { color: var(--brown); border-color: var(--brown); }

/* Dark veil behind the fixed transparent header */
.products-top::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 130px;
  background: linear-gradient(
    to bottom,
    rgba(20, 10, 3, 0.58) 0%,
    rgba(20, 10, 3, 0)   100%
  );
  pointer-events: none;
  z-index: 2;
}

/* ═══════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════ */
#products-hero {
  position: relative;
  width: 100%;
  min-height: 600px;
  overflow: hidden;
}

#products-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(232, 210, 160, 0.72) 0%,
    rgba(232, 210, 160, 0.48) 36%,
    rgba(232, 210, 160, 0.10) 58%,
    rgba(232, 210, 160, 0)    75%
  );
  pointer-events: none;
}

.products-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 148px 124px 80px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-content-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 52px;
}

.hero-left { flex: 0 0 520px; max-width: 520px; }

/* STANDARDIZED: Body — 16px */
.hero-intro-body {
  font-family: var(--font-b);
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: 0.14em;
  color: var(--brown);
  margin-bottom: 32px;
}

/* ═══════════════════════════════════════════
   INNER CORE — list + CTA
═══════════════════════════════════════════ */
/* STANDARDIZED: Label H4 — 22px */
.core-title {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: 0.12em;
  color: var(--brown);
  margin-bottom: 20px;
}

.core-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* STANDARDIZED: Body — 16px */
.core-list li {
  font-family: var(--font-b);
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  letter-spacing: 0.14em;
  color: var(--brown);
  padding-left: 18px;
  position: relative;
}

.core-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 16px;
  border-radius: 1px;
  background: var(--gold-1);
}

/* CTA — centered across full section width */
.cta-wrap {
  display: flex;
  justify-content: center;
  padding: 0;
}

.btn-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 80px;
  height: 64px;
  background: var(--gold-3);
  border-radius: 40px;
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--brown-btn);
  border: none;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.2s;
  text-decoration: none;
}

.btn-order:hover {
  background: var(--gold-1);
  color: var(--white);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   OUTER CORE — COMING SOON
═══════════════════════════════════════════ */
#outer-core {
  position: relative;
  padding: 0 0 96px;
  overflow: hidden;
}

#outer-core::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(232, 210, 160, 0.72) 0%,
    rgba(232, 210, 160, 0.48) 36%,
    rgba(232, 210, 160, 0.10) 58%,
    rgba(232, 210, 160, 0)    75%
  );
  pointer-events: none;
  z-index: 0;
}

.outer-core-inner {
  position: relative;
  z-index: 1;
}

.outer-core-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 124px;
  display: flex;
  justify-content: center;
}

.outer-core-card {
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  background: rgba(195, 160, 100, 0.48);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(196, 160, 90, 0.30);
  box-shadow: 0 8px 48px rgba(0,0,0,0.12);
  padding: 36px 44px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.outer-core-text {
  text-align: center;
}

/* STANDARDIZED: Sub-heading H3 — 26px */
.outer-core-title {
  font-family: var(--font-h);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--brown);
  margin-bottom: 12px;
}

/* STANDARDIZED: Body — 16px */
.outer-core-sub {
  font-family: var(--font-b);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.16em;
  color: rgba(96, 58, 23, 0.72);
}

.outer-core-media {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0,0,0,0.30);
  aspect-ratio: 16/9;
}

.outer-core-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.outer-core-coming-soon {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.45);
  user-select: none;
}
.outer-core-coming-soon svg {
  opacity: 0.5;
}
.outer-core-coming-soon span {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1280px) {
  .products-hero-inner,
  .outer-core-inner { padding-left: 80px; padding-right: 80px; }
}

@media (max-width: 1100px) {
  .products-hero-inner { padding-left: 60px; padding-right: 60px; }
  .outer-core-inner { padding-left: 60px; padding-right: 60px; }
  .hero-left { flex: 0 0 460px; }
}

@media (max-width: 900px) {
  .products-hero-inner { padding: 130px 40px 72px; }
  .outer-core-inner { padding: 0 40px; }
  .hero-left { flex: none; max-width: 100%; }
  .outer-core-card { padding: 40px 36px 44px; gap: 28px; }
}

@media (max-width: 680px) {
  .products-hero-inner { padding: 110px 24px 64px; }
  #products-hero::before {
    background: linear-gradient(rgba(232,210,160,0.82), rgba(232,210,160,0.72));
  }
  .outer-core-inner { padding: 0 24px; }
  .core-title { font-size: 19px; line-height: 30px; }
  .hero-content-row { margin-bottom: 40px; }
  .btn-order { height: 54px; padding: 0 56px; font-size: 18px; }
  .outer-core-card { gap: 24px; padding: 36px 28px 40px; border-radius: 16px; }
  .outer-core-title { font-size: 22px; }
}

@media (max-width: 480px) {
  .products-hero-inner { padding: 104px 20px 56px; }
  .outer-core-inner { padding: 0 20px; }
  .core-title { font-size: 17px; }
  .btn-order { padding: 0 40px; font-size: 16px; }
}
