/* ═══════════════════════════════════════════════════════════════
   SCENSORA · PAGE-SPECIFIC STYLES
   ───────────────────────────────────────────────────────────────
   Styles that only apply to certain pages (product mockups,
   scent grids, course cards, etc). Loaded after components.css.
═══════════════════════════════════════════════════════════════ */

/* ── PRODUCT MOCKUP (hero visual placeholders) ──── */
.mock { display: flex; align-items: flex-end; gap: 16px; }
.mock__bottle {
  width: 80px; height: 148px;
  background: linear-gradient(160deg, rgba(255,255,255,.55) 0%, rgba(210,190,140,.7) 40%, rgba(170,140,90,.5) 100%);
  border: 1px solid rgba(255,255,255,.5); border-radius: 5px 5px 3px 3px;
  position: relative;
  box-shadow: 6px 12px 32px rgba(0,0,0,.18), inset 2px 0 10px rgba(255,255,255,.3);
}
.mock__bottle::before {
  content: ''; position: absolute; top: -24px; left: 50%; transform: translateX(-50%);
  width: 22px; height: 26px;
  background: linear-gradient(180deg, var(--color-gold) 0%, #8B6218 100%);
  border-radius: 3px 3px 0 0; box-shadow: 2px 0 6px rgba(0,0,0,.2);
}
.mock__plinth {
  width: 110px; height: 20px;
  background: linear-gradient(180deg, #C8B89A 0%, #A89070 100%);
  border-radius: 3px; margin-top: -4px;
}
.mock__box {
  width: 90px; height: 130px;
  background: linear-gradient(160deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 3px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  box-shadow: 4px 8px 24px rgba(0,0,0,.3);
}
.mock__box-brand { font-size: 7px; font-weight: 700; letter-spacing: .2em; color: var(--color-gold); }
.mock__passport {
  width: 70px; height: 100px;
  background: var(--color-white); border-radius: 3px;
  display: flex; flex-direction: column; align-items: center; padding: 10px 8px;
  box-shadow: 2px 4px 12px rgba(0,0,0,.12);
  font-size: 6px; font-weight: 700; letter-spacing: .1em; color: var(--text-muted); text-align: center;
}

/* ── HERO VISUAL backgrounds (swap with real photos later) ── */
.bg-linen    { background: linear-gradient(135deg, #EDE4D4 0%, #D5C8A8 50%, #C4B090 100%); }
.bg-dark     { background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1308 100%); }
.bg-warm     { background: linear-gradient(135deg, #E8E0D4 0%, #D0C4B0 100%); }
.bg-amber    { background: linear-gradient(135deg, #1a1208 0%, #2d2010 100%); }
.bg-coffee   { background: linear-gradient(135deg, #2A2015 0%, #3d3020 50%, #1a1508 100%); }

/* ── SCENT BOOTH grid ───────────────────────────── */
.scent-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  padding: 40px 48px; background: var(--color-white);
}
.scent-category__title { font-size: 10px; font-weight: 700; letter-spacing: .15em; color: var(--color-red); margin-bottom: 16px; }
.scent-category__items { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.scent-swatch { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scent-swatch__circle { width: 56px; height: 56px; border-radius: 50%; border: 2px solid rgba(0,0,0,.08); }
.scent-swatch__name { font-size: 10.5px; color: var(--text-body); text-align: center; }

/* ── MINI-PROCESS row (Choose → Blend → Bottle → Take Home) ── */
.mini-steps { display: flex; align-items: flex-start; gap: 0; padding: 32px 48px; background: var(--color-cream); }
.mini-step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; position: relative; }
.mini-step:not(:last-child)::after { content: '→'; position: absolute; right: -12px; top: 20px; color: var(--color-red); font-size: 14px; }
.mini-step h4 { font-size: 9px; font-weight: 700; letter-spacing: .12em; color: var(--color-black); }
.mini-step p { font-size: 10px; color: var(--text-muted); line-height: 1.5; max-width: 110px; }

/* ── IDEAL FOR (two large cards) ────────────────── */
.ideal {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  padding: 28px 48px; background: var(--color-white); border-top: 1px solid var(--line);
}
.ideal-card { display: flex; gap: 20px; padding: 20px; border: 1px solid var(--line); }
.ideal-card__img { width: 180px; height: 160px; border-radius: 3px; flex-shrink: 0; }
.ideal-card__title { font-size: 12px; font-weight: 700; letter-spacing: .1em; color: var(--color-black); margin-bottom: 4px; }
.ideal-card__sub { font-size: 8.5px; letter-spacing: .12em; color: var(--color-gold); font-weight: 700; margin-bottom: 12px; }
.ideal-card__desc { font-size: 11px; color: var(--text-muted); margin-bottom: 10px; line-height: 1.6; }

/* ── 5/8-COLUMN feature strips (corporate, private label) ── */
.strip {
  display: grid;
  background: var(--color-cream);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.strip--5 { grid-template-columns: repeat(5, 1fr); }
.strip--8 { grid-template-columns: repeat(8, 1fr); }
.strip__item { padding: 20px 16px; border-right: 1px solid var(--line); text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.strip__item:last-child { border-right: none; }
.strip__item h4 { font-size: 8px; font-weight: 700; letter-spacing: .1em; color: var(--color-black); }
.strip__item p { font-size: 10px; color: var(--text-muted); line-height: 1.4; }
.strip__big { font-size: 28px; font-weight: 700; color: var(--color-gold); line-height: 1; font-family: var(--font-display); }

/* ── AMENITIES grid (hotel / retail) ────────────── */
.amenities { display: grid; grid-template-columns: repeat(4, 1fr); padding: 40px 48px; background: var(--color-cream); border-top: 1px solid var(--line); }
.amenity { display: flex; align-items: flex-start; gap: 14px; padding-right: 20px; }
.amenity h4 { font-size: 10px; font-weight: 700; letter-spacing: .08em; color: var(--color-black); margin-bottom: 4px; }
.amenity ul { font-size: 10.5px; color: var(--text-muted); line-height: 1.8; padding-left: 14px; list-style: disc; }
.amenity p { font-size: 9.5px; color: var(--text-muted); margin-top: 6px; line-height: 1.5; }

/* ── COURSE cards (workshops) ───────────────────── */
.courses { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); }
.course { background: var(--color-white); display: flex; }
.course__img { width: 200px; flex-shrink: 0; }
.course__body { padding: 28px 24px; display: flex; flex-direction: column; gap: 12px; }
.course__tag { font-size: 9px; font-weight: 700; letter-spacing: .15em; color: var(--color-gold); }
.course__title { font-family: var(--font-display); font-size: 26px; font-weight: 600; color: var(--color-black); line-height: 1.1; }
.course__desc { font-size: 11.5px; color: var(--text-muted); line-height: 1.6; }
.course__metas { display: flex; gap: 20px; flex-wrap: wrap; }
.course-meta { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.course-meta svg { color: var(--color-gold); }
.course-meta span { font-size: 8.5px; font-weight: 700; letter-spacing: .08em; text-align: center; }
.course-meta small { font-size: 8px; color: var(--text-muted); text-align: center; }
.course-timeline { display: flex; gap: 0; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); }
.course-tl { flex: 1; display: flex; flex-direction: column; gap: 3px; position: relative; }
.course-tl:not(:last-child)::after { content: '•'; position: absolute; right: -6px; top: 3px; color: var(--color-gold); font-size: 12px; }
.course-tl__label { font-size: 8px; font-weight: 700; color: var(--color-black); letter-spacing: .05em; }
.course-tl__desc { font-size: 8.5px; color: var(--text-muted); }

/* ── RESPONSIVE for page-specific blocks ────────── */
@media (max-width: 900px) {
  .scent-grid { grid-template-columns: 1fr; padding: 24px 20px; }
  .mini-steps { flex-direction: column; gap: 20px; padding: 24px 20px; }
  .mini-step::after { display: none; }
  .mini-step p { max-width: none; }
  .ideal { grid-template-columns: 1fr; padding: 24px 20px; }
  .ideal-card { flex-direction: column; }
  .ideal-card__img { width: 100%; height: 140px; }
  .strip--5, .strip--8 { grid-template-columns: repeat(2, 1fr); }
  .strip__item:nth-child(2n) { border-right: none; }
  .amenities { grid-template-columns: 1fr 1fr; padding: 24px 20px; }
  .amenity { padding-bottom: 20px; }
  .courses { grid-template-columns: 1fr; }
  .course { flex-direction: column; }
  .course__img { width: 100%; height: 160px; }
  .course-timeline { flex-wrap: wrap; gap: 12px; }
  .course-tl::after { display: none; }
}
@media (max-width: 600px) {
  .strip--5, .strip--8 { grid-template-columns: 1fr; }
  .strip__item { border-right: none; border-bottom: 1px solid var(--line); }
  .amenities { grid-template-columns: 1fr; }
}

/* ── When a hero has a real photo, hide the CSS placeholder mock graphics ── */
.hero__visual.has-photo > .mock,
.hero__visual.has-photo > .hero__badge { display: none; }
/* scent-discovery keeps its overlay info-cards on top of the photo */
.hero__visual.has-photo { position: relative; }
.hero__visual.has-photo::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.04); /* subtle wash so any overlay text stays legible */
}
.hero__visual.has-photo > * { position: relative; z-index: 1; }

/* Homepage hero with photo: hide the CSS bottle mock, keep the quote */
.home-hero__visual.has-photo .mock { display: none; }
.home-hero__visual.has-photo { position: relative; }
