/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */

.product-detail-page {
  --pd-accent: #c9187a;
  --pd-accent-hover: #a81466;
  --pd-accent-deep: #d10056;
  --pd-ink: #0a1128;
  --pd-navy: #0a1128;
  --pd-text: #2d2d2d;
  --pd-muted: #5c6470;
  --pd-line: #eadde5;
  --pd-pink-soft: #fff0f5;
  --pd-pink-bg: #fdf2f5;
  --pd-pink-panel: #fdf2f5;
  --pd-divider: #e3d6de;
  --pd-radius: 16px;
  --pd-section-y: clamp(56px, 7vw, 88px);
}

.product-detail-page .pd-name,
.product-detail-page .pd-section-title,
.product-detail-page .about-serif {
  font-family: var(--font-heading);
}

/* ── Breadcrumb ── */
.pd-topbar {
  padding: 20px 0 8px;
  background: #fff;
}

.pd-breadcrumb {
  font-size: 13px;
  color: #9ca3af;
}

.pd-breadcrumb a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s ease;
}

.pd-breadcrumb a:hover {
  color: var(--pd-accent);
}

.pd-breadcrumb .bc-sep {
  margin: 0 10px;
  color: #d1d5db;
}

.pd-breadcrumb .bc-current {
  color: var(--pd-muted);
  font-weight: 500;
}

/* ── Hero ── */
.pd-main {
  padding: 24px 0 var(--pd-section-y);
  background: #fff;
}

.pd-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pd-showcase {
  position: relative;
  background: var(--pd-pink-bg);
  border-radius: var(--pd-radius);
  padding: clamp(32px, 5vw, 48px);
  min-height: clamp(380px, 48vw, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pd-showcase img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: clamp(300px, 40vw, 440px);
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(14, 31, 74, 0.08));
}

.pd-showcase-rich {
  background: var(--pd-pink-bg);
  padding: 0;
  display: block;
}

.pd-showcase-rich img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  max-width: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center;
  border-radius: var(--pd-radius);
  filter: none;
}

.pd-showcase-rich .pd-fda-badge {
  top: 18px;
  left: 18px;
  right: auto;
}

.pd-showcase-rich .pd-zoom-btn {
  top: 18px;
  bottom: auto;
  right: 18px;
}

.pd-zoom-btn {
  position: absolute;
  bottom: 18px;
  right: 18px;
  top: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: var(--pd-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  font-size: 17px;
  box-shadow: 0 4px 14px rgba(14, 31, 74, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pd-zoom-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(208, 38, 137, 0.15);
}

/* Thumbnail carousel */
.pd-thumbs-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pd-thumb-nav {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: #9ca3af;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  box-shadow: 0 2px 10px rgba(14, 31, 74, 0.06);
  transition: color 0.2s ease, box-shadow 0.2s ease;
}

.pd-thumb-nav:hover {
  color: var(--pd-accent);
  box-shadow: 0 4px 14px rgba(14, 31, 74, 0.1);
}

.pd-thumbs {
  flex: 1;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 2px;
}

.pd-thumbs::-webkit-scrollbar {
  display: none;
}

.pd-thumb-btn {
  width: 76px;
  height: 76px;
  flex-shrink: 0;
  padding: 8px;
  border: 2px solid transparent;
  border-radius: 12px;
  background: var(--pd-pink-soft);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.pd-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pd-thumb-btn:hover {
  border-color: rgba(208, 38, 137, 0.35);
}

.pd-thumb-btn.active {
  border-color: var(--pd-accent);
  background: #fff;
}

/* Info column */
.pd-info {
  padding: 4px 0 0;
}

@media (min-width: 992px) {
  .pd-info {
    padding-left: 12px;
  }
}

.pd-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pd-accent-deep);
  margin-bottom: 10px;
}

.pd-name {
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--pd-navy);
  margin: 0 0 14px;
  line-height: 1.2;
}

.pd-price {
  margin: 0 0 14px;
}

.pd-price .pf-price-badge {
  font-size: clamp(1rem, 2vw, 1.15rem);
  padding: 10px 28px 10px 15px;
}

.pd-short-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--pd-muted);
  margin: 0 0 28px;
  max-width: 540px;
}

/* Horizontal feature icons */
.pd-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (min-width: 576px) {
  .pd-features {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 24px;
  }
}

.pd-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--pd-muted);
  line-height: 1.4;
}

.pd-feature-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pd-accent);
  font-size: 18px;
}

.pd-feature-icon i {
  font-weight: 400;
}

/* Accordions */
.pd-info-panels {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.pd-info-panel {
  border: 1px solid #f0d9e4;
  border-radius: var(--pd-radius);
  background: var(--pd-pink-panel);
  overflow: hidden;
}

.pd-info-panel-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease;
}

.pd-info-panel-btn:hover {
  background: rgba(255, 255, 255, 0.45);
}

.pd-panel-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pd-panel-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: var(--pd-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(208, 38, 137, 0.1);
}

.pd-panel-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--pd-navy);
  text-transform: uppercase;
}

.pd-panel-icon {
  color: var(--pd-accent);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

.pd-info-panel-body {
  font-size: 14px;
  line-height: 1.75;
  color: var(--pd-muted);
  background: #fff;
  margin: 0 14px 14px;
  border-radius: 12px;
  padding: 16px 18px;
  border: 1px solid #f3e8ed;
}

.pd-info-panel-body p {
  margin: 0 0 10px;
}

.pd-info-panel-body p:last-child {
  margin-bottom: 0;
}

.pd-benefits-list {
  margin: 0;
  padding: 0 0 0 18px;
}

.pd-benefits-list li {
  margin-bottom: 10px;
}

.pd-benefits-list li:last-child {
  margin-bottom: 0;
}

.pd-benefits-list strong {
  color: var(--pd-navy);
}

/* CTA buttons */
.pd-cta-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  margin-bottom: 28px;
}

.pd-cta-row .pd-btn {
  flex: 1 1 0;
  min-width: 0;
}

.pd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.pd-btn-primary {
  background: var(--pd-accent-deep);
  color: #fff;
  border: 2px solid var(--pd-accent-deep);
  box-shadow: 0 8px 22px rgba(209, 0, 86, 0.22);
}

.pd-btn-primary:hover {
  background: var(--pd-accent-hover);
  border-color: var(--pd-accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(209, 0, 86, 0.28);
}

.pd-btn-outline {
  background: #fff;
  color: var(--pd-accent-deep);
  border: 2px solid var(--pd-accent-deep);
}

.pd-btn-outline:hover {
  background: var(--pd-pink-soft);
  color: var(--pd-accent-hover);
  border-color: var(--pd-accent-hover);
}

/* Trust badges */
.pd-trust-badges {
  list-style: none;
  padding: 24px 0 0;
  margin: 0;
  border-top: 1px solid var(--pd-line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (min-width: 768px) {
  .pd-trust-badges {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px 28px;
  }
}

.pd-trust-badges li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--pd-muted);
  line-height: 1.4;
}

.pd-trust-icon {
  color: var(--pd-accent);
  font-size: 18px;
  flex-shrink: 0;
}

/* ── Benefits section ── */
.pd-benefits {
  padding: var(--pd-section-y) 0;
  background: var(--pd-pink-soft);
  border-top: 1px solid var(--pd-line);
}

.pd-benefits-header {
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 56px);
  text-align: center;
}

.pd-section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pd-accent-deep);
  margin-bottom: 10px;
}

.pd-section-title {
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--pd-navy);
  margin: 0 0 16px;
}

.pd-benefits-intro p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--pd-muted);
  margin-bottom: 16px;
}

.pd-benefits-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}

.pd-benefits-checklist li {
  font-size: 13px;
  color: var(--pd-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pd-benefits-checklist i {
  color: var(--pd-accent);
}

.pd-benefit-card {
  text-align: center;
  padding: 32px 22px;
  border: 1px solid var(--pd-line);
  border-radius: var(--pd-radius);
  background: #fff;
  height: 100%;
  box-shadow: 0 4px 16px rgba(14, 31, 74, 0.04);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.pd-benefit-card:hover {
  box-shadow: 0 8px 24px rgba(14, 31, 74, 0.08);
  transform: translateY(-3px);
}

.pd-benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--pd-pink-soft);
  color: var(--pd-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.pd-benefit-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--pd-navy);
  margin-bottom: 8px;
}

.pd-benefit-card p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--pd-muted);
  margin: 0;
}

/* ── FAQ + sidebar ── */
.pd-lower {
  padding: var(--pd-section-y) 0;
  background: #fff;
}

.pd-faq-heading {
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--pd-navy);
  margin: 0 0 24px;
}

.pd-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pd-faq-item {
  border: 1px solid var(--pd-line);
  border-radius: var(--pd-radius);
  overflow: hidden;
  background: var(--pd-pink-soft);
}

.pd-faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border: 0;
  background: var(--pd-pink-soft);
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--pd-navy);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.pd-faq-btn:hover {
  background: #ffedf4;
}

.pd-faq-btn:not(.collapsed) {
  background: var(--pd-accent-deep);
  color: #fff;
}

.pd-faq-icon {
  font-size: 18px;
  color: var(--pd-accent);
  flex-shrink: 0;
}

.pd-faq-btn:not(.collapsed) .pd-faq-icon {
  color: #fff;
}

.pd-utilities .pd-faq-item {
  background: #fff;
  border-color: #f3c9dc;
}

.pd-utilities .pd-faq-btn {
  background: #fff;
  color: var(--pd-navy);
}

.pd-utilities .pd-faq-btn.collapsed {
  color: var(--pd-accent-deep);
}

.pd-utilities .pd-faq-btn.collapsed .pd-faq-icon {
  color: var(--pd-accent-deep);
}

.pd-utilities .pd-faq-body {
  background: #fff;
}

.pd-faq-body {
  padding: 16px 22px 22px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--pd-muted);
  background: #fff;
  border-top: 1px solid var(--pd-line);
}

/* Sidebar */
.pd-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 992px) {
  .pd-sidebar {
    position: sticky;
    top: 96px;
  }
}

.pd-widget {
  border: 1px solid var(--pd-line);
  border-radius: var(--pd-radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 16px rgba(14, 31, 74, 0.04);
}

.pd-widget-head {
  background: var(--pd-accent-deep);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 20px;
}

.pd-product-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pd-product-menu li {
  border-bottom: 1px solid var(--pd-line);
}

.pd-product-menu li:last-child {
  border-bottom: 0;
}

.pd-product-menu-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--pd-navy);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.pd-product-menu-link:hover {
  background: var(--pd-pink-soft);
  color: var(--pd-accent);
}

.pd-product-menu-link.active {
  background: var(--pd-accent);
  color: #fff;
}

.pd-product-menu-thumb {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--pd-pink-soft);
  padding: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pd-product-menu-link.active .pd-product-menu-thumb {
  background: rgba(255, 255, 255, 0.2);
}

.pd-product-menu-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pd-product-menu-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.pd-product-menu-name {
  font-weight: 600;
  line-height: 1.3;
}

.pd-product-menu-price {
  font-size: 12px;
  font-weight: 600;
  color: var(--pd-accent);
}

.pd-product-menu-link.active .pd-product-menu-price {
  color: rgba(255, 255, 255, 0.92);
}

.pd-sidebar-rich {
  padding-top: 0;
}

.pd-sidebar-rich .pd-sidebar {
  max-width: 420px;
  margin: 0 auto;
}

