/* ═══════════════════════════════════════════════════════════════
   CODQI — Product detail page (customer-first, conversion-focused)
   Mobile order: gallery → buy box → details (via CSS grid areas)
   ═══════════════════════════════════════════════════════════════ */

/* ── Page shell ── */
body.page-product {
  padding-bottom: env(safe-area-inset-bottom, 0);
}
body.page-product.pd-bar-visible {
  padding-bottom: calc(88px + env(safe-area-inset-bottom, 0));
}

/* ── Hero — premium light header (matches homepage style) ── */
.product-detail .pd-hero--clean {
  position: relative;
  padding: clamp(18px, 3vw, 28px) 0 clamp(18px, 3vw, 26px);
  background: linear-gradient(180deg, #faf9ff 0%, #ffffff 48%, #f8f7fc 100%);
  border-bottom: 1px solid #ececf4;
  overflow: hidden;
  isolation: isolate;
}
.pd-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.pd-hero-bg__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(108, 39, 232, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108, 39, 232, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 40%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 40%, #000 20%, transparent 78%);
}
.pd-hero-bg__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.pd-hero-bg__glow--1 {
  width: min(480px, 50vw);
  height: min(480px, 50vw);
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(108, 39, 232, 0.1);
}
.pd-hero-bg__glow--2 {
  width: min(320px, 36vw);
  height: min(320px, 36vw);
  bottom: -100px;
  right: -40px;
  background: rgba(59, 130, 246, 0.07);
}
.product-detail .pd-hero-inner {
  position: relative;
  z-index: 2;
  text-align: left;
}
.product-detail .pd-hero-title {
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #0a0820;
  -webkit-text-fill-color: currentColor;
  background: none;
  margin: 0 0 10px;
  text-wrap: balance;
}
.product-detail .pd-hero-desc {
  font-size: clamp(14.5px, 2vw, 16px);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 0 14px;
  color: #5c5a78;
}
.product-detail .pd-hero-eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 10px;
}
.product-detail .pd-hero-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  background: #f6f4fc;
  color: #5b1fd1;
  border: 1px solid #ece8f8;
}
.product-detail .pd-hero-sale {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.25);
}
.product-detail .pd-hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 4px;
}
.product-detail .pd-hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: #5c5a78;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #ece8f8;
  box-shadow: 0 4px 14px rgba(10, 8, 32, 0.04);
}
.product-detail .pd-hero-meta-item i { color: var(--primary); font-size: 11px; }
.product-detail .pd-hero-meta-item--rating .pd-hero-stars { color: #f59e0b; letter-spacing: 0.5px; }
.product-detail .pd-hero-meta-item--rating strong { color: #0a0820; }
.product-detail .pd-hero-meta-item--stock i { color: var(--green); }
.product-detail .pd-hero-meta-item--social {
  background: #fffbeb;
  border-color: rgba(245, 158, 11, 0.3);
  color: #92400e;
}

/* ── Layout: left stack (gallery → benefits → tabs) + sticky buy box ── */
.pd-layout {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 32px);
  align-items: stretch;
  padding-top: clamp(20px, 3vw, 28px);
}
.pd-layout__shop {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(20px, 3vw, 32px);
  align-items: start;
}
/* Single left column cell: gallery + tabs stack — avoids grid row gap beside sidebar */
.pd-layout__main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 24px);
}
.pd-layout__gallery {
  min-width: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pd-gallery-benefits {
  width: 100%;
}
.pd-layout__tabs {
  min-width: 0;
}
.pd-layout__buy {
  min-width: 0;
  align-self: start;
}
@media (min-width: 1024px) {
  .pd-layout__buy {
    position: sticky;
    top: calc(var(--nav-h, 57px) + 16px);
    z-index: 10;
  }
}
.pd-gallery-benefits .pd-trust-rail {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 900px) {
  .pd-gallery-benefits .pd-trust-rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.product-detail .pd-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 6px;
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 14px;
}
.product-detail .pd-breadcrumb a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.15s ease;
}
.product-detail .pd-breadcrumb a:hover { color: var(--primary); }
.product-detail .pd-breadcrumb i {
  font-size: 9px;
  opacity: 0.6;
}
.product-detail .pd-breadcrumb [aria-current="page"] {
  color: #5c5a78;
  font-weight: 600;
}
/* Override legacy app.css gallery rules on PDP */
body.page-product .pd-gallery-img img {
  object-fit: contain !important;
}
body.page-product .pd-gallery-strip img {
  object-fit: contain !important;
  width: 88px;
  height: 56px;
}
.product-detail .pd-trust-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow: visible;
  box-sizing: border-box;
}

