﻿/* Fragrance Specific, Note Visuals & Collection Layouts */
.fragrance-hero-stage {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

.fragrance-stage-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: background 1.2s ease;
  pointer-events: none;
}

.bottle-showcase-container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.bottle-render-wrapper {
  position: relative;
  width: 280px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.bottle-render-wrapper svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.85));
}

.bottle-glow-halo {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.45;
  transition: background-color 1s ease, opacity 0.8s ease;
}

/* Interactive Fragrance Pyramid System (Chapter III) */
.pyramid-section {
  position: relative;
  min-height: 100vh;
  padding: 140px 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pyramid-layout-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.pyramid-interactive-tree {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.pyramid-tier-block {
  padding: 24px 32px;
  background: rgba(232, 226, 216, 0.02);
  border: 1px solid var(--border-subtle);
  transition: border-color 0.4s ease, background-color 0.4s ease, transform 0.4s var(--ease-editorial);
  position: relative;
}

.pyramid-tier-block.active, .pyramid-tier-block:hover {
  border-color: var(--color-champagne);
  background: rgba(184, 155, 94, 0.04);
  transform: translateX(10px);
}

.pyramid-tier-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.tier-name-tag {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-champagne);
}

.tier-lifespan {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--color-ivory-dim);
}

.pyramid-notes-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.note-pill-btn {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(232, 226, 216, 0.12);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--color-ivory);
  transition: all 0.3s ease;
  position: relative;
}

.note-pill-btn:hover, .note-pill-btn.active {
  background: var(--color-champagne);
  color: var(--color-obsidian);
  border-color: var(--color-champagne);
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(184, 155, 94, 0.35);
}

/* Note Details Inspector Panel */
.note-inspector-card {
  padding: 48px 44px;
  background: #0f0d0b;
  border: 1px solid var(--border-gold);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  transition: all 0.6s var(--ease-editorial);
}

.note-inspector-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-champagne);
}

.note-category-indicator {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-champagne);
  margin-bottom: 12px;
}

.note-inspect-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 16px;
}

.note-inspect-descriptors {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: var(--color-champagne);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.note-inspect-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-ivory-dim);
  margin-bottom: 32px;
}

.note-inspect-texture-box {
  width: 100%;
  height: 160px;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(184, 155, 94, 0.15) 0%, rgba(15, 13, 11, 0.9) 80%);
}

.note-texture-label {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-ivory-dim);
}

/* Digital Fragrance Gallery (Chapter IV) */
.gallery-viewport {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.gallery-scent-display {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 100%;
  gap: 60px;
  padding: 80px 0;
}

.gallery-info-pane {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gallery-scent-number {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--color-champagne);
  margin-bottom: 24px;
  letter-spacing: 0.1em;
}

.gallery-scent-name {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 1.05;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 20px;
}

.gallery-scent-meta {
  display: flex;
  gap: 28px;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-ivory-dim);
  margin-bottom: 28px;
}

.gallery-scent-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-ivory);
  max-width: 520px;
  margin-bottom: 40px;
}

.gallery-scent-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.gallery-nav-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 24px;
  z-index: 50;
}

.gallery-dot {
  width: 32px;
  height: 2px;
  background-color: var(--border-subtle);
  cursor: pointer;
  transition: all 0.4s ease;
}

.gallery-dot.active {
  background-color: var(--color-champagne);
  width: 54px;
}

/* Scent Discovery Quiz / Finder */
.finder-container {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px;
}

.finder-progress-bar {
  width: 100%;
  height: 2px;
  background-color: var(--border-subtle);
  margin-bottom: 48px;
  position: relative;
}

.finder-progress-fill {
  height: 100%;
  background-color: var(--color-champagne);
  width: 25%;
  transition: width 0.6s var(--ease-editorial);
}

.finder-question-num {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-champagne);
  margin-bottom: 20px;
}

.finder-question-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.15;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 48px;
}

.finder-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.finder-option-btn {
  padding: 28px 36px;
  background-color: rgba(232, 226, 216, 0.02);
  border: 1px solid var(--border-subtle);
  text-align: left;
  transition: all 0.4s var(--ease-editorial);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.finder-option-btn:hover {
  background-color: rgba(184, 155, 94, 0.06);
  border-color: var(--color-champagne);
  transform: translateY(-4px);
}

.option-primary-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-ivory);
}

.option-sub-text {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--color-ivory-dim);
}

.finder-result-card {
  border: 1px solid var(--border-gold);
  background-color: #0d0b09;
  padding: 60px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
