/* ==========================================================================
   HOME PAGE — shop sections (index only)
   ========================================================================== */

/* ---- Promo bar ---------------------------------------------------------- */
.promo-bar {
  background: var(--plum);
  color: var(--ivory);
  text-align: center;
  font-family: var(--font-body);
  font-size: clamp(.72rem, 1.8vw, .82rem);
  font-weight: 500;
  letter-spacing: .06em;
  padding: .65rem 1rem;
}

.promo-bar strong {
  color: var(--gold-light);
  font-weight: 600;
}

/* ---- Hero banner carousel ----------------------------------------------- */
.banner-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--ivory-deep);
}

.banner-track {
  display: flex;
  transition: transform .65s var(--ease);
}

.banner-slide {
  flex: 0 0 100%;
  min-height: clamp(320px, 58vw, 560px);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: end;
  justify-content: center;
  padding-bottom: 3rem;
}

.banner-slide--1 {
  background: linear-gradient(135deg, #F3D9DE 0%, #FBF4EE 55%, #F5E9DE 100%);
}

.banner-slide--2 {
  background: linear-gradient(135deg, #EFE0E4 0%, #FBF4EE 50%, #F3E4C4 100%);
}

.banner-slide--3 {
  background: linear-gradient(135deg, #E8C7CF 0%, #FBF4EE 45%, #F5E9DE 100%);
}

.banner-slide__visual {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.banner-slide__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  background: transparent;
}

.banner-slide__visual svg {
  width: clamp(180px, 36vw, 320px);
  height: auto;
  filter: drop-shadow(0 16px 32px rgba(74, 37, 54, 0.12));
  opacity: .92;
}

.banner-slide__cta {
  position: relative;
  z-index: 3;
  text-align: center;
}

.banner-controls {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: .55rem;
  z-index: 5;
}

.banner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(74, 37, 54, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform .3s var(--ease), background .3s var(--ease);
}

.banner-dot.is-active {
  background: var(--plum);
  transform: scale(1.25);
}

.banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(74, 37, 54, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: background .3s var(--ease), transform .3s var(--ease);
}

.banner-arrow:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.05);
}

.banner-arrow svg {
  width: 18px;
  height: 18px;
  color: var(--plum);
}

.banner-arrow--prev {
  left: 1rem;
}

.banner-arrow--next {
  right: 1rem;
}

@media (max-width: 599px) {
  .banner-arrow {
    display: none;
  }
}

/* ---- Full-width shop sections ----------------------------------------- */
.shop-section {
  padding-block: clamp(2.8rem, 6vw, 4.5rem);
}

.shop-section--alt {
  background: var(--ivory-deep);
}

.shop-section__head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 2.8rem);
}

.shop-section__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3rem);
  color: var(--plum);
  line-height: 1.1;
}

.shop-section__sub {
  margin-top: .65rem;
  font-size: .95rem;
  color: #6b5a5f;
  max-width: 52ch;
  margin-inline: auto;
}

/* Horizontal product rail */
.product-rail-wrap {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* #new-arrivals-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
} */

.product-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 320px);
  gap: clamp(1rem, 2.4vw, 1.35rem);
  justify-content: center;
  align-items: stretch;
  margin-inline: auto;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: .2rem clamp(.8rem, 2.5vw, 1.4rem) .8rem;
  scroll-padding-inline: clamp(.8rem, 2.5vw, 1.4rem);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}

.product-rail::-webkit-scrollbar {
  height: 5px;
}

.product-rail::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

.product-rail .product-card {
  scroll-snap-align: start;
}

/* keep rail cards visually aligned with the collection cards without changing behavior */
.product-rail .product-card,
.product-card--shop {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-inline: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  overflow: hidden;
  align-self: center;
}

@media (max-width: 640px) {
  .product-rail {
    grid-auto-columns: minmax(84vw, 280px);
    justify-content: start;
    padding-inline: 1rem;
    scroll-padding-inline: 1rem;
  }

  .product-rail .product-card,
  .product-card--shop {
    max-width: 100%;
  }
}

/* KaratCart-style product card */
.product-card--shop .product-media {
  position: relative;
  min-height: 260px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.75));
  display: flex;
}

.product-card--shop .product-discount {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .4rem .75rem;
  border-radius: 999px;
  background: var(--plum);
  color: var(--ivory);
  font-family: var(--font-eyebrow);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.products-grid .product-discount {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .4rem .75rem;
  border-radius: 999px;
  background: var(--plum);
  color: var(--ivory);
  font-family: var(--font-eyebrow);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-card--shop .product-media svg {
  width: 100%;
  max-width: 160px;
  height: auto;
  color: currentColor;
}

.product-card--shop .product-body {
  padding: 1.1rem 1.2rem 1.3rem;
}

.product-card--shop .product-body h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--charcoal);
}

.product-card--shop .product-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .65rem;
  margin-top: .65rem;
}

.product-card--shop .product-price--sale {
  font-family: var(--font-eyebrow);
  font-size: 1rem;
  font-weight: 700;
  color: var(--plum);
}

.product-card--shop .product-price--compare {
  font-family: var(--font-body);
  font-size: .82rem;
  color: #7b666d;
  text-decoration: line-through;
}

.product-card--shop .product-price-note {
  display: block;
  margin-top: .5rem;
  font-size: .8rem;
  color: #846b75;
}

.product-card--shop .product-desc,
.product-card--shop .product-view {
  display: none;
}

.product-card--shop .product-quick {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%) translateY(12px);
  opacity: 0;
  font-family: var(--font-eyebrow);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--plum);
  color: var(--ivory);
  padding: .55rem 1.2rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  z-index: 3;
  pointer-events: none;
}

.product-card--shop:hover .product-quick {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.shop-section__cta {
  text-align: center;
  margin-top: 2rem;
}

/* ---- Watch And Shop — responsive card grid --------------------------- */
.watch-shop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(.85rem, 2vw, 1.25rem);
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}

@media (min-width: 720px) {
  .watch-shop-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.watch-shop-item {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}

.watch-shop-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.watch-shop-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1), transparent 45%);
  pointer-events: none;
}

.watch-shop-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(255, 255, 255, 0.28) 80%);
  pointer-events: none;
}

.watch-shop-item__icon {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(74, 37, 54, 0.14);
}

.watch-shop-item__icon svg {
  width: 20px;
  height: 20px;
  margin-left: 0;
}

.watch-shop-item__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--plum);
  text-align: center;
  padding: 1rem 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.92);
}

.watch-shop-item__label::before {
  content: 'Video';
  display: block;
  font-family: var(--font-eyebrow);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .45rem;
  color: rgba(74, 37, 54, 0.72);
}


/* ---- Testimonials ------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: .9rem;
  letter-spacing: .15em;
  margin-bottom: .9rem;
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--plum);
  line-height: 1.55;
}

.testimonial-card__author,
.testimonial-card cite {
  font-style: normal;
  display: block;
  margin-top: 1.1rem;
  font-family: var(--font-eyebrow);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--mauve-deep);
}

/* ---- Trust strip -------------------------------------------------------- */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(74, 37, 54, 0.08);
  border-block: 1px solid rgba(74, 37, 54, 0.08);
}

@media (min-width: 720px) {
  .trust-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item {
  background: var(--ivory);
  padding: 1.4rem 1rem;
  text-align: center;
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--plum);
}

.trust-item span {
  display: block;
  margin-top: .3rem;
  font-size: .78rem;
  color: #6b5a5f;
}