.product-detail .pd-trust-rail__item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  max-width: none;
  width: 100%;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--border2);
  border-radius: var(--cx-radius-md, 14px);
  box-shadow: 0 1px 4px rgba(108, 39, 232, 0.06);
  text-align: left;
  box-sizing: border-box;
}

@media (min-width: 900px) {
  .product-detail .pd-trust-rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 400px) {
  .product-detail .pd-trust-rail {
    grid-template-columns: 1fr;
  }
}
.pd-trust-rail__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
  background: linear-gradient(135deg, rgba(108,39,232,0.12), rgba(139,92,246,0.06));
  border: 1px solid rgba(108,39,232,0.1);
  color: var(--primary);
}
.pd-trust-rail__item:nth-child(1) .pd-trust-rail__icon {
  background: linear-gradient(135deg, rgba(245,158,11,.15), rgba(251,191,36,.06));
  border-color: rgba(245,158,11,.2);
  color: #d97706;
}
.pd-trust-rail__item:nth-child(3) .pd-trust-rail__icon {
  background: linear-gradient(135deg, rgba(16,185,129,.15), rgba(52,211,153,.06));
  border-color: rgba(16,185,129,.2);
  color: #059669;
}
.pd-trust-rail__item:nth-child(4) .pd-trust-rail__icon {
  background: linear-gradient(135deg, rgba(59,130,246,.15), rgba(96,165,250,.06));
  border-color: rgba(59,130,246,.2);
  color: #2563eb;
}
.pd-trust-rail__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.product-detail .pd-trust-rail__text strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}
.product-detail .pd-trust-rail__text span {
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.3;
}