.pd-quote-form {
  padding: 22px 20px 24px;
}

.pd-form-group + .pd-form-group {
  margin-top: 14px;
}

.pd-form-group-last {
  margin-top: 14px;
}

.pd-form-group input,
.pd-form-group textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--pd-navy);
  background: #fafbfc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pd-form-group input:focus,
.pd-form-group textarea:focus {
  outline: none;
  border-color: var(--pd-accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(208, 38, 137, 0.1);
}

.pd-form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.pd-submit-btn {
  width: 100%;
  margin-top: 18px;
  padding: 14px;
  border: 0;
  border-radius: 10px;
  background: var(--pd-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(208, 38, 137, 0.22);
  transition: background 0.2s ease;
}

.pd-submit-btn:hover {
  background: var(--pd-accent-hover);
}

.pd-help-card {
  border: 1px solid var(--pd-line);
  border-radius: var(--pd-radius);
  background: var(--pd-navy);
  overflow: hidden;
}

.pd-help-content {
  padding: 24px 20px;
  color: #fff;
}

.pd-help-title {
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.pd-help-item {
  margin: 0 0 8px;
  font-size: 13px;
}

.pd-help-item a {
  color: #fff;
  text-decoration: none;
}

.pd-help-item a:hover {
  color: #ffb8dc;
}

/* Lightbox */
.pd-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(14, 31, 74, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.pd-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.pd-lightbox-inner img {
  max-width: min(90vw, 640px);
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--pd-radius);
}

.pd-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pd-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Nav */
.product-detail-page .navbar-nav-main .nav-link[data-nav="products"],
.product-detail-page .navbar-nav-main .nav-link.active[data-nav="products"] {
  color: var(--pink-primary) !important;
}

.product-detail-page .navbar-nav-main .nav-link[data-nav="products"]::before,
.product-detail-page .navbar-nav-main .nav-link.active[data-nav="products"]::before {
  transform: scaleX(1);
  opacity: 1;
}

.product-detail-page .navbar-nav-main .nav-link.active:not([data-nav="products"]) {
  color: var(--navy) !important;
}

.product-detail-page .navbar-nav-main .nav-link.active:not([data-nav="products"])::before {
  transform: scaleX(0);
  opacity: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .pd-sidebar {
    margin-top: 24px;
  }

  .pd-cta-row {
    flex-wrap: nowrap;
  }

  .pd-cta-row .pd-btn {
    flex: 1 1 0;
    min-width: 0;
  }

  .pd-main {
    padding-top: 16px;
  }

  .pd-info {
    padding-top: 20px;
  }
}

@media (max-width: 767px) {
  .pd-topbar {
    padding: 16px 0 4px;
  }

  .pd-breadcrumb {
    font-size: 12px;
    line-height: 1.5;
  }

  .pd-breadcrumb .bc-sep {
    margin: 0 6px;
  }

  .pd-name {
    font-size: 1.65rem;
  }

  .pd-panel-title {
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .pd-info-panel-btn {
    padding: 14px 16px;
  }

  .pd-faq-btn {
    padding: 14px 16px;
    font-size: 14px;
  }

  .pd-benefits-checklist {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .pd-benefit-card {
    padding: 24px 18px;
  }

  .pd-trust-badges {
    gap: 12px;
  }

  .pd-trust-badges li {
    font-size: 12px;
  }
}

@media (max-width: 575px) {
  .pd-showcase {
    min-height: 260px;
    padding: 20px 12px;
  }

  .pd-showcase img {
    max-height: 220px;
  }

  .pd-thumb-btn {
    width: 56px;
    height: 56px;
  }

  .pd-thumb-nav {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .pd-features {
    flex-direction: column;
  }

  .pd-main {
    padding-bottom: 48px;
  }

  .pd-benefits,
  .pd-lower {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .pd-lightbox {
    padding: 16px;
  }

  .pd-lightbox-close {
    top: 12px;
    right: 12px;
  }
}

/* ============================================
   RICH PRODUCT LAYOUT (Ruby-style)
   ============================================ */

.pd-fda-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--pd-accent-deep);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  box-shadow: 0 8px 22px rgba(209, 0, 86, 0.28);
}

.pd-cert-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--pd-line);
}

.pd-cert-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--pd-muted);
  font-weight: 600;
}

.pd-cert-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 24, 122, 0.22);
  background: #fff;
  color: var(--pd-accent-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.pd-check-grid {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 10px 18px;
}

@media (min-width: 576px) {
  .pd-check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.pd-check-grid li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--pd-text);
}

.pd-check-grid i {
  color: var(--pd-accent-deep);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.pd-suggest-box {
  border: 1px solid #f3c9dc;
  border-radius: var(--pd-radius);
  background: #fff8fb;
  padding: 16px 18px;
  margin-bottom: 22px;
}

.pd-suggest-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--pd-navy);
}

.pd-suggest-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  color: var(--pd-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  box-shadow: 0 2px 8px rgba(208, 38, 137, 0.12);
}

.pd-suggest-box p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--pd-muted);
}

.pd-suggest-box p:last-child {
  margin-bottom: 0;
}

.pd-purchase-price {
  flex: 1 1 100%;
  margin: 0 0 4px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pd-accent);
}

.pd-cta-row .pd-purchase-price {
  margin-bottom: 12px;
}

.products-hero-price {
  margin: 0 0 10px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  color: #c9187a;
}

.pd-purchase {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
  margin-bottom: 20px;
}

.pd-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--pd-line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  min-height: 50px;
}

.pd-qty-btn {
  width: 42px;
  border: 0;
  background: #fff;
  color: var(--pd-navy);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.pd-qty-btn:hover {
  background: var(--pd-pink-soft);
  color: var(--pd-accent);
}

.pd-qty-input {
  width: 48px;
  border: 0;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--pd-navy);
  background: transparent;
  -moz-appearance: textfield;
}

.pd-qty-input::-webkit-outer-spin-button,
.pd-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.pd-purchase-actions {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 12px;
  min-width: 0;
}

.pd-btn-buy,
.pd-btn-cart {
  flex: 1 1 0;
  min-height: 50px;
  min-width: 0;
}

.pd-assurances {
  list-style: none;
  padding: 18px 0 0;
  margin: 0;
  border-top: 1px solid var(--pd-line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
}

@media (min-width: 768px) {
  .pd-assurances {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.pd-assurances li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--pd-muted);
}

.pd-assurances i {
  color: var(--pd-accent);
  font-size: 15px;
}

/* Supports row */
.pd-supports {
  padding: var(--pd-section-y) 0;
  background: #fff;
  border-top: 1px solid var(--pd-line);
}

/* Rich supports (Ruby reference layout) */
.pd-supports-rich {
  background:
    radial-gradient(ellipse 80% 60% at 15% 100%, rgba(255, 182, 210, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse 70% 50% at 90% 90%, rgba(255, 160, 195, 0.28) 0%, transparent 65%),
    linear-gradient(180deg, #fff 0%, #fef7f9 100%);
  border-top: none;
  overflow: hidden;
}

.pd-supports-stage {
  position: relative;
  padding: clamp(12px, 2vw, 24px) 0;
}

.pd-supports-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(201, 24, 122, 0.08), 0 2px 12px rgba(14, 31, 74, 0.04);
  padding: clamp(36px, 4.5vw, 52px) clamp(20px, 3vw, 40px) clamp(28px, 3.5vw, 36px);
  overflow: hidden;
}

.pd-supports-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(32px, 4vw, 44px);
}

.pd-supports-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pd-accent-deep);
}

.pd-supports-eyebrow-line {
  flex: 1;
  max-width: 72px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 24, 122, 0.45), transparent);
}

.pd-supports-lotus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  color: var(--pd-accent-deep);
  font-size: 22px;
}

.pd-supports-heading {
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 700;
  color: var(--pd-navy);
  margin: 0 0 14px;
  line-height: 1.2;
}

.pd-supports-lead {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--pd-muted);
}

.pd-benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-bottom: clamp(24px, 3vw, 32px);
}

.pd-benefit-col {
  position: relative;
  text-align: center;
  padding: 0 clamp(10px, 1.2vw, 16px) 8px;
}

.pd-benefit-col:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 4%;
  right: 0;
  width: 1px;
  height: 92%;
  background: #ebe2e8;
}

.pd-benefit-icon-stack {
  position: relative;
  width: 92px;
  height: 92px;
  margin: 0 auto 16px;
}

.pd-benefit-icon-wrap {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  color: var(--pd-accent-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  border: 2px solid rgba(248, 180, 210, 0.85);
  box-shadow:
    0 0 0 10px rgba(255, 236, 243, 0.95),
    0 0 32px rgba(255, 170, 200, 0.35);
}

.pd-benefit-icon-wrap i {
  font-weight: 400;
  stroke-width: 0.5px;
}

.pd-benefit-check {
  position: absolute;
  right: 2px;
  bottom: 2px;
  width: 26px;
  height: 26px;
  margin: 0;
  border-radius: 50%;
  background: var(--pd-accent-deep);
  color: #fff;
  border: 2.5px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(201, 24, 122, 0.28);
  z-index: 2;
}

.pd-benefit-col h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--pd-navy);
  margin: 0 0 10px;
  line-height: 1.35;
  padding: 0 4px;
}

.pd-benefit-col p {
  font-size: 11.5px;
  line-height: 1.65;
  color: var(--pd-muted);
  margin: 0 0 14px;
}

.pd-benefit-tagline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 auto;
  padding: 8px 10px;
  border-radius: 8px;
  background: #fef2f6;
  font-size: 9.5px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--pd-accent-deep);
  max-width: 100%;
}

.pd-benefit-tagline i {
  font-size: 11px;
  flex-shrink: 0;
}

.pd-benefit-tagline span {
  text-align: left;
}

.pd-supports-trust {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px 16px;
  padding: clamp(20px, 2.5vw, 28px) 0 0;
  background: transparent;
  border-radius: 0;
  border-top: 1px solid #f3e8ee;
}

.pd-supports-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
}

.pd-supports-trust-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--pd-accent-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(201, 24, 122, 0.08);
}

.pd-supports-trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.pd-supports-trust-text strong {
  font-size: 11px;
  font-weight: 700;
  color: var(--pd-navy);
  line-height: 1.3;
}

.pd-supports-trust-text span {
  font-size: 10px;
  line-height: 1.45;
  color: var(--pd-muted);
}

/* Why You'll Love — glass cards on lotus background */
.pd-love {
  padding: clamp(52px, 7vw, 88px) clamp(12px, 2vw, 24px) var(--pd-section-y);
  background: #fff;
  border-top: none;
}

.pd-love-stage {
  position: relative;
  overflow: hidden;
  border-radius: clamp(18px, 2.5vw, 28px);
  padding: clamp(48px, 6vw, 72px) 0 clamp(40px, 5vw, 56px);
  min-height: clamp(520px, 44vw, 660px);
  background-color: #fdeef4;
  background-image:
    linear-gradient(180deg, rgba(255, 248, 251, 0.28) 0%, rgba(255, 242, 247, 0.18) 100%),
    url('../../images/pink_background.png');
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: cover;
}

.pd-love-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(36px, 4.5vw, 52px);
}

.pd-love-eyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9187a;
}

.pd-love-brand {
  margin: 0 0 18px;
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.pd-love-brand-dark {
  color: #0e1f4a;
}

.pd-love-brand-pink {
  color: #c9187a;
}

.pd-love-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.pd-love-divider-line {
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 24, 122, 0.45), transparent);
}

