/* Homepage perfume spotlight — Bixoto-style split panel + product carousel */

.cc-homePerfumeSpotlight {
  margin: 40px calc(-1 * var(--cc-inside-pad-mobile));
  width: calc(100% + 2 * var(--cc-inside-pad-mobile));
  padding: 40px var(--cc-inside-pad-mobile);
  background: #e8f5f3;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .cc-homePerfumeSpotlight {
    margin-left: calc(-1 * var(--cc-inside-pad));
    margin-right: calc(-1 * var(--cc-inside-pad));
    width: calc(100% + 2 * var(--cc-inside-pad));
    padding: 48px var(--cc-inside-pad);
  }
}

.cc-homePerfumeSpotlight__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  max-width: var(--cc-bx-max-wide);
  margin: 0 auto;
}

@media (min-width: 960px) {
  .cc-homePerfumeSpotlight__inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
    gap: 40px;
  }
}

.cc-homePerfumeSpotlight__eyebrow {
  margin: 0 0 8px 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: hsl(168 22% 32%);
}

.cc-homePerfumeSpotlight__title {
  margin: 0 0 24px 0;
  font-family: var(--cc-font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--cc-bx-ink);
}

.cc-homePerfumeSpotlight__features {
  list-style: none;
  margin: 0 0 28px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cc-homePerfumeSpotlight__feature {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
}

.cc-homePerfumeSpotlight__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--cc-bx-ink);
  color: var(--cc-bx-ink);
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}

.cc-homePerfumeSpotlight__feature strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 700;
  color: var(--cc-bx-ink);
}

.cc-homePerfumeSpotlight__feature p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--cc-bx-ink-secondary);
}

.cc-homePerfumeSpotlight__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 12px 28px;
  border: 2px solid var(--cc-bx-ink);
  border-radius: 0;
  background: transparent;
  color: var(--cc-bx-ink);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.cc-homePerfumeSpotlight__cta:hover {
  background: var(--cc-bx-ink);
  color: #fff;
}

.cc-homePerfumeSpotlight__carousel {
  min-width: 0;
}

.cc-homePerfumeSpotlight__carousel .cc-productCarousel {
  margin-bottom: 0;
}

.cc-homePerfumeSpotlight__carousel .cc-productCarousel__slide {
  flex: 0 0 calc((100% - 20px) / 2);
  width: calc((100% - 20px) / 2);
  max-width: calc((100% - 20px) / 2);
}

.cc-homePerfumeSpotlight__carousel .cc-productCarousel__slide > .cc-productCard.bx-productCard {
  border: 0;
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}

.cc-homePerfumeSpotlight__carousel .owl-nav .owl-prev,
.cc-homePerfumeSpotlight__carousel .owl-nav .owl-next {
  background: #fce8e4;
  color: #c2410c;
  opacity: 1;
  box-shadow: 0 4px 14px rgba(194, 65, 12, 0.12);
}

.cc-homePerfumeSpotlight__carousel .owl-nav button:hover:not(.isDisabled) {
  background: #fbd5ce;
}

.cc-homePerfumeSpotlight__carousel .owl-nav .owl-prev { left: -4px; }
.cc-homePerfumeSpotlight__carousel .owl-nav .owl-next { right: -4px; }

@media screen and (max-width: 759px) {
  .cc-homePerfumeSpotlight__carousel .cc-productCarousel__slide {
    flex: 0 0 calc((100% - 20px) / 1.15);
    width: calc((100% - 20px) / 1.15);
    max-width: calc((100% - 20px) / 1.15);
  }
}