/* ── Sale countdown (purchase box) ── */
.product-detail .pd-countdown {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  flex-wrap: nowrap !important;
  margin-bottom: 16px;
  padding: 14px 14px 12px;
  border-radius: 14px;
  background: linear-gradient(155deg, #fff8f8 0%, #ffffff 42%, #fef2f2 100%);
  border: 1px solid rgba(239, 68, 68, 0.22);
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.08);
}
.product-detail .pd-countdown__lead {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: #dc2626;
  letter-spacing: 0.01em;
}
.product-detail .pd-countdown__lead i {
  font-size: 14px;
  opacity: 0.9;
}
.product-detail .pd-countdown__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.product-detail .pd-countdown__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  min-width: 0;
}
.product-detail .pd-countdown__value {
  width: 100%;
  max-width: 64px;
  padding: 9px 6px;
  border-radius: 10px;
  background: linear-gradient(180deg, #f87171 0%, #dc2626 55%, #b91c1c 100%);
  color: #fff;
  font-size: clamp(17px, 4.5vw, 22px);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
  text-align: center;
  box-shadow: 0 3px 10px rgba(185, 28, 28, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.product-detail .pd-countdown__unit {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #991b1b;
  line-height: 1;
}

/* ── Purchase panel ── */
.product-detail .purchase-box,
.product-detail #pd-purchase-box {
  border: 1px solid rgba(108, 39, 232, 0.14);
  border-radius: 18px;
  padding: clamp(18px, 3vw, 24px);
  box-shadow: 0 16px 48px rgba(108, 39, 232, 0.1);
  background: #fff;
}
.product-detail .purchase-price-current {
  font-size: clamp(32px, 6vw, 42px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #0a0820;
  -webkit-text-fill-color: currentColor;
  background: none;
}

.product-detail .pd-gallery-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(108, 39, 232, 0.12);
  box-shadow: 0 20px 50px rgba(10, 8, 32, 0.08);
  background: #fff;
  display: flex;
  flex-direction: column;
}
.product-detail .pd-gallery-wrap::before {
  content: '';
  display: block;
  flex-shrink: 0;
  height: 36px;
  background: linear-gradient(180deg, #f3f1fa 0%, #eceaf4 100%);
  border-bottom: 1px solid rgba(108, 39, 232, 0.08);
  background-image:
    radial-gradient(circle, #ff5f57 5px, transparent 6px),
    radial-gradient(circle, #febc2e 5px, transparent 6px),
    radial-gradient(circle, #28c840 5px, transparent 6px);
  background-size: 10px 10px, 10px 10px, 10px 10px;
  background-position: 16px center, 34px center, 52px center;
  background-repeat: no-repeat;
}
.product-detail .pd-gallery-img {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 280px;
  background: linear-gradient(180deg, #f5f3ff 0%, #ebe8f5 100%);
  padding: 12px;
  box-sizing: border-box;
}
.product-detail .pd-gallery-img img,
.product-detail .pd-gallery-img #pd-main-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(108, 39, 232, 0.12);
  box-shadow: 0 8px 24px rgba(10, 8, 32, 0.08);
}
.product-detail .pd-gallery-strip {
  flex-shrink: 0;
  padding: 12px 14px;
  background: #faf9ff;
  border-top: 1px solid rgba(108, 39, 232, 0.08);
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.product-detail .pd-gallery-strip::-webkit-scrollbar { display: none; }
.product-detail .pd-gallery-strip img {
  border: 2px solid transparent;
  border-radius: 8px;
  transition: border-color 0.15s ease;
  object-fit: contain;
  background: #fff;
  width: 88px;
  height: 56px;
  flex-shrink: 0;
  cursor: pointer;
}
.product-detail .pd-gallery-strip img.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(108, 39, 232, 0.15);
}

/* Feature groups */
.product-detail .pd-feat-groups {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.product-detail .pd-feat-group__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.product-detail .pd-feat-group__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(108, 39, 232, 0.08);
  color: var(--primary);
  font-size: 14px;
}
.product-detail .pd-feat-group__title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin: 0;
}
.product-detail .pd-feat-group__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px;
}
.product-detail .pd-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid rgba(108, 39, 232, 0.1);
  border-radius: 14px;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text);
  box-shadow: 0 1px 2px rgba(10, 8, 32, 0.03);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.product-detail .pd-feat-item:hover {
  border-color: rgba(108, 39, 232, 0.28);
  box-shadow: 0 10px 26px rgba(108, 39, 232, 0.1);
  transform: translateY(-2px);
}
.product-detail .pd-feat-item i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #10b981;
  color: #fff;
  font-size: 10px;
  margin-top: 1px;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.32);
}
.product-detail .pd-req-table {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}
.product-detail .pd-req-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #f9f8ff;
  border: 1px solid rgba(108, 39, 232, 0.08);
  border-radius: 10px;
  font-size: 13px;
}
.product-detail .pd-req-row i {
  color: var(--primary);
  width: 18px;
  text-align: center;
}

/* P0 — primary purchase CTA emphasis */
.product-detail .purchase-box .btn-primary,
.product-detail #pd-purchase-box .btn-primary,
.product-detail .pd-commerce-bar__cta {
  min-height: 2.75rem;
  font-weight: 700;
  box-shadow: 0 4px 22px rgba(108, 39, 232, 0.28);
}
.product-detail .purchase-box .btn-primary:hover,
.product-detail #pd-purchase-box .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(108, 39, 232, 0.35);
}

.product-detail .purchase-sale-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
}
.product-detail .plan-option {
  padding: 12px 14px;
  border-radius: var(--cx-radius-sm, 10px);
}
.product-detail .plan-name { font-size: 14px; }
.product-detail .plan-price { font-size: 16px; }

.product-detail .pd-buy-btn {
  width: 100%;
  padding: 15px 20px;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #6c27e8 0%, #8b46f5 50%, #7c3aed 100%);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(108,39,232,0.35);
  transition: transform 0.18s, box-shadow 0.18s;
}
.product-detail .pd-buy-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(108,39,232,0.45);
}