.pd-love-divider-lotus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #c9187a;
  font-size: 18px;
}

.pd-love-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 18px);
  align-items: stretch;
}

.pd-love-card {
  text-align: center;
  padding: clamp(26px, 3vw, 34px) clamp(14px, 1.5vw, 18px) clamp(30px, 3.5vw, 38px);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    0 10px 36px rgba(194, 24, 91, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.38s ease,
    border-color 0.38s ease;
}

@media (hover: hover) and (pointer: fine) {
  .pd-love-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(255, 255, 255, 0.98);
    box-shadow:
      0 22px 52px rgba(194, 24, 91, 0.16),
      0 10px 28px rgba(201, 24, 122, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.98);
  }
}

.pd-love-card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: #c9187a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 8px 24px rgba(255, 255, 255, 0.95),
    0 4px 16px rgba(194, 24, 91, 0.08);
  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.3s ease,
    box-shadow 0.38s ease,
    background 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .pd-love-card:hover .pd-love-card-icon {
    transform: scale(1.1);
    color: #a31262;
    background: rgba(255, 255, 255, 0.98);
    box-shadow:
      0 12px 28px rgba(255, 255, 255, 0.98),
      0 6px 20px rgba(201, 24, 122, 0.18);
  }
}

.pd-love-card h3 {
  font-size: clamp(12px, 1vw, 13px);
  font-weight: 700;
  color: #0e1f4a;
  margin: 0 0 12px;
  line-height: 1.45;
  transition: color 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .pd-love-card:hover h3 {
    color: #c9187a;
  }
}

.pd-love-card-rule {
  display: block;
  width: 28px;
  height: 2px;
  margin: 0 auto 14px;
  border-radius: 2px;
  background: linear-gradient(90deg, #e8a4c4, #c9187a);
  transition: width 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) and (pointer: fine) {
  .pd-love-card:hover .pd-love-card-rule {
    width: 48px;
  }
}

.pd-love-card p {
  font-size: clamp(11px, 0.9vw, 12px);
  line-height: 1.7;
  color: #4f5d70;
  margin: 0;
  transition: color 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .pd-love-card:hover p {
    color: #3a4556;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pd-love-card,
  .pd-love-card-icon,
  .pd-love-card-rule,
  .pd-love-card h3,
  .pd-love-card p {
    transition: none;
  }

  .pd-love-card:hover,
  .pd-love-card:hover .pd-love-card-icon {
    transform: none;
  }
}

/* Overview section */
.pd-overview-section {
  padding: var(--pd-section-y) 0 calc(var(--pd-section-y) + clamp(40px, 5vw, 60px));
  background: #fdf4f7;
  border-top: none;
  overflow: visible;
}

.pd-overview-section > .container {
  overflow: visible;
  padding-left: clamp(24px, 5vw, 48px);
  padding-right: clamp(24px, 5vw, 48px);
}

@media (min-width: 992px) {
  .pd-overview-section > .container {
    padding-left: clamp(48px, 8vw, 100px);
  }
}

.pd-overview-card {
  position: relative;
  display: flex;
  flex-direction: column;
  --pd-card-pad-x: clamp(32px, 4vw, 48px);
  --pd-card-pad-b: clamp(28px, 3.5vw, 36px);
  background: #fff;
  border: 1px solid #f0e4ea;
  border-radius: 22px;
  padding: clamp(36px, 4.5vw, 52px) var(--pd-card-pad-x) var(--pd-card-pad-b);
  box-shadow: 0 12px 40px rgba(201, 24, 122, 0.08), 0 2px 12px rgba(14, 31, 74, 0.04);
  overflow: visible;
}

.pd-overview-main {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 20px);
  height: 100%;
  min-width: 0;
}

.pd-overview-copy-wrap {
  max-width: 100%;
  min-width: 0;
  padding-bottom: clamp(72px, 9vw, 110px);
}

.pd-overview-copy {
  font-size: 14px;
  line-height: 1.75;
  color: var(--pd-muted);
  margin: 0 0 14px;
  overflow-wrap: break-word;
}

.pd-overview-copy:last-child {
  margin-bottom: 0;
}

.pd-overview-content {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.pd-overview-tag {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pd-accent-deep);
  margin-bottom: 10px;
}

.pd-overview-title {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  color: var(--pd-navy);
  margin: 0 0 18px;
  line-height: 1.2;
}

.pd-overview-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 14px;
  border-radius: 2px;
  background: var(--pd-accent-deep);
}

.pd-overview-product-float {
  position: absolute;
  left: 0;
  /* PNG has ~108px transparent padding at bottom — pull down to sync visual base with card */
  bottom: calc(-1 * clamp(280px, 32vw, 380px) * 108 / 1536);
  display: flex;
  align-items: flex-end;
  width: clamp(280px, 32vw, 380px);
  z-index: 6;
  pointer-events: none;
  transform: translateX(-50%);
  line-height: 0;
}

.pd-overview-product-float img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: left bottom;
  vertical-align: bottom;
  filter: drop-shadow(0 14px 28px rgba(201, 24, 122, 0.16));
}

.pd-overview-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.pd-overview-ideal {
  background: #fff0f3;
  border: 1px solid #f5d8e6;
  border-radius: 16px;
  padding: 22px 22px 8px;
  flex-shrink: 0;
}

.pd-overview-ideal-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.pd-overview-ideal-icon-solid {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pd-accent-deep);
  border: none;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.pd-overview-ideal-head strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--pd-navy);
  line-height: 1.35;
}

.pd-overview-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pd-overview-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--pd-muted);
  padding: 14px 0;
  border-top: 1px solid rgba(245, 200, 220, 0.85);
}

.pd-overview-checklist li:first-child {
  border-top: 0;
  padding-top: 0;
}

.pd-overview-checklist li:last-child {
  padding-bottom: 14px;
}

.pd-overview-bullet-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #f0b8d0;
  color: var(--pd-accent-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  box-shadow: 0 2px 8px rgba(201, 24, 122, 0.1);
}

.pd-overview-certs-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background: #fff;
  border: 1px solid #ece8eb;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(14, 31, 74, 0.04);
  flex-shrink: 0;
}

.pd-overview-cert {
  padding: 16px 10px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-height: 0;
}

.pd-overview-cert-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: var(--pd-accent-deep);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.pd-overview-cert:not(:last-child) {
  border-right: 1px solid #ece8eb;
}

.pd-overview-cert-text {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pd-overview-cert-line {
  display: block;
  font-size: 8px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--pd-navy);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Key Ingredients section */
.pd-ingredients-section {
  padding: var(--pd-section-y) 0 0;
  background: linear-gradient(180deg, #fff 0%, #fefafb 38%, #fdf4f7 100%);
  border-top: none;
  overflow: hidden;
}

.pd-ingredients-section > .container {
  max-width: 1200px;
}

.pd-ingredients-head-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(36px, 5vw, 56px);
}

.pd-ingredients-tag {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pd-accent-deep);
  margin-bottom: 12px;
}

.pd-ingredients-title {
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 700;
  color: var(--pd-navy);
  margin: 0 0 14px;
  line-height: 1.2;
}

.pd-ingredients-lotus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: var(--pd-accent-deep);
  font-size: 24px;
}

.pd-ingredients-lead {
  font-size: 14px;
  line-height: 1.8;
  color: var(--pd-muted);
  margin: 0;
}

.pd-ingredients-radial {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 680px) minmax(0, 1fr);
  gap: clamp(4px, 0.8vw, 12px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding-bottom: clamp(32px, 4vw, 48px);
  min-height: clamp(500px, 52vw, 700px);
}

.pd-ingredients-radial::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(78%, 720px);
  height: min(92%, 680px);
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 48%, rgba(253, 228, 240, 0.72) 0%, rgba(253, 244, 247, 0.28) 48%, transparent 74%);
  z-index: 1;
  pointer-events: none;
}

.pd-ingredients-radial--bg-ingredient::before {
  display: none;
}

.pd-ingredients-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}

.pd-ingredients-col {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(24px, 3.5vw, 40px);
  min-width: 0;
  min-height: clamp(400px, 42vw, 520px);
}

.pd-ingredients-col--left {
  align-items: flex-end;
  padding-right: clamp(4px, 1vw, 12px);
}

.pd-ingredients-col--right {
  align-items: flex-start;
  padding-left: clamp(4px, 1vw, 12px);
}

.pd-ingredients-center {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.pd-ingredients-center-stage {
  position: relative;
  width: min(100%, 620px);
  min-height: clamp(520px, 54vw, 720px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-ingredients-center-glow {
  position: absolute;
  inset: 0 2%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 50%, rgba(253, 230, 240, 0.98) 0%, rgba(253, 244, 247, 0.4) 50%, transparent 75%);
  pointer-events: none;
}

.pd-ingredients-center-bottle {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 600px;
  height: auto;
  max-height: min(720px, 85vh);
  display: block;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 32px 64px rgba(201, 24, 122, 0.22));
  mix-blend-mode: multiply;
}

.pd-ingredients-radial--bg-ingredient {
  grid-template-columns: minmax(0, 1fr) minmax(520px, 920px) minmax(0, 1fr);
  min-height: clamp(480px, 50vw, 640px);
  padding-bottom: clamp(28px, 4vw, 44px);
  overflow: visible;
}

.pd-ingredients-radial--bg-ingredient .pd-ingredients-col {
  min-height: clamp(400px, 42vw, 500px);
}

.pd-ingredients-center-stage--bg-ingredient {
  width: 100%;
  max-width: 100%;
  min-height: clamp(420px, 44vw, 540px);
  overflow: visible;
}

.pd-ingredients-center-bottle--bg-ingredient {
  width: 100%;
  max-width: 100%;
  max-height: clamp(420px, 44vw, 540px);
  margin-left: 0;
  transform: none;
  object-fit: contain;
  object-position: center center;
  filter: none;
  mix-blend-mode: normal;
}

.pd-ingredient-card {
  position: relative;
  max-width: 280px;
  width: 100%;
}

.pd-ingredient-card--left {
  margin-left: auto;
  padding-right: clamp(16px, 2.5vw, 32px);
}

.pd-ingredient-card--right {
  margin-right: auto;
  padding-left: clamp(16px, 2.5vw, 32px);
}

.pd-ingredient-card-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pd-ingredient-card--left .pd-ingredient-card-inner {
  flex-direction: row-reverse;
  text-align: right;
}

.pd-ingredient-card--right .pd-ingredient-card-inner {
  flex-direction: row;
  text-align: left;
}

.pd-ingredient-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pd-accent-deep);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid #fff;
  box-shadow: 0 4px 12px rgba(201, 24, 122, 0.35);
}

.pd-ingredient-name {
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--pd-navy);
  margin: 0;
  line-height: 1.35;
}

.pd-ingredient-name-short {
  display: none;
}

.pd-ingredient-foot-wrap {
  margin: 0 calc(-1 * var(--bs-gutter-x, 12px));
}

.pd-ingredient-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 0;
  padding: 18px clamp(24px, 5vw, 48px);
  background: #fff8fa;
  border: none;
  border-top: 1px solid rgba(245, 200, 220, 0.75);
  border-radius: 0;
}

.pd-ingredient-foot-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  background: #fff;
  border: 1.5px solid #f5c8dc;
  color: var(--pd-accent-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.pd-ingredient-foot p {
  flex: 1;
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--pd-muted);
  text-align: center;
  max-width: 640px;
}

