.hero {
  width: 100%;
  line-height: 0;
  position: relative;
}

.hero__image {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── HERO FEATURES BAR ─── */
.hero__features {
  position: absolute;
  bottom: -10%;
  left: 0;
  right: 0;
  width: 90%;
  margin: 0 auto;
  background: var(--white);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 24px 32px;
  z-index: 10;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.hero__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

@media (max-width: 768px) {
  .hero__image {
    object-fit: cover;
    height: 60vw;
    object-position: center;
  }

  .hero__features {
    bottom: -80px;
    padding: 16px 12px;
    flex-wrap: wrap;
    gap: 16px;
  }
}

.dual-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background: var(--white);
  overflow: clip;
  padding-top: 52px;
}

.dual-section__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ── Shared card ── */
.ss-card {
  position: absolute;
  width: 42%;
  max-width: 420px;
  border-radius: 4px;
  overflow: hidden;
  background: #111;
}

.ss-card img {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.ss-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.8rem 2.2rem;
  /* background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, transparent 100%); */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.9rem;
}

.ss-card__title {
  font-family: var(--font-sc);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--white);
  text-transform: uppercase;
}

.ss-card__link {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.18em;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 240, 235, 0.6);
  padding-bottom: 2px;
  transition: opacity 0.3s;
}

.ss-card__link:hover {
  opacity: 0.55;
}

.ss-card--left {
  left: 5%;
  top: 20%;
}

.ss-card--right {
  right: 3%;
  top: 20%;
}

/* ─── SIGNATURE SELECTIONS ─── */
.sig-sel {
  background: var(--white);
}

.sig-sel__header {
  text-align: center;
  margin-bottom: 47px;
}

.sig-sel__title {
  font-family: var(--font-sc);
  font-size: 42px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 10px;
}

.sig-sel__subtitle {
  font-family: var(--font-outfit);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #555;
}

.sig-sel__grid {
  display: grid;
  grid-template-columns: repeat(4, 250px);
  gap: 20px;
  justify-content: center;
}

/* prod-card styles live in global.css */

@media (max-width: 991px) {
  .sig-sel__grid {
    grid-template-columns: repeat(2, 250px);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .sig-sel__grid {
    grid-template-columns: 1fr;
  }

  .sig-sel__subtitle br {
    display: none;
  }
}

.fragranceSec {
}

.fragranceQuiz img {
  width: 100%;
}

/* ─── REVIEWS SECTION ─── */
.reviews {
  background: var(--white);
  color: var(--black);
  overflow: hidden;
}

.reviews__header {
  text-align: center;
  margin-bottom: 48px;
}

.reviews__title {
  font-family: var(--font-sc);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.reviews__summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.reviews__stars {
  display: flex;
  gap: 4px;
  align-items: center;
}

.reviews__star {
  width: 22px;
  height: 22px;
  filter: brightness(0) saturate(100%) invert(76%) sepia(60%) saturate(600%)
    hue-rotate(5deg) brightness(98%);
}

.reviews__star--half {
  filter: brightness(0) saturate(100%) invert(76%) sepia(60%) saturate(600%)
    hue-rotate(5deg) brightness(98%) opacity(0.5);
}

.reviews__count {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #555;
}

.reviews__swiper {
  width: 100%;
  overflow: hidden;
}

.review-card {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 24px 22px 28px;
  background: var(--white);
  height: 100%;
  max-width: 400px;
}

.review-card__name {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  margin-bottom: 20px;
}

.review-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}

.review-card__stars img {
  /* width: 22px;
  height: 22px; */
  filter: brightness(0) saturate(100%) invert(76%) sepia(60%) saturate(600%)
    hue-rotate(5deg) brightness(98%);
}

.review-card__text {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #444;
}

.reviews__nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.reviews__arrow {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    border-color 0.2s,
    opacity 0.2s;
  padding: 0;
}

.reviews__arrow:hover {
  border-color: var(--black);
}

.reviews__arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .dual-section {
    height: 75vh;
  }

  .ss-card {
    width: 46%;
  }
}

@media (max-width: 768px) {
  .dual-section {
    height: auto;
    padding-top: 120px;
    overflow: visible;
  }

  .dual-section__inner {
    display: flex;
    flex-direction: column;
    gap: 6vw;
  }

  .ss-card {
    position: relative;
    width: 100%;
    max-width: 100%;
    top: unset;
    left: unset;
  }

  .ss-card--right {
    right: unset;
    top: unset;
  }
}

/* ─── FAQ SECTION ─── */
.faq {
  background: var(--white);
  color: var(--black);
}

.faq__title {
  font-family: var(--font-sc);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--black);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 60px;
}

.faq__list {
  border-top: 1px solid #e0e0e0;
}

.faq__item {
  border-bottom: 1px solid #e0e0e0;
  background: transparent;
  transition: background 0.4s ease;
}

.faq__item.is-open {
  background: var(--black);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 20px;
  font-size: 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq__question span {
  font-family: var(--font-outfit);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--black);
  transition: color 0.4s ease;
}

.faq__item.is-open .faq__question span {
  color: var(--white);
}

.faq__arrow {
  flex-shrink: 0;
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.faq__item.is-open .faq__arrow {
  transform: rotate(180deg);
  filter: invert(1);
}

.faq__answer {
  display: grid;

  grid-template-rows: 0fr;
  transition:
    grid-template-rows 0.4s ease,
    padding-bottom 0.4s ease;
  padding: 0 20px;
  padding-bottom: 0;
}

.faq__answer-inner {
  overflow: hidden;
}

.faq__item.is-open .faq__answer {
  grid-template-rows: 1fr;
  padding-bottom: 28px;
}

.faq__answer p {
  font-family: var(--font-outfit);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
}

/* footer styles live in global.css */