/* Live Preview CTA */
.product-detail .pd-preview-btn,
.pd-commerce-bar .pd-preview-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  color: var(--primary);
  border-radius: var(--radius);
  border: 1.5px solid rgba(108,39,232,0.28);
  background: linear-gradient(135deg, rgba(108,39,232,0.10), rgba(139,92,246,0.10));
  transition: background 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
  box-sizing: border-box;
}
.product-detail .pd-preview-btn:hover,
.pd-commerce-bar .pd-preview-btn:hover {
  background: linear-gradient(135deg, rgba(108,39,232,0.18), rgba(139,92,246,0.18));
  border-color: rgba(108,39,232,0.55);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(108,39,232,0.16);
  color: var(--primary);
}
.product-detail .pd-preview-btn--box {
  width: 100%;
  padding: 13px 20px;
  margin-bottom: 10px;
  font-size: 14px;
}
.product-detail .pd-preview-btn--hero {
  width: auto;
  min-width: min(100%, 200px);
  padding: 13px 22px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  background: #fff;
  color: #0a0820;
  border: 1.5px solid #e4e0f4;
  box-shadow: 0 6px 18px rgba(10, 8, 32, 0.06);
}
.product-detail .pd-preview-btn--hero:hover {
  border-color: #a78bfa;
  box-shadow: 0 10px 24px rgba(108, 39, 232, 0.12);
  color: var(--primary);
}
.product-detail .pd-preview-btn--compact {
  padding: 10px 14px;
  font-size: 13px;
  flex-shrink: 0;
  white-space: nowrap;
}
.product-detail .pd-preview-btn--compact span:not(.pd-preview-arrow) {
  display: none;
}
@media (min-width: 900px) {
  .product-detail .pd-preview-btn--compact span:not(.pd-preview-arrow) {
    display: inline;
  }
}
.pd-preview-btn--bar {
  padding: 10px 14px !important;
  margin-bottom: 0 !important;
  font-size: 13px !important;
  min-height: var(--cx-touch, 44px);
  flex-shrink: 0;
}
.pd-preview-arrow { font-size: 11px; opacity: 0.65; font-weight: 500; }
@media (max-width: 560px) {
  .product-detail .pd-hero--clean {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.pd-preview-missing {
  font-size: 12px;
  color: var(--text-dim);
  background: var(--bg3);
  border: 1px dashed var(--border2);
  border-radius: var(--radius);
  padding: 10px 12px;
  margin-bottom: 10px;
  line-height: 1.45;
}
.pd-preview-missing i { color: var(--primary); margin-right: 6px; }
.pd-commerce-bar__actions {
  flex: 1 1 0;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 8px;
  align-items: stretch;
}
.pd-commerce-bar__actions--solo {
  grid-template-columns: minmax(0, 1fr);
}
.pd-commerce-bar__form {
  display: block;
  margin: 0;
  min-width: 0;
}
.pd-commerce-bar__preview {
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}
.pd-commerce-bar__cta-label--short {
  display: none;
}
.product-detail .pd-trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 12px 0;
  margin: 10px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.product-detail .pd-trust-item {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--text-dim);
  text-align: center;
  gap: 4px;
}
.product-detail .pd-trust-item i { font-size: 14px; display: block; margin: 0 auto 4px; }

.product-detail .pd-money-back {
  padding: 12px;
  margin: 10px 0;
  border-radius: 12px;
}
.product-detail .guarantee-list { margin-top: 8px; }
.product-detail .guarantee-item {
  padding: 8px 0;
  font-size: 13px;
}

/* ── Tabs — full-width content card ── */
.product-detail .product-tabs {
  margin-top: 0;
  background: #fff;
  border: 1px solid rgba(108, 39, 232, 0.1);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(10, 8, 32, 0.04);
  overflow: hidden;
}
.product-detail .tabs-header {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid rgba(108, 39, 232, 0.08);
  background: #faf9ff;
  border-radius: 0;
  padding: 8px 12px;
  margin: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.product-detail .tab-btn {
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 10px;
  border: none !important;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
  min-height: 40px;
  background: transparent;
}
.product-detail .tab-btn.active {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(108, 39, 232, 0.1);
}
.product-detail .tab-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
  padding: 24px clamp(16px, 3vw, 28px) 32px;
  box-sizing: border-box;
}
.product-detail .pd-included-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.product-detail .pd-included-item {
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 100px;
  background: #f8f7fc;
  border: 1px solid rgba(108, 39, 232, 0.08);
}

.product-detail .pd-split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media (min-width: 560px) {
  .product-detail .pd-split-grid { grid-template-columns: 1fr 1fr; }
}

.product-detail .pd-meta-section {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  border-top: none;
}
.product-detail .pd-meta-section--overview {
  margin-top: 0;
}
.product-detail .pd-description {
  margin: 0;
  padding: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
  max-width: 100%;
}
.product-detail .pd-meta-section--overview + .pd-description {
  padding-top: 20px;
  margin-top: 4px;
  border-top: 1px solid var(--border);
}
.product-detail .pd-description h2:first-child,
.product-detail .pd-description > h2:first-of-type {
  margin-top: 0;
}
.product-detail .pd-description h2,
.product-detail .pd-description h3 {
  max-width: 100%;
}
/* ── Overview description: premium list cards (overrides app.css) ── */
.product-detail .pd-description ul,
.product-detail .pd-description ol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 10px 0 22px;
  padding: 0;
  list-style: none;
}
.product-detail .pd-description li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid rgba(108, 39, 232, 0.1);
  border-radius: 14px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text);
  box-shadow: 0 1px 2px rgba(10, 8, 32, 0.03);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.product-detail .pd-description li::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  background-color: #10b981;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23ffffff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.32);
}
.product-detail .pd-description li:hover {
  border-color: rgba(108, 39, 232, 0.28);
  box-shadow: 0 10px 26px rgba(108, 39, 232, 0.1);
  transform: translateY(-2px);
}
@media (max-width: 640px) {
  .product-detail .pd-description ul,
  .product-detail .pd-description ol { grid-template-columns: 1fr; gap: 8px; }
  .product-detail .pd-description li { padding: 12px 14px; }
}

