/* ── FRAGRANCE PAGE ── */

/* ── SCENT MODAL ── */
.scent-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.scent-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.scent-modal {
  background: #fff;
  width: 90vw;
  max-width: 960px;
  max-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow-y: auto;
  position: relative;
  transform: translateY(24px);
  transition: transform 0.3s ease;
}
.scent-modal-overlay.active .scent-modal {
  transform: translateY(0);
}
.scent-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: rgba(0,0,0,0.4);
  z-index: 10;
  line-height: 1;
  padding: 4px 8px;
}
.scent-modal-close:hover { color: #111; }
.scent-modal-left {
  background: #f5f3ef;
  border-right: 1px solid rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  align-self: start;
  min-height: 90vh;
  overflow: hidden;
}
.scent-modal-bottle {
  width: 100%;
  height: 90vh;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.scent-modal-right {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.scent-modal-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.scent-modal-tag {
  font-family: 'Space Mono', monospace;
  font-size: 8px;
  letter-spacing: 3px;
  color: rgba(0,0,0,0.35);
  text-transform: uppercase;
}
.scent-modal-price {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.scent-modal-name {
  font-family: 'Jost', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
  margin: 0;
}
.scent-modal-stars {
  font-size: 14px;
  color: #111;
}
.scent-modal-stars span {
  font-size: 11px;
  color: rgba(0,0,0,0.4);
  margin-left: 6px;
  font-family: 'Space Mono', monospace;
}
.scent-modal-desc {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(0,0,0,0.6);
  margin: 0;
}
.scent-modal-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.scent-note-pill {
  font-family: 'Space Mono', monospace;
  font-size: 8px;
  letter-spacing: 2px;
  padding: 5px 10px;
  border: 1px solid rgba(0,0,0,0.15);
  color: rgba(0,0,0,0.5);
}
.scent-modal-mood-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.scent-modal-mood {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.scent-modal-mood-caption {
  font-family: 'Space Mono', monospace;
  font-size: 8.5px;
  letter-spacing: 1px;
  line-height: 1.8;
  color: rgba(0,0,0,0.38);
  margin: 0;
}
.scent-modal-atc {
  background: #111;
  color: #fff;
  border: none;
  padding: 16px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
  margin-top: auto;
}
.scent-modal-atc:hover { background: #333; }

/* ── PHOTO HERO ── */
.frag-photo-hero {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: #f0ece6;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  display: flex;
}
.frag-photo-hero-left {
  flex: 0 0 42%;
  overflow: hidden;
}
.frag-photo-hero-right {
  flex: 1;
  overflow: hidden;
}
.frag-photo-hero-panel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.frag-photo-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 48px;
  background: linear-gradient(to top, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0.18) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.frag-photo-hero-tag {
  font-family: 'Space Mono', monospace;
  font-size: 8px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
.frag-photo-hero-title {
  font-family: 'Jost', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 5vw, 64px);
  letter-spacing: -2px;
  color: #fff;
  line-height: 0.95;
}
.frag-photo-hero-sub {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}

/* ── COLLAGE HERO ── */
.frag-collage {
  display: flex;
  height: 480px;
  overflow: hidden;
  background: #f7f5f2;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.frag-panel {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.frag-panel-oval {
  flex: 0 0 160px;
  background: #fff;
  border-radius: 0 0 120px 120px / 0 0 80px 80px;
  border: 1px solid rgba(0,0,0,0.08);
  margin: 16px 0 16px 16px;
  border-radius: 999px;
  flex: 0 0 152px;
}
.frag-panel-large {
  flex: 0 0 340px;
  margin: 0 6px;
  border-radius: 24px;
}
.frag-panel-text {
  flex: 1;
  min-width: 220px;
  flex-direction: column;
  gap: 24px;
}
.frag-panel-wordstack {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.05;
}
.frag-panel-wordstack span {
  font-family: 'Jost', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -1px;
  color: #111;
  display: block;
}
.frag-panel-tinrow {
  display: flex;
  gap: 6px;
  align-items: flex-end;
  padding-left: 2px;
}
.frag-panel-circle {
  flex: 0 0 340px;
  border-radius: 50%;
  height: 340px;
  margin: auto 6px;
  flex-shrink: 0;
}
.frag-panel-slim {
  flex: 0 0 160px;
  margin: 0 0 0 6px;
  border-radius: 24px 0 0 24px;
}

/* ── SHOP HEADING ── */
.frag-shop-heading {
  padding: 64px 40px 16px;
  border-bottom: none;
}
.frag-shop-heading h1 {
  font-family: 'Jost', sans-serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  color: #111;
  letter-spacing: -3px;
  line-height: 1;
  margin: 0;
}
.frag-shop-heading h1 sup {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  vertical-align: super;
  opacity: 0.4;
  margin-left: 4px;
}

/* ── FILTER BAR ── */
.frag-filter-bar {
  display: flex;
  gap: 0;
  padding: 0 40px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.frag-filter-bar::-webkit-scrollbar { display: none; }
.frag-filter {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 18px 22px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #aaa;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.frag-filter:hover { color: #555; }
.frag-filter.active { color: #111; border-bottom-color: #111; }

/* ── PRODUCT GRID ── */
.frag-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(0,0,0,0.12);
  border-left: 1px solid rgba(0,0,0,0.12);
}
.frag-grid-card {
  padding: 28px 24px 0;
  border-right: 1px solid rgba(0,0,0,0.12);
  border-bottom: 1px solid rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  transition: background 0.3s;
}
.frag-grid-card:nth-child(3n) { border-right: none; }
.frag-grid-card:hover { background: #fafaf9; }
.frag-grid-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}
.frag-grid-name {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #111;
  letter-spacing: -0.2px;
  line-height: 1.25;
}
.frag-grid-price {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  color: #111;
  white-space: nowrap;
  padding-top: 2px;
}
.frag-grid-stars {
  font-size: 12px;
  color: #111;
  letter-spacing: 1px;
}
.frag-grid-reviews {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  color: #aaa;
  letter-spacing: 0.5px;
}
.frag-grid-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 0 24px;
  min-height: 210px;
}
.frag-grid-notes {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  color: #aaa;
  letter-spacing: 2px;
  padding-bottom: 4px;
}
.frag-grid-atc {
  width: calc(100% + 48px);
  margin-left: -24px;
  padding: 18px;
  background: #111;
  color: #fff;
  border: none;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background 0.25s;
  margin-top: auto;
}
.frag-grid-atc:hover { background: #333; }

@media (max-width: 900px) {
  .frag-collage { height: 300px; }
  .frag-panel-circle { width: 240px; height: 240px; flex: 0 0 240px; }
  .frag-panel-oval { flex: 0 0 100px; }
  .frag-panel-slim { flex: 0 0 100px; }
  .frag-panel-large { flex: 0 0 220px; }
  .frag-grid { grid-template-columns: repeat(2, 1fr); }
  .frag-grid-card:nth-child(2n) { border-right: none; }
  .frag-grid-card:nth-child(3n) { border-right: 1px solid rgba(0,0,0,0.12); }
}

.collection-header {
  padding: 80px 32px 64px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.collection-label {
  font-size: 9px;
  font-family: 'Space Mono', monospace;
  letter-spacing: 4px;
  opacity: 0.4;
  margin-bottom: 16px;
}

.collection-title {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 0.95;
  margin-bottom: 20px;
}

.collection-sub {
  font-size: 15px;
  font-weight: 300;
  opacity: 0.55;
  letter-spacing: 0.5px;
}

/* ── FRAGRANCE SECTIONS ── */
.frag-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.frag-reverse {
  direction: rtl;
}

.frag-reverse > * {
  direction: ltr;
}

.frag-image-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.frag-image-col.dark {
  background:
    radial-gradient(ellipse 65% 65% at 35% 42%, rgba(139,92,246,0.45) 0%, transparent 62%),
    radial-gradient(ellipse 55% 55% at 68% 60%, rgba(56,189,248,0.38) 0%, transparent 58%),
    radial-gradient(ellipse 45% 45% at 52% 22%, rgba(236,72,153,0.28) 0%, transparent 52%),
    #e8eaf4;
}

.frag-image-col.warm {
  background:
    radial-gradient(ellipse 65% 65% at 38% 45%, rgba(251,146,60,0.4) 0%, transparent 62%),
    radial-gradient(ellipse 55% 55% at 65% 60%, rgba(245,158,11,0.32) 0%, transparent 58%),
    radial-gradient(ellipse 40% 40% at 35% 25%, rgba(244,114,182,0.28) 0%, transparent 50%),
    #f5ede6;
}

.frag-image-col.mist {
  background:
    radial-gradient(ellipse 65% 65% at 38% 45%, rgba(56,189,248,0.42) 0%, transparent 62%),
    radial-gradient(ellipse 55% 55% at 68% 60%, rgba(103,232,249,0.35) 0%, transparent 58%),
    radial-gradient(ellipse 40% 40% at 50% 20%, rgba(167,139,250,0.3) 0%, transparent 50%),
    #e6eef5;
}

.frag-bottle-svg {
  height: 260px;
  width: auto;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.7));
  position: relative;
  z-index: 2;
}

.frag-num-bg {
  position: absolute;
  font-size: 160px;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  letter-spacing: -6px;
  user-select: none;
  pointer-events: none;
  z-index: 1;
}

.frag-detail-col {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  border-left: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.frag-reverse .frag-detail-col {
  border-left: none;
  border-right: 1px solid rgba(0,0,0,0.06);
}

.frag-tag {
  font-size: 9px;
  font-family: 'Space Mono', monospace;
  letter-spacing: 3px;
  opacity: 0.4;
}

.frag-name {
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 1;
}

.frag-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  opacity: 0.65;
  max-width: 380px;
}

.frag-notes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.frag-note-row {
  display: flex;
  gap: 20px;
  align-items: baseline;
}

.note-label {
  font-size: 8px;
  font-family: 'Space Mono', monospace;
  letter-spacing: 2px;
  opacity: 0.35;
  min-width: 40px;
}

.note-val {
  font-size: 11px;
  font-family: 'Space Mono', monospace;
  letter-spacing: 2px;
  opacity: 0.7;
}

.frag-price {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.5px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease, margin 0.3s ease;
  margin: 0;
}

.frag-section.revealed .frag-price {
  max-height: 60px;
  opacity: 1;
  margin-bottom: 4px;
}

.btn-shop-dark {
  border: 1.5px solid #111;
  background: transparent;
  color: #111;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.2s;
  align-self: flex-start;
}

.btn-shop-dark:hover {
  background: linear-gradient(135deg, #3b82f6, #a78bfa);
  color: #fff;
  border-color: transparent;
}

.frag-divider {
  height: 1px;
  background: rgba(0,0,0,0.08);
}

/* active nav link */
.nav-active { opacity: 1 !important; }

/* ── FRAGRANCE EDITORIAL SECTIONS ── */
.frag-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  border-bottom: 1.5px solid rgba(0,0,0,0.28);
  border-left: 1.5px solid rgba(0,0,0,0.28);
  border-right: 1.5px solid rgba(0,0,0,0.28);
  margin: 0 40px;
}
.frag-editorial:first-of-type {
  border-top: 1.5px solid rgba(0,0,0,0.28);
  margin-top: 40px;
}
.frag-editorial:last-of-type {
  margin-bottom: 40px;
}
.frag-editorial > *:first-child {
  border-right: 1.5px solid rgba(0,0,0,0.28);
}

.frag-editorial-text {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.editorial-label {
  font-size: 8px;
  font-family: 'Space Mono', monospace;
  letter-spacing: 3px;
  opacity: 0.35;
}

.editorial-headline {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
}

.editorial-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  opacity: 0.62;
  max-width: 420px;
}

.editorial-ingredient {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  font-family: 'Space Mono', monospace;
  letter-spacing: 2px;
  opacity: 0.5;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 100px;
  padding: 6px 14px;
  margin-right: 8px;
  margin-top: 4px;
}

.frag-editorial-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.frag-editorial-image.img-dark {
  background:
    radial-gradient(ellipse 70% 70% at 35% 45%, rgba(139,92,246,0.55) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 72% 65%, rgba(56,189,248,0.45) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 55% 18%, rgba(236,72,153,0.35) 0%, transparent 50%),
    #dde0f0;
}

.frag-editorial-image.img-warm {
  background:
    radial-gradient(ellipse 70% 70% at 38% 48%, rgba(251,146,60,0.5) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 68% 62%, rgba(245,158,11,0.4) 0%, transparent 55%),
    radial-gradient(ellipse 45% 45% at 32% 22%, rgba(244,114,182,0.35) 0%, transparent 50%),
    #f0e8de;
}

.frag-editorial-image.img-mist {
  background:
    radial-gradient(ellipse 70% 70% at 40% 48%, rgba(56,189,248,0.52) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 70% 62%, rgba(103,232,249,0.42) 0%, transparent 55%),
    radial-gradient(ellipse 45% 45% at 52% 18%, rgba(167,139,250,0.38) 0%, transparent 50%),
    #dce8f0;
}

.editorial-visual-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 2;
}

.editorial-visual-label {
  font-size: 8px;
  font-family: 'Space Mono', monospace;
  letter-spacing: 3px;
  color: rgba(0,0,0,0.4);
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 100px;
  padding: 6px 16px;
}

/* Floating elements for fragrance page */
.frag-section {
  position: relative;
}
.frag-bg-planet {
  position: absolute;
  border-radius: 50%;
  filter: blur(22px);
  pointer-events: none;
  z-index: 0;
  animation: bg-pulse 9s ease-in-out infinite;
}
.frag-bg-spark {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  animation: bg-drift 11s ease-in-out infinite;
}
@keyframes bg-pulse {
  0%, 100% { transform: scale(1);    opacity: 0.7; }
  50%       { transform: scale(1.25); opacity: 1; }
}
@keyframes bg-drift {
  0%, 100% { transform: translateY(0)     rotate(0deg);   opacity: 0.7; }
  50%       { transform: translateY(-16px) rotate(24deg);  opacity: 1; }
}

/* ── FRAGRANCE ARCH CARDS SECTION ── */
.frag-cards-section {
  position: relative;
  padding: 80px 48px 96px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 70% at 15% 50%, rgba(167,139,250,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 55% 70% at 85% 50%, rgba(244,114,182,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 50% 5%,  rgba(125,211,252,0.18) 0%, transparent 55%),
    #f4f5f8;
}

.frag-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.frag-arch-card {
  border-radius: 999px 999px 28px 28px;
  padding: 52px 28px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  cursor: pointer;
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.75);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.frag-arch-card.dark {
  background:
    radial-gradient(ellipse 75% 45% at 50% 0%, rgba(139,92,246,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 75%, rgba(56,189,248,0.12) 0%, transparent 55%),
    rgba(255,255,255,0.62);
}
.frag-arch-card.warm {
  background:
    radial-gradient(ellipse 75% 45% at 50% 0%, rgba(251,146,60,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 75%, rgba(244,114,182,0.12) 0%, transparent 55%),
    rgba(255,255,255,0.62);
}
.frag-arch-card.mist {
  background:
    radial-gradient(ellipse 75% 45% at 50% 0%, rgba(56,189,248,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 75%, rgba(167,139,250,0.12) 0%, transparent 55%),
    rgba(255,255,255,0.62);
}

.frag-arch-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 72px rgba(0,0,0,0.1);
}

.frag-arch-stars {
  font-size: 13px;
  letter-spacing: 7px;
  color: #111;
  margin-bottom: 2px;
}
.frag-arch-label {
  font-size: 8px;
  font-family: 'Space Mono', monospace;
  letter-spacing: 3px;
  opacity: 0.4;
}
.frag-arch-num {
  font-size: 100px;
  font-weight: 900;
  letter-spacing: -4px;
  line-height: 1;
  color: #111;
  margin: 4px 0;
}
.frag-arch-type {
  font-size: 10px;
  font-family: 'Space Mono', monospace;
  letter-spacing: 2px;
  opacity: 0.55;
}
.frag-arch-note-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  width: 100%;
}
.frag-arch-note-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.frag-arch-note-key {
  font-size: 7px;
  font-family: 'Space Mono', monospace;
  letter-spacing: 2px;
  opacity: 0.35;
  min-width: 36px;
  text-align: left;
}
.frag-arch-note-val {
  font-size: 8px;
  font-family: 'Space Mono', monospace;
  letter-spacing: 1.5px;
  opacity: 0.65;
  text-align: right;
}
.frag-arch-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  opacity: 0.6;
  max-width: 200px;
}
.frag-arch-price {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.5px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease, margin 0.3s ease;
  margin: 0;
}
.frag-arch-card.revealed .frag-arch-price {
  max-height: 50px;
  opacity: 1;
  margin-bottom: 2px;
}
.frag-arch-btn {
  background: #111;
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 4px;
}
.frag-arch-btn:hover {
  background: linear-gradient(135deg, #3b82f6, #a78bfa);
}

/* ── CART DRAWER ── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.25);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: -440px;
  width: 420px;
  height: 100vh;
  background: #faf9f7;
  z-index: 201;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.12);
}
.cart-drawer.open { right: 0; }

.cart-drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 28px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.cart-drawer-title {
  font-size: 10px;
  font-family: 'Space Mono', monospace;
  letter-spacing: 3px;
  opacity: 0.5;
}
.cart-close-btn {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.2s;
}
.cart-close-btn:hover { opacity: 1; }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cart-empty {
  font-size: 13px;
  opacity: 0.4;
  margin-top: 24px;
  text-align: center;
}
.cart-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  background: #fff;
}
.cart-item-info {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.cart-item-name {
  font-size: 13px;
  font-weight: 500;
}
.cart-item-price {
  font-size: 13px;
  font-weight: 600;
}
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-item-controls button {
  background: none;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 6px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}
.cart-item-controls button:hover { background: #111; color: #fff; border-color: #111; }
.cart-item-controls span { font-size: 13px; font-weight: 500; min-width: 18px; text-align: center; }
.cart-item-remove { margin-left: auto; font-size: 11px !important; opacity: 0.5; }

.cart-footer {
  padding: 20px 28px 28px;
  border-top: 1px solid rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-discount-banner {
  background: linear-gradient(135deg, rgba(103,232,249,0.15), rgba(167,139,250,0.15));
  border: 1px solid rgba(167,139,250,0.3);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 500;
  color: #5b21b6;
}
.cart-totals {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cart-subtotal-row,
.cart-discount-row,
.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}
.cart-total-row {
  font-weight: 700;
  font-size: 15px;
  padding-top: 8px;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-top: 4px;
}
.cart-progress-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cart-progress-label {
  font-size: 11px;
  font-family: 'Space Mono', monospace;
  letter-spacing: 1px;
  opacity: 0.5;
}
.cart-progress-bar {
  height: 4px;
  background: rgba(0,0,0,0.08);
  border-radius: 100px;
  overflow: hidden;
}
.cart-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #7dd3fc, #a78bfa);
  border-radius: 100px;
  transition: width 0.4s ease;
  width: 0%;
}
.cart-checkout-btn {
  background: #111;
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 100px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background 0.2s;
}
.cart-checkout-btn:hover {
  background: linear-gradient(135deg, #3b82f6, #a78bfa);
}

/* ── PRODUCT GRID CARD AURA HOVER ── */
.frag-grid-card { position: relative; overflow: hidden; }
.frag-grid-card.card-dark:hover {
  background:
    radial-gradient(ellipse 90% 75% at 50% 70%, rgba(196,181,253,0.5) 0%, rgba(167,139,250,0.28) 48%, transparent 72%),
    radial-gradient(ellipse 55% 45% at 80% 15%, rgba(139,92,246,0.22) 0%, transparent 55%),
    #f8f6ff;
}
.frag-grid-card.card-warm:hover {
  background:
    radial-gradient(ellipse 90% 75% at 50% 70%, rgba(253,186,116,0.5) 0%, rgba(251,146,60,0.28) 48%, transparent 72%),
    radial-gradient(ellipse 55% 45% at 15% 15%, rgba(244,114,182,0.2) 0%, transparent 55%),
    #fff8f0;
}
.frag-grid-card.card-mist:hover {
  background:
    radial-gradient(ellipse 90% 75% at 50% 70%, rgba(186,230,253,0.5) 0%, rgba(125,211,252,0.28) 48%, transparent 72%),
    radial-gradient(ellipse 55% 45% at 80% 15%, rgba(167,139,250,0.2) 0%, transparent 55%),
    #f0f9ff;
}
.frag-grid-card.card-bundle:hover {
  background:
    radial-gradient(ellipse 60% 60% at 20% 75%, rgba(196,181,253,0.32) 0%, transparent 65%),
    radial-gradient(ellipse 60% 60% at 50% 70%, rgba(253,186,116,0.32) 0%, transparent 65%),
    radial-gradient(ellipse 60% 60% at 80% 75%, rgba(186,230,253,0.32) 0%, transparent 65%),
    #fafaf7;
}
.frag-grid-card.card-duo:hover {
  background:
    radial-gradient(ellipse 85% 75% at 40% 70%, rgba(254,215,170,0.58) 0%, rgba(251,146,60,0.32) 48%, transparent 72%),
    radial-gradient(ellipse 55% 45% at 80% 15%, rgba(196,181,253,0.28) 0%, transparent 55%),
    #fff9f5;
}
.frag-grid-card.card-travel:hover {
  background:
    radial-gradient(ellipse 85% 75% at 50% 70%, rgba(253,186,116,0.52) 0%, rgba(245,158,11,0.3) 48%, transparent 72%),
    radial-gradient(ellipse 50% 40% at 85% 15%, rgba(244,114,182,0.22) 0%, transparent 52%),
    #fff8ee;
}
.frag-grid-card.card-deluxe:hover {
  background:
    radial-gradient(ellipse 80% 72% at 50% 70%, rgba(254,215,170,0.48) 0%, rgba(251,146,60,0.26) 48%, transparent 72%),
    radial-gradient(ellipse 55% 48% at 15% 20%, rgba(186,230,253,0.38) 0%, transparent 55%),
    radial-gradient(ellipse 50% 44% at 88% 72%, rgba(125,211,252,0.28) 0%, transparent 55%),
    #f8fbff;
}

/* ── ARCH CARD HOVER COLOR CHANGE ── */
.frag-arch-card.dark:hover {
  background:
    radial-gradient(ellipse 75% 45% at 50% 0%, rgba(139,92,246,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 75%, rgba(56,189,248,0.25) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 50% 55%, rgba(167,139,250,0.2) 0%, transparent 60%),
    rgba(240,238,255,0.75);
}
.frag-arch-card.warm:hover {
  background:
    radial-gradient(ellipse 75% 45% at 50% 0%, rgba(251,146,60,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 75%, rgba(244,114,182,0.25) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 50% 55%, rgba(253,186,116,0.2) 0%, transparent 60%),
    rgba(255,244,235,0.75);
}
.frag-arch-card.mist:hover {
  background:
    radial-gradient(ellipse 75% 45% at 50% 0%, rgba(56,189,248,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 75%, rgba(167,139,250,0.25) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 50% 55%, rgba(103,232,249,0.2) 0%, transparent 60%),
    rgba(232,244,255,0.75);
}

/* ── FRAGRANCE HERO ── */
.frag-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: #ffffff;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.frag-hero-aura {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 60% at 68% 50%, rgba(196,181,253,0.55) 0%, rgba(167,139,250,0.28) 45%, transparent 70%);
  transition: background 0.7s ease, opacity 0.55s ease;
  opacity: 0;
}
.frag-hero:hover .frag-hero-aura {
  opacity: 1;
}
.frag-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  display: flex;
  gap: 80px;
  align-items: center;
}
.frag-hero-selectors {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.frag-hero-sel {
  background: none;
  border: 1px solid rgba(0,0,0,0.2);
  color: rgba(0,0,0,0.35);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.25s;
}
.frag-hero-sel.active,
.frag-hero-sel:hover {
  border-color: rgba(0,0,0,0.7);
  color: #111;
  background: rgba(0,0,0,0.05);
}
.frag-hero-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #111;
  max-width: 480px;
}
.frag-hero-label {
  font-size: 9px;
  font-family: 'Space Mono', monospace;
  letter-spacing: 3px;
  opacity: 0.4;
}
.frag-hero-num {
  font-size: clamp(80px, 12vw, 140px);
  font-weight: 900;
  letter-spacing: -4px;
  line-height: 1;
  transition: opacity 0.3s;
  color: #111;
}
.frag-hero-notes {
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0.45;
  font-size: 10px;
  font-family: 'Space Mono', monospace;
  letter-spacing: 2px;
}
.frag-hero-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  opacity: 0.65;
}
.frag-hero-btn {
  background: transparent;
  border: 1.5px solid rgba(0,0,0,0.5);
  color: #111;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.2s;
}
.frag-hero-btn:hover {
  background: #111;
  color: #fff;
  border-color: transparent;
}

/* ── EDITORIAL SPLIT HERO ── */
.frag-split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 40px;
  border: 1.5px solid rgba(0,0,0,0.28);
  margin-bottom: 0;
}
.frag-split-square {
  position: relative;
  min-height: 560px;
}
.frag-split-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px 32px;
  background: #f7f5f2;
  border-right: 1.5px solid rgba(0,0,0,0.28);
  overflow: hidden;
}
.frag-split-right {
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  background: #fff;
}
.frag-split-tag {
  font-family: 'Space Mono', monospace;
  font-size: 8px;
  letter-spacing: 3px;
  color: rgba(0,0,0,0.3);
  text-transform: uppercase;
  align-self: flex-start;
}
.frag-split-bottle {
  width: 100%;
  max-height: 340px;
  object-fit: contain;
  display: block;
}
.frag-split-caption {
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.frag-split-caption p {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  color: rgba(0,0,0,0.35);
  text-transform: lowercase;
}
.frag-split-prod-img-photo {
  width: 52px;
  height: 60px;
  object-fit: contain;
  mix-blend-mode: multiply;
  flex-shrink: 0;
}
.frag-split-products {
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.frag-split-product-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.frag-split-prod-img {
  width: 56px;
  height: 64px;
  border-radius: 10px;
  flex-shrink: 0;
}
.frag-split-prod-img.dark {
  background: radial-gradient(ellipse 60% 60% at 50% 52%, rgba(75,50,120,0.5) 0%, transparent 75%), #f0eeea;
}
.frag-split-prod-img.warm {
  background: radial-gradient(ellipse 60% 60% at 50% 52%, rgba(110,60,35,0.5) 0%, transparent 75%), #f0eeea;
}
.frag-split-prod-img.mist {
  background: radial-gradient(ellipse 60% 60% at 50% 52%, rgba(25,65,80,0.5) 0%, transparent 75%), #f0eeea;
}
.frag-split-prod-name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.3px;
}
.frag-split-prod-notes {
  font-size: 9px;
  font-family: 'Space Mono', monospace;
  letter-spacing: 1.5px;
  opacity: 0.4;
  margin-top: 3px;
}
.frag-split-prod-price {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.7;
  margin-top: 4px;
}
.frag-split-prod-btn {
  background: #111;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 100px;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.frag-split-prod-btn:hover {
  background: linear-gradient(135deg, #3b82f6, #a78bfa);
}
.frag-split-bundle {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, rgba(103,232,249,0.1), rgba(167,139,250,0.1));
  border: 1px solid rgba(167,139,250,0.25);
  border-radius: 14px;
  padding: 16px 20px;
  font-size: 13px;
}
.frag-split-bundle button {
  background: #111;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 100px;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  cursor: pointer;
  white-space: nowrap;
}

/* ── CART SHIPPING NOTE ── */
.cart-shipping-note {
  font-size: 10px;
  font-family: 'Space Mono', monospace;
  letter-spacing: 1px;
  opacity: 0.4;
  text-align: center;
  margin-top: 4px;
}

/* ── PRODUCT GRID CARD — GREY BACKGROUND ── */
.frag-grid-card { background: #f7f6f4; }
.frag-grid-img { min-height: 240px; }

/* ── BOTTLE PHOTO IMAGES ── */
.frag-grid-img img {
  height: 210px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: auto;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.18));
}
.editorial-visual-inner img {
  height: 240px;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  display: block;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.28));
}
.frag-quiz-blob img {
  height: 240px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.22));
}

/* ── QUIZ CTA SECTION ── */
.frag-quiz-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  border-top: 1px solid rgba(0,0,0,0.12);
  background: #fff;
}
.frag-quiz-left {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  border-right: 1px solid rgba(0,0,0,0.12);
}
.frag-quiz-tag {
  font-size: 8px;
  font-family: 'Space Mono', monospace;
  letter-spacing: 3px;
  opacity: 0.38;
}
.frag-quiz-headline {
  font-family: 'Jost', sans-serif;
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 0.97;
  color: #111;
}
.frag-quiz-sub {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  opacity: 0.58;
  max-width: 360px;
}
.frag-quiz-btn {
  background: #111;
  color: #fff;
  border: none;
  padding: 16px 36px;
  border-radius: 100px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.25s;
}
.frag-quiz-btn:hover { background: linear-gradient(135deg, #3b82f6, #a78bfa); }
.frag-quiz-right {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f2ef;
  position: relative;
  overflow: hidden;
}
.frag-quiz-right::before {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,181,253,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.frag-quiz-blob {
  width: 264px;
  height: 320px;
  border-radius: 52% 48% 42% 58% / 58% 42% 58% 42%;
  background:
    radial-gradient(ellipse 75% 65% at 45% 50%, rgba(196,181,253,0.55) 0%, rgba(167,139,250,0.25) 45%, transparent 72%),
    #e8e3f3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* ── EMAIL SIGNUP BAR ── */
.frag-email-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 80px;
  border-top: 1px solid rgba(0,0,0,0.12);
  background: #0e0c14;
  gap: 40px;
}
.frag-email-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.frag-email-heading {
  font-family: 'Jost', sans-serif;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
}
.frag-email-sub {
  font-size: 11px;
  font-family: 'Space Mono', monospace;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.32);
}
.frag-email-form {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  min-width: 340px;
  flex-shrink: 0;
}
.frag-email-input {
  flex: 1;
  background: none;
  border: none;
  padding: 16px 24px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: #fff;
  outline: none;
}
.frag-email-input::placeholder { color: rgba(255,255,255,0.3); }
.frag-email-submit {
  background: #fff;
  color: #111;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin: 4px;
  cursor: pointer;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}
.frag-email-submit:hover { background: #e0e0e0; }

@media (max-width: 900px) {
  .frag-quiz-cta { grid-template-columns: 1fr; }
  .frag-quiz-right { min-height: 320px; }
  .frag-quiz-left { padding: 56px 32px; border-right: none; border-bottom: 1px solid rgba(0,0,0,0.12); }
  .frag-email-bar { flex-direction: column; padding: 40px 32px; align-items: flex-start; gap: 24px; }
  .frag-email-form { min-width: 100%; width: 100%; }
}

/* mobile arch cards */
@media (max-width: 768px) {
  .frag-cards-section { padding: 48px 20px 64px; }
  .frag-cards-grid { grid-template-columns: 1fr; gap: 20px; }
  .frag-arch-card { border-radius: 280px 280px 24px 24px; padding: 44px 24px 36px; }
  .frag-arch-num { font-size: 72px; }
  .cart-drawer { width: 100vw; right: -100vw; }
  .frag-hero-content { padding: 0 32px; gap: 32px; }
  .frag-hero-num { font-size: clamp(64px, 18vw, 100px); }
  .frag-split-hero { grid-template-columns: 1fr; }
  .frag-split-image-inner { min-height: 320px; }
  .frag-split-products { padding: 32px 24px; }
}
