/* ============================================
   PRODUCT BANDS — FULL-BLEED SPLIT LAYOUT
   ============================================ */

.product-band {
  --bd-bg: #f1e7fb;
  --bd-accent: #7a2f9e;
  --bd-accent-light: #cda8e4;
  --bd-navy: #14245c;
  width: 100%;
  overflow: hidden;
}

.product-theme-blue {
  --bd-bg: #e7f1fb;
  --bd-accent: #234a8e;
  --bd-accent-light: #a8c6e8;
  --bd-navy: #14245c;
}

.product-theme-ruby {
  --bd-bg: #fce6ef;
  --bd-accent: #c01f5b;
  --bd-accent-light: #efaac6;
  --bd-navy: #14245c;
}

.product-theme-purple {
  --bd-bg: #f1e7fb;
  --bd-accent: #7a2f9e;
  --bd-accent-light: #d2b2e8;
  --bd-navy: #14245c;
}

.product-band {
  padding: 28px 0;
}

.band-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 90%;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.products-collection-inner .band-row,
.products-collection-inner .band-trustbar {
  width: 100%;
  margin-inline: 0;
}

/* Media half */
.band-media {
  position: relative;
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 580px;
  overflow: hidden;
}

.band-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Circular feature badges over the image */
.band-badges {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 22px;
  z-index: 3;
}

.badges-left { left: 26px; }
.badges-right { right: 26px; }

.band-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  width: 92px;
  text-align: center;
}

.bb-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.band-badge:hover .bb-circle {
  transform: translateY(-4px) scale(1.06);
}

.bb-circle i {
  font-size: 22px;
  color: var(--bd-accent);
}

.bb-circle .usa-flag-icon {
  width: 26px;
  height: auto;
  display: block;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.band-badge span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--bd-navy);
  line-height: 1.25;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
}

/* Content half */
.band-content {
  flex: 1 1 50%;
  max-width: 50%;
  background: var(--bd-bg);
  display: flex;
  align-items: center;
  padding: 64px 60px;
  position: relative;
}

.band-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.55) 0%, transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.4) 0%, transparent 40%);
  pointer-events: none;
}

.band-inner {
  position: relative;
  width: 100%;
  max-width: 580px;
}

.cat-pill {
  display: inline-block;
  background: var(--bd-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.band-name {
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.06em;
}

.band-name strong {
  color: var(--bd-navy);
  font-weight: 700;
}

.band-name span {
  color: var(--bd-accent);
  font-weight: 700;
}

.band-subtitle {
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.3;
  color: var(--bd-accent);
  margin-bottom: 14px;
}

.band-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  max-width: 280px;
}

.band-divider span {
  flex: 1;
  height: 1px;
}

.band-divider span:first-child { background: linear-gradient(90deg, var(--bd-accent-light), transparent); }
.band-divider span:last-child { background: linear-gradient(90deg, transparent, var(--bd-accent-light)); }

.band-divider i {
  color: var(--bd-accent);
  font-size: 14px;
}

.band-desc {
  color: #5b6478;
  font-size: 14.5px;
  line-height: 1.8;
  margin-bottom: 26px;
}

.band-price {
  margin: -6px 0 22px;
}

/* Benefit cards row */
.band-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 30px;
}

.band-benefit {
  background: #fff;
  border-radius: 16px;
  padding: 18px 8px 16px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.band-benefit:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.1);
}

.bb-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--bd-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.band-benefit:hover .bb-icon {
  background: var(--bd-accent);
  border-color: var(--bd-accent);
}

.bb-icon i {
  font-size: 21px;
  color: var(--bd-accent);
  transition: color 0.3s ease;
}

.band-benefit:hover .bb-icon i {
  color: #fff;
}

.band-benefit span {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--bd-navy);
  line-height: 1.35;
}

/* Shop button */
.band-shop {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bd-accent);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.band-shop i {
  transition: transform 0.3s ease;
}