.pd-ingredient-foot p em {
  font-style: italic;
}

.pd-ingredient-foot-flask {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pd-ingredient-foot-flask img {
  width: 48px;
  height: 48px;
  opacity: 0.92;
  object-fit: contain;
}

@media (max-width: 991.98px) {
  .pd-ingredients-radial {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 560px;
    min-height: 0;
    padding-bottom: 24px;
  }

  .pd-ingredients-col {
    display: contents;
  }

  .pd-ingredients-col--left,
  .pd-ingredients-col--right {
    align-items: stretch;
  }

  .pd-ingredient-card,
  .pd-ingredient-card--left,
  .pd-ingredient-card--right {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    max-width: none;
    width: 100%;
  }

  .pd-ingredient-card-inner {
    min-height: 36px;
  }

  .pd-ingredient-card--left .pd-ingredient-card-inner,
  .pd-ingredient-card--right .pd-ingredient-card-inner {
    flex-direction: row;
    text-align: left;
  }

  .pd-ingredient-name {
    font-size: 15px;
    letter-spacing: 0.04em;
    line-height: 1.25;
  }

  .pd-ingredient-name-full {
    display: none;
  }

  .pd-ingredient-name-short {
    display: inline;
    text-transform: none;
  }

  .pd-ingredients-lines {
    display: none;
  }

  .pd-ingredients-center {
    order: -1;
    margin-bottom: 8px;
  }

  .pd-ingredients-radial::before {
    width: min(92%, 420px);
    height: min(70%, 420px);
  }

  .pd-ingredients-radial--bg-ingredient::before {
    display: none;
  }

  .pd-ingredients-center-stage {
    width: min(400px, 94vw);
    min-height: 440px;
  }

  .pd-ingredients-center-stage--bg-ingredient {
    width: 100%;
    max-width: min(520px, 96vw);
    min-height: 400px;
  }

  .pd-ingredients-center-bottle {
    max-width: 380px;
  }

  .pd-ingredients-center-bottle--bg-ingredient {
    width: 100%;
    max-width: 100%;
    max-height: 420px;
    margin-left: 0;
    transform: none;
  }
}

@media (max-width: 575px) {
  .pd-ingredients-center-stage,
  .pd-ingredients-center-stage--bg-ingredient {
    min-height: 280px;
    width: 100%;
  }

  .pd-ingredients-center-bottle,
  .pd-ingredients-center-bottle--bg-ingredient {
    max-width: 280px;
    max-height: 300px;
  }

  .pd-closing-trust {
    grid-template-columns: 1fr;
  }

  .pd-crosssell-card {
    flex-direction: row;
    align-items: flex-start;
    padding: 12px 14px;
    gap: 10px;
  }

  .pd-crosssell-media {
    width: 64px;
    height: 64px;
    padding: 5px;
  }

  .pd-crosssell-body h3 {
    font-size: 13px;
  }

  .pd-crosssell-body p {
    font-size: 11px;
    line-height: 1.5;
  }

  .pd-crosssell-tags {
    flex-wrap: wrap;
    gap: 5px;
    margin: 8px 0 10px;
  }

  .pd-crosssell-tag {
    font-size: 9px;
    padding: 4px 7px;
  }

  .pd-crosssell-link {
    font-size: 10px;
  }
}

/* Utilities — How to Take + FAQ on lotus background */
.pd-utilities {
  padding: clamp(24px, 3vw, 40px) clamp(12px, 2vw, 24px) var(--pd-section-y);
  background: #fff;
  border-top: none;
}

.pd-utilities-stage {
  position: relative;
  overflow: hidden;
  border-radius: clamp(18px, 2.5vw, 28px);
  padding: clamp(48px, 6vw, 72px) 0 clamp(40px, 5vw, 56px);
  min-height: clamp(680px, 62vw, 920px);
  background-color: #fdeef4;
  background-image: url('../../images/last-background.png');
  background-repeat: no-repeat;
  background-position: 42% center;
  background-size: cover;
}

.pd-utilities-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 248, 251, 0.62) 0%,
    rgba(255, 245, 249, 0.28) 34%,
    rgba(255, 242, 247, 0.06) 50%,
    transparent 62%
  );
  pointer-events: none;
}

.pd-utilities-stage > .container {
  position: relative;
  z-index: 1;
}

.pd-utilities-grid {
  display: grid;
  grid-template-columns: minmax(260px, 34%) minmax(200px, 28%) minmax(280px, 38%);
  grid-template-rows: auto auto auto;
  grid-template-areas:
    "head  .    faq"
    "steps hero faq"
    "tip   .    faq";
  gap: clamp(16px, 2vw, 28px);
  align-items: stretch;
}

.pd-utilities-grid--no-tip {
  grid-template-rows: auto auto;
  grid-template-areas:
    "head  .    faq"
    "steps hero faq";
}

.pd-utilities-grid--no-hero {
  grid-template-columns: minmax(260px, 42%) minmax(280px, 1fr);
  grid-template-areas:
    "head faq"
    "steps faq"
    "tip faq";
}

.pd-utilities-grid--no-hero.pd-utilities-grid--no-tip {
  grid-template-rows: auto auto;
  grid-template-areas:
    "head faq"
    "steps faq";
}

.pd-utilities-head {
  grid-area: head;
  max-width: 420px;
}

.pd-utilities-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9187a;
}

.pd-utilities-eyebrow i {
  font-size: 14px;
}

.pd-utilities-brand {
  margin: 0 0 14px;
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.pd-utilities-brand-dark {
  color: #0e1f4a;
}

.pd-utilities-brand-pink {
  color: #c9187a;
}

.pd-utilities-brand-rule {
  display: block;
  width: 52px;
  height: 2px;
  margin-bottom: clamp(24px, 3vw, 32px);
  border-radius: 2px;
  background: linear-gradient(90deg, #e8a4c4, #c9187a);
}

.pd-utilities-steps {
  grid-area: steps;
  max-width: 420px;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}

.pd-utilities-steps::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 28px;
  bottom: 28px;
  border-left: 2px dashed rgba(201, 24, 122, 0.32);
  pointer-events: none;
}

.pd-utilities-step {
  display: grid;
  grid-template-columns: 32px 64px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px 0;
}

.pd-utilities-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 24, 122, 0.38);
  background: rgba(255, 255, 255, 0.82);
  color: #c9187a;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.pd-utilities-step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #c9187a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow:
    0 10px 28px rgba(194, 24, 91, 0.1),
    0 4px 14px rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.95);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
  .pd-utilities-step:hover .pd-utilities-step-icon {
    transform: scale(1.06);
    box-shadow:
      0 14px 32px rgba(194, 24, 91, 0.16),
      0 6px 18px rgba(255, 255, 255, 0.95);
  }
}

.pd-utilities-step p {
  margin: 0;
  min-width: 0;
  font-size: clamp(12px, 1vw, 13px);
  line-height: 1.65;
  color: #4f5d70;
  overflow-wrap: break-word;
}

.pd-utilities-step p strong {
  color: #0e1f4a;
  font-weight: 700;
}

.pd-utilities-tip {
  grid-area: tip;
  max-width: 420px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 0;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pd-utilities-tip-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #c9187a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 6px 18px rgba(194, 24, 91, 0.1);
}

.pd-utilities-tip p {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
  color: #4f5d70;
}

.pd-utilities-tip strong {
  color: #c9187a;
}

.pd-utilities-hero {
  grid-area: hero;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 480px;
  min-height: 0;
  margin: 0 auto;
  pointer-events: none;
}

.pd-utilities-hero-img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 22px 44px rgba(194, 24, 91, 0.22));
  mix-blend-mode: lighten;
}

.pd-utilities-faq {
  grid-area: faq;
  position: relative;
  z-index: 2;
}

.pd-utilities-faq-card {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 20px;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 20px 52px rgba(194, 24, 91, 0.12),
    0 8px 24px rgba(14, 31, 74, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.pd-utilities-faq-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.pd-utilities-faq-head-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(253, 238, 244, 0.95);
  color: #c9187a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.pd-utilities-faq-title {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0e1f4a;
}

.pd-utilities-faq-list {
  gap: 0 !important;
}

.pd-utilities-faq-list .pd-faq-item {
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #ece8eb;
  background: transparent;
  overflow: visible;
}

.pd-utilities-faq-list .pd-faq-item:last-child {
  border-bottom: none;
}

.pd-utilities-faq-list .pd-faq-btn {
  padding: 16px 0;
  background: transparent;
  font-size: clamp(12px, 1vw, 13px);
  font-weight: 600;
  line-height: 1.45;
}

.pd-utilities-faq-list .pd-faq-btn:not(.collapsed) {
  background: transparent;
  color: #c9187a;
}

.pd-utilities-faq-list .pd-faq-btn.collapsed {
  color: #0e1f4a;
}

.pd-utilities-faq-list .pd-faq-btn.collapsed .pd-faq-icon,
.pd-utilities-faq-list .pd-faq-btn:not(.collapsed) .pd-faq-icon {
  color: #c9187a;
}

.pd-utilities-faq-list .pd-faq-btn:hover {
  background: rgba(253, 238, 244, 0.45);
}

.pd-utilities-faq-list .pd-faq-body {
  padding: 0 0 16px;
  border-top: none;
  background: transparent;
  font-size: 12px;
  line-height: 1.7;
}

.pd-utilities-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  margin-top: clamp(36px, 4.5vw, 52px);
  padding: clamp(20px, 2.5vw, 28px) clamp(18px, 2.5vw, 32px);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 36px rgba(194, 24, 91, 0.08);
}

.pd-utilities-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pd-utilities-feature-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #c9187a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 6px 18px rgba(194, 24, 91, 0.1);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) and (pointer: fine) {
  .pd-utilities-feature:hover .pd-utilities-feature-icon {
    transform: scale(1.08);
  }
}

.pd-utilities-feature h3 {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 700;
  color: #0e1f4a;
  line-height: 1.35;
}

.pd-utilities-feature p {
  margin: 0;
  font-size: 11px;
  line-height: 1.55;
  color: #5a6678;
}

.pd-utilities-tagline {
  margin: clamp(28px, 3.5vw, 40px) 0 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  color: #4f5d70;
}

.pd-utilities-tagline i {
  color: #c9187a;
  margin-right: 8px;
  font-size: 15px;
}

.pd-utilities-tagline strong {
  color: #c9187a;
  font-weight: 700;
}

.pd-widget-foot {
  padding: 14px 18px 16px;
  border-top: 1px solid var(--pd-line);
  background: #fff;
}

.pd-widget-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pd-accent);
  text-decoration: none;
}

.pd-widget-link:hover {
  color: var(--pd-accent-hover);
}

/* Closing: cross-sell + CTA */
.pd-closing {
  padding: var(--pd-section-y) 0;
  background: #fff;
  border-top: none;
  position: relative;
  overflow: visible;
}

.pd-closing-title {
  margin: 0;
}

.pd-closing-modern {
  padding: clamp(36px, 5vw, 64px) 0;
  background: linear-gradient(180deg, #fff 0%, #fefafb 42%, #fdf4f7 100%);
}

.pd-closing-head {
  max-width: 760px;
  margin: 0 auto clamp(24px, 4vw, 34px);
  text-align: left;
}

.pd-closing-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0e1f4a;
}

.pd-closing-eyebrow i {
  color: #c9187a;
  font-size: 14px;
}

.pd-closing-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #0e1f4a;
}