.product-detail .pd-tags-section {
  margin-top: 0;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.product-detail .pd-meta-card {
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-rows: auto auto;
  align-items: start;
  text-align: left;
  padding: 16px;
  gap: 4px 12px;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(108, 39, 232, 0.1);
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(10, 8, 32, 0.03);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.product-detail .pd-meta-card:hover {
  border-color: rgba(108, 39, 232, 0.28);
  box-shadow: 0 10px 26px rgba(108, 39, 232, 0.1);
  transform: translateY(-2px);
}
.product-detail .pd-meta-icon {
  grid-row: 1 / span 2;
  grid-column: 1;
  align-self: center;
  width: 36px;
  height: 36px;
}
.product-detail .pd-meta-label {
  grid-column: 2;
  grid-row: 1;
}
.product-detail .pd-meta-value {
  grid-column: 2;
  grid-row: 2;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  word-break: break-word;
  overflow-wrap: anywhere;
  max-width: 100%;
}
.product-detail .pd-meta-card--link .pd-meta-link {
  grid-column: 2;
  grid-row: 2;
}

/* Plan rows — price never squishes license text */
.product-detail .plan-option {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px 12px;
}
.product-detail .plan-option input[type="radio"] {
  grid-column: 1;
  margin: 0;
}
.product-detail .plan-info {
  grid-column: 2;
  min-width: 0;
}
.product-detail .plan-name {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 6px;
  line-height: 1.35;
}
.product-detail .plan-price {
  grid-column: 3;
  white-space: nowrap;
}

.product-detail .pd-cart-hint {
  margin: 0 0 12px;
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.45;
}

.product-detail .pd-money-back-text strong {
  font-size: 14px;
  display: block;
  margin-bottom: 4px;
  line-height: 1.35;
}
.product-detail .pd-money-back-text {
  font-size: 12px;
  line-height: 1.55;
}

.product-detail .pd-coupon-wrap {
  margin: 12px 0 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.product-detail .pd-coupon-toggle {
  font-size: 13px;
  padding: 8px 0;
  width: 100%;
  text-align: left;
}

.product-detail .guarantee-list {
  border-top: 1px solid var(--border);
  padding-top: 8px;
  margin-top: 4px;
}
.product-detail .guarantee-item {
  gap: 10px;
  align-items: flex-start;
}
.product-detail .guarantee-item i {
  margin-top: 2px;
}

/* ── Reviews tab ── */
.product-detail .pd-review-summary {
  display: flex;
  align-items: center;
  gap: 20px 28px;
  background: linear-gradient(135deg, #fbfaff, #f4f0ff);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  margin-bottom: 20px;
}
.product-detail .pd-review-score {
  flex-shrink: 0;
  text-align: center;
  min-width: 88px;
}
.product-detail .pd-review-score-num {
  font-size: clamp(36px, 8vw, 52px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text);
}
.product-detail .pd-review-score-stars {
  color: #f59e0b;
  font-size: 18px;
  margin: 6px 0 4px;
  letter-spacing: 1px;
}
.product-detail .pd-review-score-count {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 600;
}
.product-detail .pd-review-divider {
  width: 1px;
  align-self: stretch;
  min-height: 72px;
  background: var(--border);
  flex-shrink: 0;
}
.product-detail .pd-review-bars {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.product-detail .pd-review-bar-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-dim);
}
.product-detail .pd-review-bar-label {
  text-align: right;
  font-weight: 600;
  white-space: nowrap;
}
.product-detail .pd-review-bar-count {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: var(--text-muted);
}
.product-detail .pd-review-bar-track {
  height: 7px;
  background: var(--bg3);
  border-radius: 4px;
  overflow: hidden;
  min-width: 0;
}
.product-detail .pd-review-bar-fill {
  display: block;
  height: 100%;
  min-width: 0;
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
  border-radius: 4px;
}

.product-detail .pd-review-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  margin-bottom: 12px;
}
.product-detail .pd-review-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.product-detail .pd-review-card-stars {
  color: #f59e0b;
  font-size: 14px;
  flex-shrink: 0;
}
.product-detail .pd-review-card-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 6px;
}
.product-detail .pd-review-card-body {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.product-detail .pd-review-card-date {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 10px;
}
.product-detail .pd-review-reply {
  margin-top: 12px;
  padding: 12px 14px;
  background: linear-gradient(135deg, rgba(108, 39, 232, 0.06), rgba(139, 92, 246, 0.06));
  border-left: 3px solid var(--primary);
  border-radius: 0 10px 10px 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

@media (max-width: 768px) {
  .product-detail .pd-review-summary {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 16px;
  }
  .product-detail .pd-review-score {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 2px 10px;
    align-items: center;
    text-align: left;
    min-width: 0;
    width: 100%;
  }
  .product-detail .pd-review-score-num {
    grid-column: 1;
    grid-row: 1 / span 2;
    font-size: 40px;
    align-self: center;
  }
  .product-detail .pd-review-score-stars {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    text-align: left;
  }
  .product-detail .pd-review-score-count {
    grid-column: 2;
    grid-row: 2;
    text-align: left;
  }
  .product-detail .pd-review-divider {
    display: none;
  }
  .product-detail .pd-review-bars {
    width: 100%;
    min-width: 0;
  }
  .product-detail .pd-review-card-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .product-detail .pd-review-card-stars {
    order: -1;
  }
}

/* ── Mobile commerce bar (fixed bottom) ── */
.pd-commerce-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border2);
  box-shadow: 0 -8px 32px rgba(10,8,32,0.12);
  padding: 10px max(12px, env(safe-area-inset-left, 0)) calc(10px + env(safe-area-inset-bottom, 0)) max(12px, env(safe-area-inset-right, 0));
  box-sizing: border-box;
  transform: translateY(110%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.pd-commerce-bar.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}
.pd-commerce-bar__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 16px);
  box-sizing: border-box;
  min-width: 0;
}
.pd-commerce-bar__info {
  flex: 0 1 auto;
  min-width: 0;
  max-width: min(36vw, 220px);
  overflow: hidden;
}
.pd-commerce-bar__title {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text);
}
.pd-commerce-bar__price {
  font-size: 17px;
  font-weight: 900;
  color: var(--primary);
}
.pd-commerce-bar__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px !important;
  font-size: 13px !important;
  border-radius: 12px !important;
  min-height: var(--cx-touch, 44px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pd-preview-btn--bar {
  width: 100%;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 640px) {
  .pd-commerce-bar__inner {
    flex-wrap: wrap;
    row-gap: 8px;
  }
  .pd-commerce-bar__info {
    flex: 1 1 100%;
    max-width: none;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
  }
  .pd-commerce-bar__title {
    flex: 1 1 auto;
  }
  .pd-commerce-bar__price {
    flex: 0 0 auto;
  }
  .pd-commerce-bar__actions {
    flex: 1 1 100%;
    width: 100%;
  }
}
@media (max-width: 520px) {
  .pd-commerce-bar__preview-label { display: none; }
  .pd-commerce-bar__preview {
    padding: 10px 12px !important;
    justify-content: center;
  }
}
@media (max-width: 400px) {
  .pd-commerce-bar__cta-label { display: none; }
  .pd-commerce-bar__cta-label--short { display: inline; }
}

/* Desktop: same floating CTA as mobile when buy box scrolls off screen */
@media (min-width: 769px) {
  .pd-commerce-bar__inner {
    padding: 0 8px;
  }
  .pd-commerce-bar__title {
    font-size: 14px;
  }
  .pd-commerce-bar__price {
    font-size: 18px;
  }
}

/* ── Mobile layout ── */
@media (max-width: 900px) {
  .pd-layout__shop {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .pd-layout__main {
    display: contents;
  }
  .pd-layout__gallery { order: 1; }
  .pd-layout__buy { order: 2; }
  .pd-layout__tabs { order: 3; }
}
@media (max-width: 768px) {
  .pd-layout {
    gap: 16px;
  }
  .product-detail .purchase-box {
    box-shadow: 0 8px 32px rgba(108,39,232,0.1);
  }
  .product-detail .pd-trust-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 12px;
    padding: 12px 0;
  }
  .product-detail .pd-trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11px;
  }
  .product-detail .pd-meta-section {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .product-detail .pd-meta-value {
    font-size: 12px;
  }
  .product-detail .pd-money-back {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
  }
  .product-detail .pd-money-back-text strong {
    font-size: 13px;
  }
  .product-detail .guarantee-item {
    font-size: 12.5px;
    padding: 9px 0;
  }
  .product-detail .pd-included-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .product-detail .pd-included-item {
    font-size: 11px;
    padding: 8px;
  }
  .product-detail { padding-bottom: 0; }
  .product-detail .tabs-header {
    margin: 14px 16px 12px;
  }
  .product-detail .tab-panel {
    padding: 0 16px 24px;
  }
  .pd-commerce-bar__cta {
    padding: 10px 14px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 480px) {
  .product-detail .pd-trust-rail__item {
    padding: 10px 12px;
  }
  .product-detail .pd-trust-rail__icon {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
  .product-detail .pd-trust-rail__text strong {
    font-size: 12px;
  }
  .product-detail .plan-price {
    font-size: 14px;
  }
  .product-detail .plan-desc {
    font-size: 11px;
  }
  .pd-commerce-bar__inner {
    gap: 8px;
  }
  .pd-commerce-bar__title {
    font-size: 12px;
  }
  .pd-commerce-bar__price {
    font-size: 15px;
  }
}

/* ── Conversion UX additions ── */
.pd-buy-btn--now {
  background: var(--gradient-primary);
  margin-bottom: 10px;
}
.pd-buy-btn--cart {
  background: var(--bg3);
  color: var(--text);
  border: 1.5px solid var(--border2);
}
.pd-buy-btn--cart:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.pd-install-guarantee,
.product-detail .pd-money-back {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  background: rgba(108, 39, 232, 0.06);
  border: 1px solid rgba(108, 39, 232, 0.12);
  border-radius: var(--radius);
  margin: 16px 0;
}
.pd-install-guarantee-icon,
.product-detail .pd-money-back-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(108, 39, 232, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
/* ── Value comparison (PDP) ── */
.pd-vc {
  margin: 64px 0 0;
  padding: 48px 0 0;
  border-top: 1px solid var(--border);
}
.pd-vc__intro {
  max-width: 640px;
  margin: 0 auto 32px;
  text-align: center;
}
.pd-vc__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(108, 39, 232, 0.08);
  border: 1px solid rgba(108, 39, 232, 0.15);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.pd-vc__title {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 10px;
}
.pd-vc__lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
}
.pd-vc__board {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 40px rgba(10, 8, 32, 0.05);
}
.pd-vc__cols {
  display: grid;
  grid-template-columns: minmax(120px, 1.1fr) repeat(3, 1fr);
  align-items: stretch;
  border-bottom: 1px solid var(--border);
}
.pd-vc__cols:last-child { border-bottom: none; }
.pd-vc__cols--head {
  background: linear-gradient(180deg, #faf9ff 0%, #fff 100%);
}
.pd-vc__corner,
.pd-vc__label {
  padding: 16px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  background: #faf9ff;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.pd-vc__col {
  position: relative;
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 110px;
}
.pd-vc__col:last-child { border-right: none; }
.pd-vc__col--alt { background: #fcfcfe; }
.pd-vc__col--win {
  background: linear-gradient(180deg, rgba(108, 39, 232, 0.07) 0%, rgba(108, 39, 232, 0.02) 100%);
  box-shadow: inset 0 0 0 2px rgba(108, 39, 232, 0.22);
  z-index: 1;
}
.pd-vc__badge {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--gradient-primary);
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
.pd-vc__col-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.pd-vc__col-icon--muted {
  background: #f1f0f6;
  color: #8b89a8;
}
.pd-vc__col-icon--win {
  background: rgba(108, 39, 232, 0.12);
  color: var(--primary);
  margin-top: 14px;
}
.pd-vc__col-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}
.pd-vc__col-sub {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.3;
  max-width: 140px;
}
.pd-vc__cell {
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-muted);
  border-right: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pd-vc__cell:last-child { border-right: none; }
.pd-vc__cell i {
  flex-shrink: 0;
  width: 18px;
  margin-top: 1px;
  text-align: center;
  font-size: 12px;
}
.pd-vc__cell--bad i { color: #dc2626; }
.pd-vc__cell--warn i { color: #d97706; }
.pd-vc__cell--win {
  background: rgba(108, 39, 232, 0.03);
  color: #2e2b50;
  font-weight: 600;
  box-shadow: inset 2px 0 0 rgba(108, 39, 232, 0.35), inset -2px 0 0 rgba(108, 39, 232, 0.35);
}
.pd-vc__cell--win i { color: var(--green); }
.pd-vc__cell--muted { background: #fafafa; }
.pd-vc__cell--cta {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 22px 16px;
  background: linear-gradient(180deg, rgba(108, 39, 232, 0.06) 0%, #fff 100%);
  box-shadow: inset 2px 0 0 rgba(108, 39, 232, 0.35), inset -2px 0 0 rgba(108, 39, 232, 0.35);
}
.pd-vc__save {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
}
.pd-vc__cta {
  width: 100%;
  max-width: 260px;
  justify-content: center;
}
@media (max-width: 900px) {
  .pd-vc__board {
    border: none;
    background: transparent;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .pd-vc__cols {
    grid-template-columns: 1fr;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(10, 8, 32, 0.04);
  }
  .pd-vc__cols--head { display: none; }
  .pd-vc__corner { display: none; }
  .pd-vc__label {
    border-right: none;
    border-bottom: 1px solid var(--border);
    background: #faf9ff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .pd-vc__cell {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    padding-left: 18px;
  }
  .pd-vc__cell::before {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-dim);
    min-width: 72px;
    flex-shrink: 0;
  }
  .pd-vc__cols:not(.pd-vc__cols--foot) .pd-vc__cell:nth-child(2)::before { content: 'Agency'; }
  .pd-vc__cols:not(.pd-vc__cols--foot) .pd-vc__cell:nth-child(3)::before { content: 'Codqi'; color: var(--primary); }
  .pd-vc__cols:not(.pd-vc__cols--foot) .pd-vc__cell:nth-child(4)::before { content: 'DIY'; }
  .pd-vc__cell--win { box-shadow: none; background: rgba(108, 39, 232, 0.04); }
  .pd-vc__cols--foot {
    border: none;
    background: transparent;
    box-shadow: none;
  }
  .pd-vc__cols--foot .pd-vc__cell--muted { display: none; }
  .pd-vc__cols--foot .pd-vc__cell--cta {
    border: 1px solid rgba(108, 39, 232, 0.2);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 28px rgba(108, 39, 232, 0.1);
  }
}