.band-shop:hover {
  color: #fff;
  transform: translateY(-3px);
  filter: brightness(1.08);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.band-shop:hover i {
  transform: translateX(5px);
}

/* Bottom trust bar */
.band-trustbar {
  background: linear-gradient(90deg, #efe4f7 0%, #f6e8f0 50%, #efe4f7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;
  padding: 20px 24px;
  width: 90%;
  margin: 12px auto 28px;
  border-radius: 18px;
}

.bt-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: var(--navy);
  text-transform: uppercase;
}

.bt-item i {
  font-size: 18px;
  color: #7a2f9e;
}

.bt-sep {
  width: 1px;
  height: 26px;
  background: rgba(122, 47, 158, 0.25);
}

/* Commitment section — reuses .band-divider layout; pink lines (not product-band vars) */
.commit-divider.band-divider {
  margin: 6px 0 16px;
  max-width: 150px;
  gap: 10px;
}

.commit-divider.band-divider span {
  height: 1.5px;
  background: #d02689;
  opacity: 0.75;
}

.commit-divider.band-divider span:first-child,
.commit-divider.band-divider span:last-child {
  background: #d02689;
}

.commit-divider.band-divider i {
  font-size: 18px;
  color: #d02689;
}

.commit-title {
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 46px;
  font-weight: 700;
  line-height: 1.12;
  color: var(--navy, #14245c);
  margin-bottom: 20px;
}

.commit-quote {
  margin-top: 26px;
  background: linear-gradient(90deg, #fbe3ee 0%, #fdeef5 100%);
  border-left: 4px solid var(--pink-primary, #d02689);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.commit-quote-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(208, 38, 137, 0.18);
}

.commit-quote-icon i {
  color: var(--pink-primary, #d02689);
  font-size: 20px;
}

.commit-quote p {
  margin: 0;
  font-style: italic;
  font-size: 13.5px;
  line-height: 1.6;
  color: #5b6478;
}

/* Commitment single image + overlaid feature bar */
.commitment-image {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.commitment-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
  transition: transform 0.6s ease;
}

.commitment-image:hover img {
  transform: scale(1.03);
}

.commit-feature-bar {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  border-radius: 18px;
  padding: 16px 10px;
  display: flex;
  align-items: stretch;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

.cf-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 4px 8px;
  position: relative;
}

.cf-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(208, 38, 137, 0.15);
}

.cf-item i {
  font-size: 22px;
  color: var(--pink-primary, #d02689);
}

.cf-item span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--navy, #14245c);
  line-height: 1.3;
}

@media (max-width: 767px) {
  .commit-feature-bar {
    position: static;
    margin-top: 14px;
    left: auto;
    right: auto;
    bottom: auto;
    flex-wrap: wrap;
    padding: 14px 8px;
  }

  .cf-item {
    flex: 1 1 50%;
    margin-bottom: 8px;
  }

  .cf-item:not(:last-child)::after {
    display: none;
  }

  .cf-item span {
    font-size: 10px;
  }
}

@media (max-width: 575px) {
  .commit-title { font-size: 32px; }
  .commit-feature-bar { position: static; margin-top: 14px; left: auto; right: auto; bottom: auto; flex-wrap: wrap; }
  .cf-item { flex: 1 1 50%; margin-bottom: 10px; }
  .cf-item:not(:last-child)::after { display: none; }
}

/* Responsive */
@media (max-width: 991px) {
  .band-row { width: 94%; }
  .band-trustbar { width: 94%; }

  .products-collection-inner .band-row,
  .products-collection-inner .band-trustbar {
    width: 100%;
  }

  .band-media,
  .band-content {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .band-media { min-height: 420px; order: 1; }
  .band-content { order: 2; padding: 40px 28px; }

  .band-inner { max-width: 640px; margin: 0 auto; }

  .band-trustbar {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 20px;
    padding: 18px 20px;
  }

  .commit-title { font-size: 36px; }
  .commitment-image { margin-top: 8px; }
}

@media (max-width: 767px) {
  .product-band { padding: 20px 0; }
  .band-row { width: 96%; border-radius: 18px; }
  .band-trustbar { width: 96%; border-radius: 14px; }

  .products-collection-inner .band-row,
  .products-collection-inner .band-trustbar {
    width: 100%;
  }

  .products-collection .product-band { padding: 16px 0; }
  .band-content { padding: 32px 22px; }
  .band-media { min-height: 360px; }
  .band-badges { gap: 14px; }
  .band-badge { width: 68px; }
  .band-badge span { font-size: 7px; }
  .commit-title { font-size: 30px; }
  .commit-quote { flex-direction: column; text-align: center; padding: 16px; }
}

@media (max-width: 575px) {
  .band-name { font-size: 28px; }
  .band-subtitle { font-size: 18px; }
  .band-benefits { grid-template-columns: repeat(2, 1fr); }
  .band-media { min-height: 320px; }
  .band-badges { gap: 12px; }
  .badges-left { left: 12px; }
  .badges-right { right: 12px; }
  .band-badge { width: 74px; }
  .bb-circle { width: 46px; height: 46px; }
  .bb-circle i { font-size: 18px; }
  .bb-circle .usa-flag-icon { width: 22px; }
  .band-trustbar { gap: 12px; }
  .bt-item { font-size: 11px; }
  .bt-sep { display: none; }
}