.pd-closing-title-pink {
  color: #c9187a;
}

.pd-closing-sub {
  margin: 10px 0 0;
  max-width: 520px;
  font-size: 13px;
  line-height: 1.7;
  color: #5a6678;
}

.pd-closing-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(420px, 1.15fr);
  gap: clamp(18px, 2.6vw, 28px);
  align-items: stretch;
}

.pd-closing-left {
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pd-closing-right {
  min-width: 0;
  display: flex;
  overflow: visible;
  height: 100%;
}

.pd-closing-left:only-child {
  grid-column: 1 / -1;
}

.pd-crosssell-stack {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 16px;
  flex: 1;
  height: 100%;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.pd-crosssell-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pd-accent);
  margin-bottom: 4px;
}

.pd-closing-cta {
  position: relative;
  overflow: visible;
  border-radius: clamp(18px, 2.2vw, 26px);
  border: 1px solid rgba(201, 24, 122, 0.16);
  background: linear-gradient(120deg, #fdf1f7 0%, #f9dce9 52%, #f6cfe2 100%);
  padding: clamp(28px, 3.4vw, 40px);
  padding-right: clamp(220px, 44%, 400px);
  min-height: clamp(320px, 32vw, 400px);
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.pd-closing-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(520px 240px at 24% 24%, rgba(255, 255, 255, 0.5), transparent 70%);
  pointer-events: none;
}

.pd-closing-cta-copy h3 {
  margin: 0 0 10px;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #0e1f4a;
  max-width: none;
  line-height: 1.2;
}

.pd-closing-cta-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 100%;
  max-width: 100%;
  padding-right: clamp(8px, 2vw, 16px);
}

.pd-closing-cta-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #c9187a;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(201, 24, 122, 0.22);
  margin-bottom: 10px;
}

.pd-closing-cta-rule {
  display: block;
  width: 56px;
  height: 2px;
  margin-bottom: 12px;
  border-radius: 2px;
  background: linear-gradient(90deg, #c9187a, #ef9dc8);
}

.pd-closing-cta-copy p {
  margin: 0 0 clamp(18px, 3vw, 28px);
  font-size: clamp(12px, 0.95vw, 13px);
  line-height: 1.75;
  color: #4f5d70;
  max-width: none;
  flex: 1;
}

.pd-closing-cta-media {
  position: absolute;
  right: clamp(-104px, -8vw, -56px);
  bottom: clamp(-36px, -3vw, -18px);
  top: clamp(-28px, -2.5vw, -14px);
  width: min(84%, 820px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
  z-index: 1;
  padding: 0;
}

.pd-closing-cta-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 20px 40px rgba(194, 24, 91, 0.22));
  mix-blend-mode: lighten;
  transform: translateX(18%) scale(1.38);
  transform-origin: right bottom;
}

.pd-closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.pd-closing-actions .pd-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 10px;
  min-height: 42px;
  padding: 11px 18px;
}

.pd-closing-actions .pd-btn i {
  font-size: 12px;
}

.pd-closing-actions .pd-btn-primary {
  background: linear-gradient(90deg, #d60b72, #c9187a);
  border-color: #c9187a;
  box-shadow: 0 10px 24px rgba(201, 24, 122, 0.22);
}

.pd-closing-actions .pd-btn-outline {
  background: #fff;
  color: #c9187a;
  border-color: #d85f9e;
}

.pd-crosssell-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 12px;
}

.pd-crosssell-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(201, 24, 122, 0.18);
  color: #0e1f4a;
  font-size: 11px;
  font-weight: 600;
}

.pd-closing-trust {
  margin-top: clamp(18px, 2.8vw, 26px);
  padding: 16px 18px;
  border-radius: clamp(18px, 2.2vw, 22px);
  border: 1px solid rgba(201, 24, 122, 0.14);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.pd-closing-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pd-closing-trust-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fdeef4;
  color: #c9187a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 24, 122, 0.18);
}

.pd-closing-trust-item h4 {
  margin: 0 0 2px;
  font-size: 12px;
  font-weight: 800;
  color: #0e1f4a;
  line-height: 1.3;
}

.pd-closing-trust-item p {
  margin: 0;
  font-size: 11px;
  color: #5a6678;
  line-height: 1.45;
}

.pd-closing-tagline {
  margin: 14px 0 0;
  text-align: center;
  font-size: 13px;
  line-height: 1.55;
  color: #7a2a57;
}

.pd-closing-tagline i {
  color: #c9187a;
  margin-right: 8px;
  font-size: 14px;
}

.pd-closing-tagline strong {
  color: #c9187a;
  font-weight: 800;
}

/* FDA disclaimer */
.pd-fda {
  padding: 24px 0 32px;
  background: #fff;
  border-top: 1px solid var(--pd-line);
}

.pd-fda p {
  margin: 0;
  font-size: 11px;
  line-height: 1.7;
  color: #666;
  text-align: center;
  max-width: 920px;
  margin-inline: auto;
}

.pd-crosssell-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(201, 24, 122, 0.16);
  border-radius: 18px;
  background: var(--pd-pink-soft);
  flex: 1 1 0;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.pd-crosssell-card:hover {
  box-shadow: 0 8px 24px rgba(14, 31, 74, 0.08);
  transform: translateY(-2px);
}

.pd-crosssell-media {
  width: 88px;
  height: 88px;
  flex-shrink: 0;
  border-radius: 12px;
  background: #fff;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-crosssell-media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.pd-crosssell-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.pd-crosssell-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--pd-navy);
  margin-bottom: 6px;
}

.pd-crosssell-price {
  margin: 0 0 8px;
}

.pd-crosssell-body p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--pd-muted);
  margin-bottom: 10px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.pd-crosssell-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pd-accent);
  text-decoration: none;
  margin-top: auto;
}

.pd-crosssell-link:hover {
  color: var(--pd-accent-hover);
}

.pd-step-tip {
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--pd-muted);
}

@media (max-width: 991px) {
  .pd-purchase {
    flex-wrap: wrap;
  }

  .pd-purchase-actions {
    flex: 1 1 100%;
  }

  .pd-closing-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .pd-closing-left,
  .pd-closing-left:only-child {
    grid-column: auto;
    width: 100%;
    max-width: 100%;
  }

  .pd-closing-trust {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .pd-crosssell-stack {
    flex-direction: column;
    gap: 14px;
    width: 100%;
    max-width: 100%;
  }

  .pd-crosssell-card {
    flex: none;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .pd-crosssell-body {
    min-width: 0;
    flex: 1;
    overflow: hidden;
  }

  .pd-crosssell-body p {
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .pd-crosssell-tags {
    flex-wrap: wrap;
    gap: 6px;
  }

  .pd-closing-head {
    text-align: center;
  }

  .pd-closing-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .pd-utilities-hero {
    width: min(320px, 88%);
    margin: 0 auto;
    min-height: 280px;
  }

  .pd-utilities-hero-img {
    height: auto;
    max-height: 380px;
  }

  .pd-utilities-stage {
    background-position: center bottom;
  }

  .pd-utilities-stage > .container {
    padding-left: clamp(12px, 3vw, 20px);
    padding-right: clamp(12px, 3vw, 20px);
  }

  .pd-utilities,
  .pd-utilities-stage,
  .pd-utilities-stage > .container,
  .pd-utilities-grid,
  .pd-utilities-faq-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .pd-utilities {
    overflow-x: clip;
  }

  .pd-utilities-grid,
  .pd-utilities-grid--no-tip,
  .pd-utilities-grid--no-hero,
  .pd-utilities-grid--no-hero.pd-utilities-grid--no-tip {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: none;
    grid-template-areas: none;
    gap: 24px;
  }

  .pd-utilities-head,
  .pd-utilities-steps,
  .pd-utilities-tip,
  .pd-utilities-hero,
  .pd-utilities-faq {
    grid-area: auto;
    max-width: none;
    width: 100%;
    min-width: 0;
  }

  .pd-utilities-stage {
    overflow: hidden;
    min-height: auto;
    padding: clamp(32px, 5vw, 48px) clamp(16px, 4vw, 24px) clamp(40px, 5vw, 56px);
  }

  .pd-utilities-stage::before {
    background: linear-gradient(
      180deg,
      rgba(255, 248, 251, 0.72) 0%,
      rgba(255, 245, 249, 0.42) 45%,
      rgba(255, 242, 247, 0.2) 100%
    );
  }

  .pd-utilities-step {
    padding: 10px 0;
    grid-template-columns: 28px 52px minmax(0, 1fr);
    gap: 10px;
  }

  .pd-utilities-step-icon {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }

  .pd-utilities-step p {
    font-size: 13px;
    line-height: 1.55;
  }

  .pd-utilities-tip {
    max-width: none;
  }

  .pd-utilities-faq-card {
    padding: clamp(20px, 3vw, 28px);
  }

  .pd-utilities-faq-list .pd-faq-btn {
    white-space: normal;
    align-items: flex-start;
    line-height: 1.45;
  }

  .pd-utilities-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 16px;
  }

  .pd-crosssell-body {
    min-width: 0;
  }

  .pd-crosssell-tags {
    gap: 6px;
  }

  .pd-crosssell-tag {
    font-size: 10px;
    padding: 5px 8px;
  }

  .pd-closing-actions {
    flex-direction: column;
  }

  .pd-closing-actions .pd-btn {
    width: 100%;
  }

  .pd-closing-cta {
    padding-right: clamp(28px, 3.4vw, 40px);
    min-height: 0;
  }

  .pd-closing-cta-copy {
    min-height: 0;
  }

  .pd-closing-cta-copy p {
    flex: none;
  }

  .pd-closing-actions {
    margin-top: 0;
  }

  .pd-closing-cta-media {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    width: min(320px, 88%);
    height: auto;
    margin: 20px auto 0;
  }

  .pd-closing-cta-media img {
    width: 100%;
    height: auto;
    max-height: 340px;
    transform: none;
  }

  .pd-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 28px;
  }

  .pd-benefit-col:nth-child(2)::after,
  .pd-benefit-col:nth-child(4)::after {
    display: none;
  }

  .pd-supports-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 16px;
  }

  .pd-love-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .pd-utilities-features {
    grid-template-columns: 1fr;
  }

  .pd-closing-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .pd-benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 32px;
  }

  .pd-benefit-col:nth-child(3)::after {
    display: none;
  }

  .pd-benefit-col:nth-child(4)::after,
  .pd-benefit-col:nth-child(5)::after {
    display: none;
  }

  .pd-supports-trust {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 16px;
  }

  .pd-love-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .pd-closing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pd-closing-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 16px;
  }

  .pd-utilities-grid,
  .pd-utilities-grid--no-tip,
  .pd-utilities-grid--no-hero,
  .pd-utilities-grid--no-hero.pd-utilities-grid--no-tip {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-template-areas: none;
    gap: 28px;
  }

  .pd-utilities-head,
  .pd-utilities-steps,
  .pd-utilities-tip,
  .pd-utilities-hero,
  .pd-utilities-faq {
    grid-area: auto;
    max-width: none;
    width: 100%;
    min-width: 0;
  }

  .pd-utilities-stage {
    overflow: visible;
    min-height: auto;
    padding: clamp(32px, 5vw, 48px) clamp(16px, 4vw, 24px) clamp(40px, 5vw, 56px);
  }

  .pd-utilities-step {
    grid-template-columns: 28px 52px minmax(0, 1fr);
    gap: 10px;
  }

  .pd-utilities-step-icon {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }

  .pd-utilities-step p {
    font-size: 12px;
    line-height: 1.55;
  }

  .pd-utilities-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 16px;
  }

  .pd-overview-certs-bar {
    grid-template-columns: 1fr;
  }

  .pd-overview-cert:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid #ece8eb;
  }

  .pd-overview-cert {
    flex-direction: row;
    text-align: left;
    padding: 14px 16px;
    gap: 12px;
  }

  .pd-overview-cert-text {
    text-align: left;
  }

  .pd-closing-cta {
    padding-right: clamp(28px, 3.4vw, 40px);
  }
}

