/* ─── Side-rail Product Showcase (New Arrivals / Best Sellers) ─── */
.perfume-collection-showcase {
  background: radial-gradient(
      circle at top left,
      rgba(242, 202, 80, 0.08),
      transparent 32%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(212, 175, 55, 0.06),
      transparent 28%
    );
}

.perfume-collection-showcase__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

/* Intro rail */
.perfume-collection-showcase__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.perfume-collection-showcase__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(242, 202, 80, 0.45);
  border-radius: 999px;
  color: var(--c-gold);
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.perfume-collection-showcase__eyebrow .material-symbols-outlined {
  font-size: 0.95rem;
}

.perfume-collection-showcase__title {
  margin: 1.1rem 0 0;
  font-family: var(--font-headline);
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.04;
  color: var(--c-text);
}

.perfume-collection-showcase__description {
  margin: 1rem 0 0;
  max-width: 32ch;
  color: var(--c-text-muted);
  font-family: var(--font-headline);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.5;
}

.perfume-collection-showcase__cta {
  margin-top: 1.5rem;
}

.perfume-collection-showcase__cta .material-symbols-outlined {
  font-size: 1rem;
}

/* Product grid — never fewer than 2 columns. */
.perfume-collection-showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.perfume-collection-showcase__item {
  display: flex;
}

.perfume-collection-showcase__item > .dark-product-card {
  width: 100%;
}

/* ≥576px — a touch more breathing room, still 2 per row on small phones+. */
@media (min-width: 576px) {
  .perfume-collection-showcase__grid {
    gap: 1.25rem;
  }
}

/* ≥768px — stacked layout can fit 3 per row on tablets. */
@media (min-width: 768px) {
  .perfume-collection-showcase__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ≥992px — intro becomes a left rail beside the grid. */
@media (min-width: 992px) {
  .perfume-collection-showcase__layout {
    grid-template-columns: minmax(220px, 280px) 1fr;
    gap: 2.5rem;
    align-items: start;
  }

  .perfume-collection-showcase__intro {
    position: sticky;
    top: 110px;
  }

  .perfume-collection-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ≥1200px — three product columns beside the rail. */
@media (min-width: 1200px) {
  .perfume-collection-showcase__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ≥1500px — four product columns, matching the reference layout. */
@media (min-width: 1500px) {
  .perfume-collection-showcase__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* RTL — flip the sticky rail alignment cues and the directional arrow. */
.rtl .perfume-collection-showcase__description,
body.rtl .perfume-collection-showcase__description {
  margin-left: auto;
  margin-right: 0;
}

.rtl .perfume-collection-showcase__cta .material-symbols-outlined,
body.rtl .perfume-collection-showcase__cta .material-symbols-outlined {
  transform: scaleX(-1);
}