@media (max-width: 991.98px) {
  .pd-overview-section {
    padding-bottom: var(--pd-section-y);
  }

  .pd-overview-top {
    order: 1;
  }

  .pd-overview-product-float {
    order: 2;
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    display: block;
    width: min(200px, 55%);
    max-width: none;
    margin: 0 auto 16px;
  }

  .pd-overview-copy-wrap {
    padding-bottom: 0;
  }

  .pd-overview-copy:last-child {
    white-space: normal;
  }
}

@media (max-width: 767px) {
  .pd-utilities-features,
  .pd-closing-trust {
    grid-template-columns: 1fr;
  }

  .pd-utilities-tip {
    flex-direction: row;
    align-items: flex-start;
  }

  .pd-crosssell-stack {
    flex-direction: column;
    gap: 12px;
  }

  .pd-crosssell-card {
    gap: 12px;
    padding: 14px 16px;
    align-items: flex-start;
  }

  .pd-crosssell-media {
    width: 76px;
    height: 76px;
    padding: 6px;
  }

  .pd-crosssell-label {
    font-size: 10px;
  }

  .pd-crosssell-body h3 {
    font-size: 14px;
    line-height: 1.3;
  }

  .pd-crosssell-body p {
    font-size: 12px;
    line-height: 1.55;
    margin-bottom: 8px;
  }

  .pd-crosssell-tag {
    font-size: 10px;
    padding: 5px 8px;
  }

  .pd-crosssell-link {
    font-size: 11px;
  }

  .pd-closing {
    padding-left: clamp(12px, 3vw, 16px);
    padding-right: clamp(12px, 3vw, 16px);
  }

  .pd-closing-title {
    font-size: clamp(1.35rem, 5vw, 1.75rem);
  }

  .pd-benefits-grid {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .pd-benefit-col::after {
    display: none !important;
  }

  .pd-benefit-col:not(:last-child) {
    padding-bottom: 24px;
    border-bottom: 1px solid #ebe2e8;
  }

  .pd-supports-trust {
    grid-template-columns: 1fr;
  }

  .pd-overview-certs-bar {
    grid-template-columns: 1fr;
  }

  .pd-overview-cert:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid #ece8eb;
  }

  .pd-overview-cert {
    min-height: 0;
    flex-direction: row;
    text-align: left;
    padding: 16px 18px;
    gap: 14px;
  }

  .pd-overview-cert-text {
    text-align: left;
  }

  .pd-overview-card {
    padding: 28px 22px 24px;
  }

  .pd-overview-main {
    gap: 16px;
  }

  .pd-ingredient-photo {
    display: none;
  }

  .pd-ingredient-foot {
    flex-wrap: wrap;
    padding: 16px 20px;
  }

  .pd-ingredient-foot-flask {
    width: 44px;
    height: 44px;
    opacity: 0.85;
  }

  .pd-love-stage {
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .pd-love-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pd-cert-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pd-assurances {
    grid-template-columns: 1fr;
  }

  .pd-utilities-features {
    grid-template-columns: 1fr;
  }

  .pd-utilities {
    padding-left: clamp(12px, 3vw, 16px);
    padding-right: clamp(12px, 3vw, 16px);
  }

  .pd-utilities-stage {
    padding: clamp(24px, 4vw, 36px) clamp(14px, 3vw, 18px);
    border-radius: 16px;
    background-position: center bottom;
  }

  .pd-utilities-brand {
    font-size: clamp(1.65rem, 5vw, 2.1rem);
  }

  .pd-utilities-steps::before {
    left: 13px;
    top: 22px;
    bottom: 22px;
  }

  .pd-utilities-step {
    grid-template-columns: 28px 48px minmax(0, 1fr);
    gap: 10px;
    padding: 8px 0;
  }

  .pd-utilities-step-num {
    width: 28px;
    height: 28px;
    font-size: 10px;
  }

  .pd-utilities-step-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .pd-utilities-step p {
    font-size: 12px;
  }

  .pd-utilities-tip {
    flex-direction: row;
    align-items: flex-start;
    padding: 14px 16px;
  }

  .pd-utilities-hero {
    width: min(280px, 88%);
    min-height: 220px;
  }

  .pd-utilities-hero-img {
    max-height: 300px;
  }

  .pd-utilities-faq-card {
    padding: 18px 14px;
  }

  .pd-utilities-faq-list .pd-faq-btn {
    padding: 12px 0;
    font-size: 13px;
    gap: 10px;
  }

  .pd-utilities-faq-list .pd-faq-body {
    font-size: 12px;
    padding-bottom: 12px;
  }
}

@media (max-width: 575px) {
  .pd-utilities-grid,
  .pd-utilities-grid--no-tip,
  .pd-utilities-grid--no-hero,
  .pd-utilities-grid--no-hero.pd-utilities-grid--no-tip {
    gap: 20px;
  }

  .pd-utilities-step {
    grid-template-columns: 26px 44px minmax(0, 1fr);
    gap: 8px;
  }

  .pd-utilities-step-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .pd-utilities-faq-list .pd-faq-btn {
    font-size: 12px;
  }
}

/* ============================================
   BLUE SAPPHIRE THEME — pink → blue backgrounds
   ============================================ */
.product-detail-page.product-detail-blue {
  --pd-accent: #234a8e;
  --pd-accent-hover: #1a3a70;
  --pd-accent-deep: #1e5aa8;
  --pd-line: #c8d9ef;
  --pd-pink-soft: #e7f1fb;
  --pd-pink-bg: #e7f1fb;
  --pd-pink-panel: #e7f1fb;
  --pd-divider: #b8cfe8;
}

.product-detail-page.product-detail-blue .pd-info-panel {
  border-color: #c8d9ef;
}

.product-detail-page.product-detail-blue .pd-panel-badge {
  box-shadow: 0 2px 8px rgba(35, 74, 142, 0.12);
}

.product-detail-page.product-detail-blue .pd-cert-icon {
  border-color: rgba(35, 74, 142, 0.22);
}

.product-detail-page.product-detail-blue .pd-thumb-btn:hover {
  border-color: rgba(35, 74, 142, 0.35);
}

.product-detail-page.product-detail-blue .pd-zoom-btn:hover {
  box-shadow: 0 6px 18px rgba(35, 74, 142, 0.15);
}

.product-detail-page.product-detail-blue .pd-btn-primary {
  box-shadow: 0 8px 22px rgba(35, 74, 142, 0.22);
}

.product-detail-page.product-detail-blue .pd-btn-primary:hover {
  box-shadow: 0 10px 26px rgba(35, 74, 142, 0.28);
}

.product-detail-page.product-detail-blue .pd-faq-btn:hover {
  background: #ddeaf8;
}

.product-detail-page.product-detail-blue .pd-suggest-box {
  border-color: #b8cfe8;
  background: #f0f6fd;
}

.product-detail-page.product-detail-blue .pd-supports-rich {
  background:
    radial-gradient(ellipse 80% 60% at 15% 100%, rgba(168, 198, 232, 0.4) 0%, transparent 70%),
    radial-gradient(ellipse 70% 50% at 90% 90%, rgba(140, 180, 220, 0.32) 0%, transparent 65%),
    linear-gradient(180deg, #fff 0%, #f0f6fd 100%);
}

.product-detail-page.product-detail-blue .pd-supports-card,
.product-detail-page.product-detail-blue .pd-overview-card {
  box-shadow: 0 12px 40px rgba(35, 74, 142, 0.08), 0 2px 12px rgba(14, 31, 74, 0.04);
}

.product-detail-page.product-detail-blue .pd-supports-eyebrow-line,
.product-detail-page.product-detail-blue .pd-love-divider-line {
  background: linear-gradient(90deg, transparent, rgba(35, 74, 142, 0.45), transparent);
}

.product-detail-page.product-detail-blue .pd-benefit-col:not(:last-child)::after {
  background: linear-gradient(180deg, transparent, rgba(35, 74, 142, 0.12), transparent);
}

.product-detail-page.product-detail-blue .pd-fda-badge {
  box-shadow: 0 8px 22px rgba(35, 74, 142, 0.28);
}

.product-detail-page.product-detail-blue .pd-benefit-icon-wrap {
  background: #fff;
  border-color: rgba(140, 180, 220, 0.9);
  box-shadow:
    0 0 0 10px rgba(231, 241, 251, 0.95),
    0 0 32px rgba(140, 180, 220, 0.35);
}

.product-detail-page.product-detail-blue .pd-benefit-check {
  box-shadow: 0 3px 10px rgba(35, 74, 142, 0.28);
}

.product-detail-page.product-detail-blue .pd-love-card {
  box-shadow:
    0 10px 36px rgba(35, 74, 142, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.product-detail-page.product-detail-blue .pd-love-card:hover {
  box-shadow:
    0 22px 52px rgba(35, 74, 142, 0.14),
    0 10px 28px rgba(35, 74, 142, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.product-detail-page.product-detail-blue .pd-love-card-icon {
  color: #234a8e;
  box-shadow:
    0 8px 24px rgba(255, 255, 255, 0.95),
    0 4px 16px rgba(35, 74, 142, 0.1);
}

.product-detail-page.product-detail-blue .pd-love-card:hover .pd-love-card-icon {
  color: #1a3a70;
  box-shadow:
    0 12px 28px rgba(255, 255, 255, 0.98),
    0 6px 20px rgba(35, 74, 142, 0.18);
}

.product-detail-page.product-detail-blue .pd-love-card:hover h3 {
  color: #234a8e;
}

.product-detail-page.product-detail-blue .pd-utilities-steps::before {
  border-left-color: rgba(35, 74, 142, 0.32);
}

.product-detail-page.product-detail-blue .pd-utilities-step-icon {
  color: #234a8e;
  box-shadow:
    0 10px 28px rgba(35, 74, 142, 0.1),
    0 4px 14px rgba(255, 255, 255, 0.9);
}

.product-detail-page.product-detail-blue .pd-utilities-step:hover .pd-utilities-step-icon {
  box-shadow:
    0 14px 32px rgba(35, 74, 142, 0.16),
    0 6px 18px rgba(255, 255, 255, 0.95);
}

.product-detail-page.product-detail-blue .pd-ingredient-num {
  box-shadow: 0 4px 12px rgba(35, 74, 142, 0.35);
}

.product-detail-page.product-detail-blue .pd-supports-trust-icon {
  box-shadow: 0 2px 8px rgba(35, 74, 142, 0.12);
}

.product-detail-page.product-detail-blue .pd-utilities-tip-icon {
  color: #234a8e;
  box-shadow: 0 6px 18px rgba(35, 74, 142, 0.12);
}

.product-detail-page.product-detail-blue .pd-utilities-tip strong {
  color: #234a8e;
}

.product-detail-page.product-detail-blue .pd-utilities-faq-card {
  background: #f2f7fd;
  border-color: rgba(35, 74, 142, 0.14);
  box-shadow:
    0 20px 52px rgba(35, 74, 142, 0.1),
    0 8px 24px rgba(14, 31, 74, 0.06);
}

.product-detail-page.product-detail-blue .pd-utilities-faq-head-icon {
  background: rgba(231, 241, 251, 0.95);
  color: #234a8e;
}

.product-detail-page.product-detail-blue .pd-utilities-faq-list .pd-faq-btn:not(.collapsed),
.product-detail-page.product-detail-blue .pd-utilities-faq-list .pd-faq-btn.collapsed .pd-faq-icon,
.product-detail-page.product-detail-blue .pd-utilities-faq-list .pd-faq-btn:not(.collapsed) .pd-faq-icon {
  color: #234a8e;
}

.product-detail-page.product-detail-blue .pd-utilities-faq-list .pd-faq-btn:hover {
  background: rgba(231, 241, 251, 0.55);
}

.product-detail-page.product-detail-blue .pd-utilities-features {
  box-shadow: 0 12px 36px rgba(35, 74, 142, 0.08);
}

.product-detail-page.product-detail-blue .pd-utilities-feature-icon {
  box-shadow: 0 6px 18px rgba(35, 74, 142, 0.12);
}

.product-detail-page.product-detail-blue .pd-closing-cta-badge {
  color: #234a8e;
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(35, 74, 142, 0.22);
}

.product-detail-page.product-detail-blue .pd-supports-trust {
  background: transparent;
  border-top-color: #d6e4f5;
}

.product-detail-page.product-detail-blue .pd-overview-section {
  background: #e8f0fa;
}

.product-detail-page.product-detail-blue .pd-overview-card {
  border-color: #d6e4f5;
}

.product-detail-page.product-detail-blue .pd-overview-certs-bar {
  background: #eef5fc;
}

.product-detail-page.product-detail-blue .pd-love-stage {
  background-color: #e3eef9;
  background-image:
    linear-gradient(180deg, rgba(240, 246, 253, 0.35) 0%, rgba(231, 241, 251, 0.22) 100%),
    url('../../images/blue_background.png');
}

.product-detail-page.product-detail-blue .pd-love-card-rule {
  background: linear-gradient(90deg, #a8c6e8, #234a8e);
}

.product-detail-page.product-detail-blue .pd-ingredients-section {
  background: linear-gradient(180deg, #fff 0%, #f4f8fd 38%, #e8f0fa 100%);
}

.product-detail-page.product-detail-blue .pd-ingredients-radial::before,
.product-detail-page.product-detail-blue .pd-ingredients-center-glow {
  display: none;
}

.product-detail-page.product-detail-blue .pd-ingredients-center-bottle {
  filter: none;
  mix-blend-mode: normal;
}

.product-detail-page.product-detail-blue .pd-ingredient-foot {
  background: #eef5fc;
}

.product-detail-page.product-detail-blue .pd-utilities-stage {
  background-color: #e3eef9;
  background-image: url('../../images/blue-last-background.png');
}

.product-detail-page.product-detail-blue .pd-utilities-stage::before {
  background: linear-gradient(
    90deg,
    rgba(240, 246, 253, 0.72) 0%,
    rgba(231, 241, 251, 0.38) 34%,
    rgba(220, 234, 248, 0.1) 50%,
    transparent 62%
  );
}

.product-detail-page.product-detail-blue .pd-utilities-brand-rule {
  background: linear-gradient(90deg, #a8c6e8, #234a8e);
}

.product-detail-page.product-detail-blue .pd-utilities-step {
  border-left-color: rgba(35, 74, 142, 0.28);
}

.product-detail-page.product-detail-blue .pd-utilities-step-num {
  border-color: rgba(35, 74, 142, 0.35);
}

.product-detail-page.product-detail-blue .pd-benefit-tagline {
  background: #eaf2fb;
}

.product-detail-page.product-detail-blue .pd-overview-ideal {
  background: #eef5fc;
  border-color: #c8d9ef;
}

.product-detail-page.product-detail-blue .pd-overview-checklist li {
  border-top-color: rgba(168, 198, 232, 0.85);
}

.product-detail-page.product-detail-blue .pd-overview-bullet-icon {
  border-color: #a8c6e8;
  box-shadow: 0 2px 8px rgba(35, 74, 142, 0.12);
}

.product-detail-page.product-detail-blue .pd-ingredient-foot {
  background: #f2f7fd;
  border-top-color: rgba(168, 198, 232, 0.75);
}

.product-detail-page.product-detail-blue .pd-ingredient-foot-icon {
  border-color: #b8cfe8;
}

.product-detail-page.product-detail-blue .pd-closing-cta {
  border-color: rgba(35, 74, 142, 0.16);
  background: linear-gradient(120deg, #e8f0fb 0%, #d4e4f7 52%, #c5daf3 100%);
}

.product-detail-page.product-detail-blue .pd-closing-cta-media img {
  filter: drop-shadow(0 20px 40px rgba(35, 74, 142, 0.18));
  mix-blend-mode: normal;
}

.product-detail-page.product-detail-blue .pd-closing-cta-rule {
  background: linear-gradient(90deg, #234a8e, #a8c6e8);
}

.product-detail-page.product-detail-blue .pd-closing-actions .pd-btn-primary {
  background: linear-gradient(90deg, #1a5a9e, #234a8e);
  border-color: #234a8e;
  box-shadow: 0 10px 24px rgba(35, 74, 142, 0.22);
}

.product-detail-page.product-detail-blue .pd-closing-actions .pd-btn-outline {
  color: #234a8e;
  border-color: #5a8ac4;
}

.product-detail-page.product-detail-blue .pd-closing-actions .pd-btn-outline:hover {
  background: #e7f1fb;
  color: #1a3a70;
  border-color: #234a8e;
}

.product-detail-page.product-detail-blue .pd-utilities-tagline i,
.product-detail-page.product-detail-blue .pd-utilities-tagline strong {
  color: #234a8e;
}

.product-detail-page.product-detail-blue .pd-closing-tagline {
  color: #4f5d70;
}

.product-detail-page.product-detail-blue .pd-closing-tagline i,
.product-detail-page.product-detail-blue .pd-closing-tagline strong {
  color: #234a8e;
}

.product-detail-page.product-detail-blue .back-to-top {
  background: linear-gradient(135deg, #3a6cb8 0%, #234a8e 100%);
  box-shadow: 0 10px 25px rgba(35, 74, 142, 0.35);
}

.product-detail-page.product-detail-blue .back-to-top:hover {
  box-shadow: 0 12px 28px rgba(35, 74, 142, 0.42);
}

.product-detail-page.product-detail-blue .pd-crosssell-card {
  background: #eef5fc;
  border-color: rgba(35, 74, 142, 0.18);
}

.product-detail-page.product-detail-blue .pd-crosssell-tag {
  background: #e3eef9;
  border-color: rgba(35, 74, 142, 0.18);
}

.product-detail-page.product-detail-blue .pd-closing-trust {
  border-color: rgba(35, 74, 142, 0.14);
}

.product-detail-page.product-detail-blue .pd-closing-trust-icon {
  background: #e3eef9;
  border-color: rgba(35, 74, 142, 0.18);
}

.product-detail-page.product-detail-blue .pd-closing-eyebrow i {
  color: #234a8e;
}

.product-detail-page.product-detail-blue .pd-love-eyebrow,
.product-detail-page.product-detail-blue .pd-love-brand-pink,
.product-detail-page.product-detail-blue .pd-utilities-eyebrow,
.product-detail-page.product-detail-blue .pd-utilities-brand-pink,
.product-detail-page.product-detail-blue .pd-closing-eyebrow,
.product-detail-page.product-detail-blue .pd-closing-title-pink,
.product-detail-page.product-detail-blue .pd-closing-cta-badge,
.product-detail-page.product-detail-blue .pd-ingredients-tag,
.product-detail-page.product-detail-blue .pd-ingredients-lotus,
.product-detail-page.product-detail-blue .pd-love-divider-lotus,
.product-detail-page.product-detail-blue .pd-utilities-step-num,
.product-detail-page.product-detail-blue .pd-utilities-step-icon,
.product-detail-page.product-detail-blue .pd-utilities-tip-icon,
.product-detail-page.product-detail-blue .pd-utilities-feature-icon,
.product-detail-page.product-detail-blue .pd-closing-trust-icon,
.product-detail-page.product-detail-blue .pd-crosssell-label,
.product-detail-page.product-detail-blue .pd-crosssell-link {
  color: #234a8e;
}


/* ============================================
   AMETHYST / PURPLE THEME — pink → purple backgrounds
   ============================================ */
.product-detail-page.product-detail-purple {
  --pd-accent: #7a2f9e;
  --pd-accent-hover: #5c2480;
  --pd-accent-deep: #692d99;
  --pd-line: #cda8e4;
  --pd-pink-soft: #f1e7fb;
  --pd-pink-bg: #f1e7fb;
  --pd-pink-panel: #f1e7fb;
  --pd-divider: #c49bdc;
}

.product-detail-page.product-detail-purple .pd-info-panel {
  border-color: #cda8e4;
}

.product-detail-page.product-detail-purple .pd-panel-badge {
  box-shadow: 0 2px 8px rgba(122, 47, 158, 0.12);
}

.product-detail-page.product-detail-purple .pd-cert-icon {
  border-color: rgba(122, 47, 158, 0.22);
}

.product-detail-page.product-detail-purple .pd-thumb-btn:hover {
  border-color: rgba(122, 47, 158, 0.35);
}

.product-detail-page.product-detail-purple .pd-zoom-btn:hover {
  box-shadow: 0 6px 18px rgba(122, 47, 158, 0.15);
}

.product-detail-page.product-detail-purple .pd-btn-primary {
  box-shadow: 0 8px 22px rgba(122, 47, 158, 0.22);
}

.product-detail-page.product-detail-purple .pd-btn-primary:hover {
  box-shadow: 0 10px 26px rgba(122, 47, 158, 0.28);
}

.product-detail-page.product-detail-purple .pd-faq-btn:hover {
  background: #e5d4f0;
}

.product-detail-page.product-detail-purple .pd-suggest-box {
  border-color: #c49bdc;
  background: #f6f0fb;
}

.product-detail-page.product-detail-purple .pd-supports-rich {
  background:
    radial-gradient(ellipse 80% 60% at 15% 100%, rgba(205, 168, 228, 0.4) 0%, transparent 70%),
    radial-gradient(ellipse 70% 50% at 90% 90%, rgba(194, 168, 228, 0.32) 0%, transparent 65%),
    linear-gradient(180deg, #fff 0%, #f6f0fb 100%);
}

.product-detail-page.product-detail-purple .pd-supports-card,
.product-detail-page.product-detail-purple .pd-overview-card {
  box-shadow: 0 12px 40px rgba(122, 47, 158, 0.08), 0 2px 12px rgba(60, 20, 80, 0.04);
}

.product-detail-page.product-detail-purple .pd-supports-eyebrow-line,
.product-detail-page.product-detail-purple .pd-love-divider-line {
  background: linear-gradient(90deg, transparent, rgba(122, 47, 158, 0.45), transparent);
}

.product-detail-page.product-detail-purple .pd-benefit-col:not(:last-child)::after {
  background: linear-gradient(180deg, transparent, rgba(122, 47, 158, 0.12), transparent);
}

.product-detail-page.product-detail-purple .pd-fda-badge {
  box-shadow: 0 8px 22px rgba(122, 47, 158, 0.28);
}

.product-detail-page.product-detail-purple .pd-benefit-icon-wrap {
  background: #fff;
  border-color: rgba(194, 168, 228, 0.9);
  box-shadow:
    0 0 0 10px rgba(241, 231, 251, 0.95),
    0 0 32px rgba(194, 168, 228, 0.35);
}

.product-detail-page.product-detail-purple .pd-benefit-check {
  box-shadow: 0 3px 10px rgba(122, 47, 158, 0.28);
}

.product-detail-page.product-detail-purple .pd-love-card {
  box-shadow:
    0 10px 36px rgba(122, 47, 158, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.product-detail-page.product-detail-purple .pd-love-card:hover {
  box-shadow:
    0 22px 52px rgba(122, 47, 158, 0.14),
    0 10px 28px rgba(122, 47, 158, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.product-detail-page.product-detail-purple .pd-love-card-icon {
  color: #7a2f9e;
  box-shadow:
    0 8px 24px rgba(255, 255, 255, 0.95),
    0 4px 16px rgba(122, 47, 158, 0.1);
}

.product-detail-page.product-detail-purple .pd-love-card:hover .pd-love-card-icon {
  color: #5c2480;
  box-shadow:
    0 12px 28px rgba(255, 255, 255, 0.98),
    0 6px 20px rgba(122, 47, 158, 0.18);
}

.product-detail-page.product-detail-purple .pd-love-card:hover h3 {
  color: #7a2f9e;
}

.product-detail-page.product-detail-purple .pd-utilities-steps::before {
  border-left-color: rgba(122, 47, 158, 0.32);
}

.product-detail-page.product-detail-purple .pd-utilities-step-icon {
  color: #7a2f9e;
  box-shadow:
    0 10px 28px rgba(122, 47, 158, 0.1),
    0 4px 14px rgba(255, 255, 255, 0.9);
}

.product-detail-page.product-detail-purple .pd-utilities-step:hover .pd-utilities-step-icon {
  box-shadow:
    0 14px 32px rgba(122, 47, 158, 0.16),
    0 6px 18px rgba(255, 255, 255, 0.95);
}

.product-detail-page.product-detail-purple .pd-ingredient-num {
  box-shadow: 0 4px 12px rgba(122, 47, 158, 0.35);
}

.product-detail-page.product-detail-purple .pd-supports-trust-icon {
  box-shadow: 0 2px 8px rgba(122, 47, 158, 0.12);
}

.product-detail-page.product-detail-purple .pd-utilities-tip-icon {
  color: #7a2f9e;
  box-shadow: 0 6px 18px rgba(122, 47, 158, 0.12);
}

.product-detail-page.product-detail-purple .pd-utilities-tip strong {
  color: #7a2f9e;
}

.product-detail-page.product-detail-purple .pd-utilities-faq-card {
  background: #f7f2fb;
  border-color: rgba(122, 47, 158, 0.14);
  box-shadow:
    0 20px 52px rgba(122, 47, 158, 0.1),
    0 8px 24px rgba(60, 20, 80, 0.06);
}

.product-detail-page.product-detail-purple .pd-utilities-faq-head-icon {
  background: rgba(241, 231, 251, 0.95);
  color: #7a2f9e;
}

.product-detail-page.product-detail-purple .pd-utilities-faq-list .pd-faq-btn:not(.collapsed),
.product-detail-page.product-detail-purple .pd-utilities-faq-list .pd-faq-btn.collapsed .pd-faq-icon,
.product-detail-page.product-detail-purple .pd-utilities-faq-list .pd-faq-btn:not(.collapsed) .pd-faq-icon {
  color: #7a2f9e;
}

.product-detail-page.product-detail-purple .pd-utilities-faq-list .pd-faq-btn:hover {
  background: rgba(241, 231, 251, 0.55);
}

.product-detail-page.product-detail-purple .pd-utilities-features {
  box-shadow: 0 12px 36px rgba(122, 47, 158, 0.08);
}

.product-detail-page.product-detail-purple .pd-utilities-feature-icon {
  box-shadow: 0 6px 18px rgba(122, 47, 158, 0.12);
}

.product-detail-page.product-detail-purple .pd-closing-cta-badge {
  color: #7a2f9e;
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(122, 47, 158, 0.22);
}

.product-detail-page.product-detail-purple .pd-supports-trust {
  background: transparent;
  border-top-color: #e0d0ef;
}

.product-detail-page.product-detail-purple .pd-overview-section {
  background: #ede4f7;
}

.product-detail-page.product-detail-purple .pd-overview-card {
  border-color: #e0d0ef;
}

.product-detail-page.product-detail-purple .pd-overview-certs-bar {
  background: #f5eefb;
}

.product-detail-page.product-detail-purple .pd-love-stage {
  background-color: #ebe0f5;
  background-image:
    linear-gradient(180deg, rgba(246, 240, 251, 0.35) 0%, rgba(241, 231, 251, 0.22) 100%),
    url('../../images/purple_background.png');
}

.product-detail-page.product-detail-purple .pd-love-card-rule {
  background: linear-gradient(90deg, #d2b2e8, #7a2f9e);
}

.product-detail-page.product-detail-purple .pd-ingredients-section {
  background: linear-gradient(180deg, #fff 0%, #f8f4fc 38%, #ede4f7 100%);
}

.product-detail-page.product-detail-purple .pd-ingredients-radial::before,
.product-detail-page.product-detail-purple .pd-ingredients-center-glow {
  display: none;
}

.product-detail-page.product-detail-purple .pd-ingredients-center-bottle {
  filter: none;
  mix-blend-mode: normal;
}

.product-detail-page.product-detail-purple .pd-ingredient-foot {
  background: #f5eefb;
}

.product-detail-page.product-detail-purple .pd-utilities-stage {
  background-color: #ebe0f5;
  background-image: url('../../images/pruple-last-background.png');
}

.product-detail-page.product-detail-purple .pd-utilities-stage::before {
  background: linear-gradient(
    90deg,
    rgba(246, 240, 251, 0.72) 0%,
    rgba(241, 231, 251, 0.38) 34%,
    rgba(225, 210, 240, 0.1) 50%,
    transparent 62%
  );
}

.product-detail-page.product-detail-purple .pd-utilities-brand-rule {
  background: linear-gradient(90deg, #d2b2e8, #7a2f9e);
}

.product-detail-page.product-detail-purple .pd-utilities-step {
  border-left-color: rgba(122, 47, 158, 0.28);
}

.product-detail-page.product-detail-purple .pd-utilities-step-num {
  border-color: rgba(122, 47, 158, 0.35);
}

.product-detail-page.product-detail-purple .pd-benefit-tagline {
  background: #f0e8f8;
}

.product-detail-page.product-detail-purple .pd-overview-ideal {
  background: #f5eefb;
  border-color: #cda8e4;
}

.product-detail-page.product-detail-purple .pd-overview-checklist li {
  border-top-color: rgba(205, 168, 228, 0.85);
}

.product-detail-page.product-detail-purple .pd-overview-bullet-icon {
  border-color: #d2b2e8;
  box-shadow: 0 2px 8px rgba(122, 47, 158, 0.12);
}

.product-detail-page.product-detail-purple .pd-ingredient-foot {
  background: #f7f2fb;
  border-top-color: rgba(205, 168, 228, 0.75);
}

.product-detail-page.product-detail-purple .pd-ingredient-foot-icon {
  border-color: #c49bdc;
}

.product-detail-page.product-detail-purple .pd-closing-cta {
  border-color: rgba(122, 47, 158, 0.16);
  background: linear-gradient(120deg, #ede4f7 0%, #ddd0f0 52%, #cfc0eb 100%);
}

.product-detail-page.product-detail-purple .pd-closing-cta-media img {
  filter: drop-shadow(0 20px 40px rgba(122, 47, 158, 0.18));
  mix-blend-mode: normal;
}

.product-detail-page.product-detail-purple .pd-closing-cta-rule {
  background: linear-gradient(90deg, #7a2f9e, #d2b2e8);
}

.product-detail-page.product-detail-purple .pd-closing-actions .pd-btn-primary {
  background: linear-gradient(90deg, #6b2d8a, #7a2f9e);
  border-color: #7a2f9e;
  box-shadow: 0 10px 24px rgba(122, 47, 158, 0.22);
}

.product-detail-page.product-detail-purple .pd-closing-actions .pd-btn-outline {
  color: #7a2f9e;
  border-color: #9b6ec4;
}

.product-detail-page.product-detail-purple .pd-closing-actions .pd-btn-outline:hover {
  background: #f1e7fb;
  color: #5c2480;
  border-color: #7a2f9e;
}

.product-detail-page.product-detail-purple .pd-utilities-tagline i,
.product-detail-page.product-detail-purple .pd-utilities-tagline strong {
  color: #7a2f9e;
}

.product-detail-page.product-detail-purple .pd-closing-tagline {
  color: #4f5d70;
}

.product-detail-page.product-detail-purple .pd-closing-tagline i,
.product-detail-page.product-detail-purple .pd-closing-tagline strong {
  color: #7a2f9e;
}

.product-detail-page.product-detail-purple .back-to-top {
  background: linear-gradient(135deg, #8a4db8 0%, #7a2f9e 100%);
  box-shadow: 0 10px 25px rgba(122, 47, 158, 0.35);
}

.product-detail-page.product-detail-purple .back-to-top:hover {
  box-shadow: 0 12px 28px rgba(122, 47, 158, 0.42);
}

.product-detail-page.product-detail-purple .pd-crosssell-card {
  background: #f5eefb;
  border-color: rgba(122, 47, 158, 0.18);
}

.product-detail-page.product-detail-purple .pd-crosssell-tag {
  background: #ebe0f5;
  border-color: rgba(122, 47, 158, 0.18);
}

.product-detail-page.product-detail-purple .pd-closing-trust {
  border-color: rgba(122, 47, 158, 0.14);
}

.product-detail-page.product-detail-purple .pd-closing-trust-icon {
  background: #ebe0f5;
  border-color: rgba(122, 47, 158, 0.18);
}

.product-detail-page.product-detail-purple .pd-closing-eyebrow i {
  color: #7a2f9e;
}

.product-detail-page.product-detail-purple .pd-love-eyebrow,
.product-detail-page.product-detail-purple .pd-love-brand-pink,
.product-detail-page.product-detail-purple .pd-utilities-eyebrow,
.product-detail-page.product-detail-purple .pd-utilities-brand-pink,
.product-detail-page.product-detail-purple .pd-closing-eyebrow,
.product-detail-page.product-detail-purple .pd-closing-title-pink,
.product-detail-page.product-detail-purple .pd-closing-cta-badge,
.product-detail-page.product-detail-purple .pd-ingredients-tag,
.product-detail-page.product-detail-purple .pd-ingredients-lotus,
.product-detail-page.product-detail-purple .pd-love-divider-lotus,
.product-detail-page.product-detail-purple .pd-utilities-step-num,
.product-detail-page.product-detail-purple .pd-utilities-step-icon,
.product-detail-page.product-detail-purple .pd-utilities-tip-icon,
.product-detail-page.product-detail-purple .pd-utilities-feature-icon,
.product-detail-page.product-detail-purple .pd-closing-trust-icon,
.product-detail-page.product-detail-purple .pd-crosssell-label,
.product-detail-page.product-detail-purple .pd-crosssell-link {
  color: #7a2f9e;
}

