/* ── Product Detail Page — Premium Design ──────────────────────────────────── */

/* ── Page wrapper & container ────────────────────────────────────────────────── */
body.shopProduct {
  background: #09090f;
}

body.shopProduct .main::before {
  content: '';
  position: fixed;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse at 50% 0%,
    rgba(109,61,255,0.13) 0%,
    rgba(79,40,200,0.06) 45%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.pd-main {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px 110px;
}

/* ── Breadcrumb ──────────────────────────────────────────────────────────────── */
.pd-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 8px;
  padding: 20px 0 32px;
  font-size: 0.78rem;
  font-weight: 500;
}

.pd-breadcrumb a {
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  transition: color 0.18s;
}

.pd-breadcrumb a:hover { color: #a78bfa; }

.pd-breadcrumb > span:not(.pd-bc-current) {
  color: rgba(255,255,255,0.18);
  font-size: 0.72rem;
}

.pd-bc-current {
  color: rgba(255,255,255,0.58);
  max-width: 280px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ── Two-column layout ────────────────────────────────────────────────────────── */
.pd-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
  margin-bottom: 72px;
}

/* ── Gallery (left column) ────────────────────────────────────────────────────── */
.pd-gallery {
  position: sticky;
  top: 88px;
}

.pd-main-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 24px 80px rgba(0,0,0,0.55),
    0 8px 24px rgba(0,0,0,0.35);
}

/* Sliding track — all images side-by-side, translateX to navigate */
.pd-slide-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  cursor: zoom-in;
}

.pd-slide-img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  pointer-events: none;
}

/* Arrow nav — visible on hover */
.pd-img-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  background: rgba(8,8,18,0.8);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.85);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.2s, background 0.2s, transform 0.2s;
}

.pd-main-image:hover .pd-img-nav { opacity: 1; }

.pd-img-nav--prev { left: 14px; }
.pd-img-nav--next { right: 14px; }

.pd-img-nav:hover {
  background: rgba(97,71,189,0.65);
  border-color: rgba(167,139,250,0.5);
  transform: translateY(-50%) scale(1.1);
}

/* Badges on image */
.pd-img-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  background: linear-gradient(135deg, rgba(97,71,189,0.9), rgba(124,89,255,0.9));
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
}

.pd-img-badge--free {
  background: linear-gradient(135deg, rgba(97,71,189,0.9), rgba(124,89,255,0.9));
  left: auto;
  right: 14px;
}

/* Thumbnails */
.pd-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
  padding: 2px 0 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(167,139,250,0.25) transparent;
}

.pd-thumbs::-webkit-scrollbar { height: 3px; }
.pd-thumbs::-webkit-scrollbar-track { background: transparent; }
.pd-thumbs::-webkit-scrollbar-thumb { background: rgba(167,139,250,0.3); border-radius: 2px; }

.pd-thumb {
  flex: 0 0 80px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s, transform 0.18s, box-shadow 0.2s;
}

.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pd-thumb:hover {
  border-color: rgba(167,139,250,0.4);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}

.pd-thumb.is-active {
  border-color: #a78bfa;
  box-shadow: 0 0 0 1px rgba(167,139,250,0.35), 0 6px 18px rgba(0,0,0,0.35);
}

/* ── Product info panel (right column) ───────────────────────────────────────── */
.pd-info {
  display: flex;
  flex-direction: column;
}

/* Category + type chips */
.pd-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.pd-chip {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.42);
  border: 1px solid rgba(255,255,255,0.09);
}

.pd-chip--free {
  background: rgba(97,71,189,0.12);
  color: #c4b5fd;
  border-color: rgba(167,139,250,0.3);
}

.pd-chip--premium {
  background: rgba(167,139,250,0.1);
  color: #a78bfa;
  border-color: rgba(167,139,250,0.28);
}

/* Title */
.pd-title {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
}

/* Rating row */
.pd-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 6px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pd-star {
  font-size: 0.95rem;
  line-height: 1;
  color: rgba(255,255,255,0.14);
}

.pd-star.is-full  { color: #fbbf24; }
.pd-star.is-half  { color: #fbbf24; opacity: 0.55; }

.pd-rating-num {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fbbf24;
  margin-left: 3px;
}

.pd-review-count,
.pd-sales-count {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.3);
}

/* ── Price block ─────────────────────────────────────────────────────────────── */
.pd-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.pd-price {
  font-size: 2.1rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.pd-price--free {
  font-size: 2.1rem;
  font-weight: 900;
  background: linear-gradient(130deg, #a78bfa 0%, #c4b5fd 60%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.pd-price-old {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.24);
  text-decoration: line-through;
  font-weight: 500;
}

.pd-discount-badge {
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(97,71,189,0.14);
  color: #c4b5fd;
  border: 1px solid rgba(167,139,250,0.28);
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

/* Format badges */
.pd-formats {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 22px;
}

.pd-fmt {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.71rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.48);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pd-fmt--figma  { color: #818cf8; border-color: rgba(129,140,248,0.22); background: rgba(129,140,248,0.07); }
.pd-fmt--canva  { color: #a78bfa; border-color: rgba(167,139,250,0.22); background: rgba(167,139,250,0.07); }
.pd-fmt--sketch { color: #f6a623; border-color: rgba(246,166,35,0.22);  background: rgba(246,166,35,0.07); }
.pd-fmt--pdf    { color: #f87171; border-color: rgba(248,113,113,0.22); background: rgba(248,113,113,0.07); }
.pd-fmt--zip    { color: #60a5fa; border-color: rgba(96,165,250,0.22);  background: rgba(96,165,250,0.07); }
.pd-fmt--img    { color: #fb923c; border-color: rgba(251,146,60,0.22);  background: rgba(251,146,60,0.07); }

/* Divider */
.pd-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin: 2px 0 20px;
}

/* Delivery note */
.pd-delivery {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.38);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 9px 14px;
  border-radius: 10px;
  margin-bottom: 22px;
  width: 100%;
  box-sizing: border-box;
}

.pd-delivery svg { flex-shrink: 0; }

/* ── Qty stepper ─────────────────────────────────────────────────────────────── */
.pd-qty-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.pd-qty-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
}

.pd-qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}

.pd-qty-btn {
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.15rem;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.pd-qty-btn:hover {
  background: rgba(167,139,250,0.12);
  color: #a78bfa;
}

.pd-qty-stepper input {
  width: 46px;
  height: 38px;
  text-align: center;
  background: transparent;
  border: none;
  border-left: 1px solid rgba(255,255,255,0.08);
  border-right: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  outline: none;
  -moz-appearance: textfield;
}

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

/* ── CTA Buttons ─────────────────────────────────────────────────────────────── */
.pd-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.pd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 0.97rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.22s ease, opacity 0.18s, background 0.18s;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  line-height: 1;
}

.pd-btn:active { transform: scale(0.975); }

.pd-btn.is-loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Shine sweep — matches main website style */
.pd-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -115%;
  width: 65%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-18deg);
  transition: left 0.55s ease;
  pointer-events: none;
}

.pd-btn:hover::before { left: 130%; }

/* Primary — purple (matches main website #6147bd) */
.pd-btn--primary {
  background: #6147bd;
  color: #fff;
  box-shadow: 0 4px 20px rgba(97,71,189,0.35), 0 1px 0 rgba(255,255,255,0.1) inset;
}

.pd-btn--primary:hover {
  background: #7158cc;
  box-shadow: 0 8px 32px rgba(97,71,189,0.55), 0 1px 0 rgba(255,255,255,0.1) inset;
  transform: translateY(-2px);
}

/* Secondary — outlined */
.pd-btn--secondary {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.82);
  border: 1.5px solid rgba(255,255,255,0.13);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.pd-btn--secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.24);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}

/* Get Free — same purple as primary (intentional, no parrot green) */

/* ── Trust strip ─────────────────────────────────────────────────────────────── */
.pd-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  margin-bottom: 24px;
}

.pd-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 500;
  color: rgba(255,255,255,0.38);
  white-space: nowrap;
}

.pd-trust-item svg {
  flex-shrink: 0;
  stroke: rgba(167,139,250,0.55);
}

/* ── Spec table ──────────────────────────────────────────────────────────────── */
.pd-spec-table {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
}

.pd-spec-row {
  display: grid;
  grid-template-columns: 115px 1fr;
  padding: 11px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.045);
}

.pd-spec-row:last-child { border-bottom: none; }
.pd-spec-row:nth-child(odd)  { background: rgba(255,255,255,0.02); }
.pd-spec-row:nth-child(even) { background: rgba(255,255,255,0.01); }

.pd-spec-key {
  font-size: 0.73rem;
  font-weight: 700;
  color: rgba(255,255,255,0.28);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pd-spec-val {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.62);
  font-weight: 500;
}

/* ── Detail tabs ─────────────────────────────────────────────────────────────── */
.pd-details-section {
  max-width: 820px;
  margin: 0 auto 60px;
}

.pd-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 30px;
  overflow-x: auto;
  scrollbar-width: none;
}

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

.pd-tab-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.35);
  font-size: 0.87rem;
  font-weight: 600;
  padding: 13px 24px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
  font-family: inherit;
}

.pd-tab-btn:hover { color: rgba(255,255,255,0.7); }

.pd-tab-btn.is-active {
  color: #c4b5fd;
  border-bottom-color: #a78bfa;
}

.pd-tab-panel { display: none; }
.pd-tab-panel.is-active { display: block; }

/* Description body */
.pd-desc-body {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.8;
}

.pd-desc-body p { margin: 0 0 1.1em; }
.pd-desc-body p:last-child { margin-bottom: 0; }

.pd-empty {
  color: rgba(255,255,255,0.25);
  font-style: italic;
}

/* Bullet list */
.pd-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 10px;
}

.pd-bullet-list li {
  position: relative;
  padding: 12px 14px 12px 42px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.pd-bullet-list li::before {
  content: '✓';
  position: absolute;
  left: 15px;
  top: 12px;
  width: 18px;
  height: 18px;
  background: rgba(52,211,153,0.12);
  border: 1px solid rgba(52,211,153,0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #34d399;
  font-size: 0.62rem;
  font-weight: 900;
  line-height: 18px;
  text-align: center;
}

/* ── FAQ section ─────────────────────────────────────────────────────────────── */
.pd-faq-section {
  max-width: 820px;
  margin: 0 auto 72px;
}

.pd-section-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
}

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

.pd-faq-item {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.22s, background 0.22s;
}

.pd-faq-item.is-open {
  border-color: rgba(167,139,250,0.3);
  background: rgba(109,61,255,0.05);
}

.pd-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 20px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.18s;
  font-family: inherit;
}

.pd-faq-q:hover { color: #fff; }
.pd-faq-item.is-open .pd-faq-q { color: #e9d5ff; }

.pd-faq-icon {
  flex-shrink: 0;
  color: rgba(255,255,255,0.25);
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1), color 0.2s;
}

.pd-faq-item.is-open .pd-faq-icon {
  transform: rotate(180deg);
  color: #a78bfa;
}

.pd-faq-a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.44);
  line-height: 1.75;
}

/* ── Related products section ────────────────────────────────────────────────── */
.pd-related-section {
  margin-bottom: 24px;
}

.pd-related-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.pd-related-head .pd-section-title { margin: 0; }

.pd-related-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a78bfa;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pd-related-label::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: #a78bfa;
  opacity: 0.55;
}

.pd-related-all {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(167,139,250,0.65);
  text-decoration: none;
  transition: color 0.18s;
  white-space: nowrap;
  margin-bottom: 4px;
}

.pd-related-all:hover { color: #c4b5fd; }

.pd-related-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* ── Responsive ──────────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .pd-layout {
    grid-template-columns: 1.1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 900px) {
  .pd-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 52px;
  }

  .pd-gallery {
    position: static;
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }

  .pd-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 700px) {
  .pd-main { padding: 0 18px 80px; }

  .pd-title { font-size: 1.55rem; }

  .pd-price,
  .pd-price--free { font-size: 1.75rem; }

  .pd-trust {
    flex-direction: column;
    gap: 10px;
  }

  .pd-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pd-details-section,
  .pd-faq-section { margin-bottom: 44px; }
}

@media (max-width: 480px) {
  .pd-main { padding: 0 14px 72px; }

  .pd-layout { gap: 24px; margin-bottom: 36px; }

  .pd-main-image { aspect-ratio: 16/10; }

  .pd-thumb { flex: 0 0 66px; height: 50px; }

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

  .pd-related-head { flex-direction: column; align-items: flex-start; gap: 6px; }

  .pd-spec-row { grid-template-columns: 95px 1fr; }

  .pd-btn { padding: 13px 20px; font-size: 0.9rem; }

  .pd-faq-q { padding: 14px 16px; font-size: 0.84rem; }
  .pd-faq-a { padding: 0 16px 14px; }
  .pd-tab-btn { padding: 11px 16px; font-size: 0.82rem; }
}

/* ── Image counter ───────────────────────────────────────────────────────────── */
.pd-img-counter {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 4;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.8);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  pointer-events: none;
}

/* ── Zoom / fullscreen button ────────────────────────────────────────────────── */
.pd-zoom-btn {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 4;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s, color 0.2s;
}
.pd-main-image:hover .pd-zoom-btn { opacity: 1; }
.pd-zoom-btn:hover { background: rgba(97,71,189,0.6); color: #fff; }
.pd-main-image img { cursor: zoom-in; }

/* ── Lightbox ────────────────────────────────────────────────────────────────── */
.pd-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.pd-lightbox.is-open { opacity: 1; pointer-events: all; }
.pd-lb-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 32px 100px rgba(0,0,0,0.8);
  transition: transform 0.2s;
}
.pd-lb-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.pd-lb-close:hover { background: rgba(255,255,255,0.16); color: #fff; }
.pd-lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.pd-lb-nav:hover { background: rgba(97,71,189,0.5); color: #fff; transform: translateY(-50%) scale(1.08); }
.pd-lb-prev { left: 24px; }
.pd-lb-next { right: 24px; }
.pd-lb-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  font-weight: 600;
}

/* ── Title row with wishlist ─────────────────────────────────────────────────── */
.pd-title-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}
.pd-title-row .pd-title { margin-bottom: 0; flex: 1; }
.pd-wish-btn {
  flex-shrink: 0;
  margin-top: 6px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.18s;
}
.pd-wish-btn:hover { background: rgba(239,68,68,0.1); border-color: rgba(239,68,68,0.3); color: #f87171; transform: scale(1.08); }
.pd-wish-btn.is-wishlisted { background: rgba(239,68,68,0.12); border-color: rgba(239,68,68,0.35); color: #ef4444; }
.pd-wish-btn.is-wishlisted svg { fill: #ef4444; }

/* ── Share row ───────────────────────────────────────────────────────────────── */
.pd-share-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.pd-share-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.28);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-right: 4px;
}
.pd-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.45);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s, color 0.18s;
  font-family: inherit;
  white-space: nowrap;
}
.pd-share-btn:hover { border-color: rgba(167,139,250,0.4); background: rgba(97,71,189,0.1); color: #c4b5fd; }

/* ── FAQ smooth animation ────────────────────────────────────────────────────── */
.pd-faq-a {
  display: block !important;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s cubic-bezier(0.4,0,0.2,1);
  padding: 0 20px;
}
.pd-faq-item.is-open .pd-faq-a { padding: 0 20px 18px; }

/* ── Tab panel fade ──────────────────────────────────────────────────────────── */
.pd-tab-panel { display: none; opacity: 0; transition: opacity 0.2s; }
.pd-tab-panel.is-active { display: block; opacity: 0; animation: pdTabFade 0.22s forwards; }
@keyframes pdTabFade { to { opacity: 1; } }

/* ── Page entrance animation ─────────────────────────────────────────────────── */
.pd-gallery  { animation: pdSlideUp 0.45s cubic-bezier(0.22,1,0.36,1) both; }
.pd-info     { animation: pdSlideUp 0.45s 0.1s cubic-bezier(0.22,1,0.36,1) both; }
@keyframes pdSlideUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Copy toast ──────────────────────────────────────────────────────────────── */
.pd-toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: rgba(30,27,50,0.95);
  border: 1px solid rgba(167,139,250,0.3);
  color: #c4b5fd;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 999px;
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s, transform 0.22s;
  z-index: 9000;
  white-space: nowrap;
}
.pd-toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── Sticky mobile CTA ───────────────────────────────────────────────────────── */
.pd-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: rgba(10,8,20,0.92);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 12px 20px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition: transform 0.3s;
}
.pd-mobile-cta.is-hidden { transform: translateY(100%); }
.pd-mobile-cta-price { display: flex; align-items: baseline; gap: 8px; }
.pd-mobile-price { font-size: 1.35rem; font-weight: 900; color: #fff; letter-spacing: -0.03em; }
.pd-mobile-price-free { font-size: 1.35rem; font-weight: 900; background: linear-gradient(130deg,#a78bfa,#c4b5fd); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.pd-mobile-price-old { font-size: 0.85rem; color: rgba(255,255,255,0.28); text-decoration: line-through; }
.pd-mobile-btn {
  padding: 13px 28px;
  border-radius: 999px;
  border: none;
  background: #6147bd;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  box-shadow: 0 4px 16px rgba(97,71,189,0.4);
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.pd-mobile-btn:active { transform: scale(0.96); }
.pd-mobile-btn:hover { background: #7158cc; box-shadow: 0 6px 22px rgba(97,71,189,0.55); }
/* ponytail: --free inherits base purple, no green */

@media (max-width: 768px) {
  .pd-mobile-cta { display: flex; }
  .pd-main { padding-bottom: 90px; }
}
@media (max-width: 480px) {
  .pd-lb-prev { left: 10px; }
  .pd-lb-next { right: 10px; }
  .pd-lb-nav { width: 40px; height: 40px; }
}

/* ── Lead Capture Modal ─────────────────────────────────────────────────────── */
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.lead-modal.is-open {
  opacity: 1;
  pointer-events: all;
}

.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
}

.lead-modal-content {
  position: relative;
  width: 100%;
  max-width: 420px;
  max-height: calc(100svh - 40px);
  overflow-y: auto;
  scrollbar-width: none;
  background: linear-gradient(180deg, rgba(22,18,42,1) 0%, rgba(14,12,28,1) 100%);
  border: 1px solid rgba(167,139,250,0.2);
  border-radius: 22px;
  padding: 48px 24px 24px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 30px 100px rgba(97,71,189,0.28),
    0 10px 40px rgba(0,0,0,0.6);
  transform: translateY(20px) scale(0.96);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s;
}

.lead-modal-content::-webkit-scrollbar { display: none; }

/* Top gradient accent */
.lead-modal-content::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6147bd 0%, #a78bfa 50%, #6147bd 100%);
  border-radius: 24px 24px 0 0;
}

/* Mobile drag handle */
.lead-drag-handle {
  display: none;
  width: 36px;
  height: 4px;
  background: rgba(255,255,255,0.18);
  border-radius: 999px;
  margin: 0 auto 16px;
}

.lead-modal.is-open .lead-modal-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.lead-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}

.lead-modal-close:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
}

/* Product preview strip at top of modal */
.lead-product-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 16px;
}

.lead-preview-img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.08);
}

.lead-preview-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.lead-preview-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: rgba(97,71,189,0.15);
  color: #c4b5fd;
  border: 1px solid rgba(167,139,250,0.28);
  padding: 2px 9px;
  border-radius: 999px;
  width: fit-content;
}

.lead-preview-cat {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.38);
  font-weight: 500;
}

.lead-preview-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.lead-modal-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}

.lead-modal-subtitle {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
  line-height: 1.5;
}

.lead-modal-subtitle strong {
  color: #c4b5fd;
  font-weight: 600;
}

/* Benefit chips */
.lead-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 14px 0 0;
}

.lead-benefit {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(167,139,250,0.85);
  background: rgba(97,71,189,0.1);
  border: 1px solid rgba(167,139,250,0.18);
  border-radius: 999px;
  padding: 4px 10px;
}

/* Form styles */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.lead-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.lead-field label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.lead-req {
  color: #f87171;
  font-weight: 700;
}

.lead-opt {
  color: rgba(255,255,255,0.25);
  font-weight: 500;
  font-size: 0.68rem;
  text-transform: none;
  letter-spacing: 0;
}

/* Input with leading icon */
.lead-input-wrap {
  position: relative;
}

.lead-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.28);
  pointer-events: none;
  transition: color 0.2s;
}

.lead-input-wrap:focus-within .lead-input-icon {
  color: #a78bfa;
}

.lead-field input {
  width: 100%;
  padding: 11px 14px 11px 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px;
  color: #fff;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.lead-field input::placeholder {
  color: rgba(255,255,255,0.2);
}

.lead-field input:focus {
  border-color: rgba(167,139,250,0.55);
  background: rgba(167,139,250,0.06);
  box-shadow: 0 0 0 3px rgba(167,139,250,0.12);
}

.lead-field input[data-error] {
  border-color: rgba(239,68,68,0.5);
  background: rgba(239,68,68,0.04);
}

.lead-field input[data-valid] {
  border-color: rgba(52,211,153,0.4);
}

/* Phone field: custom country-code dropdown + number input */
.lead-phone-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.lead-phone-row .lead-phone-input-wrap {
  flex: 1 1 auto;
}

/* No left icon on the number input — the country dropdown leads instead */
.lead-field .lead-phone-input-wrap input {
  padding-left: 14px;
}

.lead-cc {
  position: relative;
  flex: 0 0 auto;
}

.lead-cc-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 100%;
  padding: 11px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px;
  color: #fff;
  font-size: 0.9rem;
  font-family: inherit;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.lead-cc-btn:focus,
.lead-cc.is-open .lead-cc-btn {
  outline: none;
  border-color: rgba(167,139,250,0.55);
  background: rgba(167,139,250,0.06);
  box-shadow: 0 0 0 3px rgba(167,139,250,0.12);
}

.lead-cc-flag { font-size: 1rem; }
.lead-cc-code { font-variant-numeric: tabular-nums; }

.lead-cc-caret {
  color: rgba(255,255,255,0.4);
  transition: transform 0.2s;
}
.lead-cc.is-open .lead-cc-caret { transform: rotate(180deg); }

/* Compact, scrollable popup */
.lead-cc-list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 30;
  width: 220px;
  max-height: 208px;              /* ~5.5 rows visible → scrolls beyond */
  overflow-y: auto;
  margin: 0;
  padding: 5px;
  list-style: none;
  background: #17142b;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
  overscroll-behavior: contain;
}

.lead-cc.is-open .lead-cc-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lead-cc-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 7px;
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  cursor: pointer;
  transition: background 0.15s;
}

.lead-cc-item b {
  color: #fff;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.lead-cc-item span {
  color: rgba(255,255,255,0.45);
  font-size: 0.76rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lead-cc-item:hover,
.lead-cc-item.is-active {
  background: rgba(167,139,250,0.16);
}

/* Slim custom scrollbar */
.lead-cc-list::-webkit-scrollbar { width: 8px; }
.lead-cc-list::-webkit-scrollbar-track { background: transparent; }
.lead-cc-list::-webkit-scrollbar-thumb {
  background: rgba(167,139,250,0.35);
  border-radius: 4px;
}
.lead-cc-list::-webkit-scrollbar-thumb:hover { background: rgba(167,139,250,0.55); }
.lead-cc-list { scrollbar-width: thin; scrollbar-color: rgba(167,139,250,0.35) transparent; }

/* Inline field error */
.lead-field-error {
  display: block;
  font-size: 0.71rem;
  color: #f87171;
  min-height: 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.2s ease;
}

.lead-field-error:not(:empty) {
  max-height: 2.2em;
}

.lead-field-hint {
  font-size: 0.69rem;
  color: rgba(167,139,250,0.55);
  margin-top: 2px;
}

/* Micro-trust row below submit */
.lead-micro-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 6px;
  margin-top: 7px;
  font-size: 0.67rem;
  color: rgba(255,255,255,0.28);
}

.lead-micro-trust span {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.lead-micro-dot {
  color: rgba(255,255,255,0.15);
}

.lead-submit {
  width: 100%;
  padding: 13px 24px;
  margin-top: 4px;
  background: linear-gradient(135deg, #6147bd 0%, #8b5cf6 60%, #7c59ff 100%);
  border: none;
  border-radius: 999px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s, box-shadow 0.22s, filter 0.2s;
  box-shadow: 0 4px 20px rgba(97,71,189,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
}

.lead-submit:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(97,71,189,0.6), inset 0 1px 0 rgba(255,255,255,0.15);
}

.lead-submit:active {
  transform: scale(0.98);
}

.lead-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -115%;
  width: 65%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-18deg);
  transition: left 0.55s ease;
}

.lead-submit:hover::before {
  left: 130%;
}

.lead-submit.is-loading {
  pointer-events: none;
  opacity: 0.7;
}

.lead-submit-text,
.lead-submit-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.lead-submit-loading {
  display: none;
}

.lead-submit.is-loading .lead-submit-text {
  display: none;
}

.lead-submit.is-loading .lead-submit-loading {
  display: flex;
}

.lead-spinner {
  animation: leadSpin 0.8s linear infinite;
}

@keyframes leadSpin {
  to { transform: rotate(360deg); }
}

/* ── Success / confirmation state ─────────────────────────────────────────── */
.lead-success {
  display: none;
  text-align: center;
  padding: 4px 0 2px;
}

/* Icon with ripple */
.lead-success-icon-wrap {
  position: relative;
  width: 68px;
  height: 68px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lead-success-ripple {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(167,139,250,0.4);
  animation: leadRipple 2.4s cubic-bezier(0,0.55,0.45,1) infinite;
}

.lead-success-ripple--2 {
  animation-delay: 0.8s;
}

@keyframes leadRipple {
  0%   { transform: scale(0.8);  opacity: 0.7; }
  100% { transform: scale(1.65); opacity: 0; }
}

.lead-success-ring {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(97,71,189,0.2), rgba(124,89,255,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  animation: leadPopIn 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}

@keyframes leadPopIn {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* Animated SVG circle + checkmark */
.lead-check-circle {
  animation: leadDrawStroke 0.65s ease-out 0.1s both;
}

.lead-check-mark {
  animation: leadDrawStroke 0.4s ease-out 0.6s both;
}

@keyframes leadDrawStroke {
  from { stroke-dashoffset: 1; }
  to   { stroke-dashoffset: 0; }
}

/* Staggered fade-up for text elements */
@keyframes leadFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.lead-success-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  animation: leadFadeUp 0.45s ease 0.45s both;
}

.lead-success-text {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.44);
  margin: 0 0 14px;
  line-height: 1.5;
  animation: leadFadeUp 0.45s ease 0.55s both;
}

.lead-success-product-name {
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}

/* Receipt card */
.lead-confirm-list {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
  text-align: left;
  animation: leadFadeUp 0.45s ease 0.65s both;
}

.lead-confirm-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  font-size: 0.81rem;
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.lead-confirm-item:last-child { border-bottom: none; }

.lead-confirm-item svg { color: #a78bfa; flex-shrink: 0; }

.lead-confirm-item strong {
  color: rgba(255,255,255,0.88);
  font-weight: 600;
}

/* Primary download CTA */
.lead-download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 13px 24px;
  background: linear-gradient(135deg, #6147bd 0%, #7c59ff 100%);
  border: none;
  border-radius: 14px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(97,71,189,0.5), inset 0 0 0 1px rgba(255,255,255,0.1);
  transition: transform 0.18s, filter 0.18s;
  animation: leadFadeUp 0.45s ease 0.8s both, leadBtnPulse 2.2s ease-in-out 1.35s infinite;
}

@keyframes leadBtnPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(97,71,189,0.5),  inset 0 0 0 1px rgba(255,255,255,0.1); }
  50%       { box-shadow: 0 6px 36px rgba(97,71,189,0.72), inset 0 0 0 1px rgba(255,255,255,0.1); }
}

.lead-download-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

/* Dismiss text button */
.lead-success-dismiss {
  display: block;
  width: 100%;
  margin-top: 10px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.28);
  font-size: 0.79rem;
  font-family: inherit;
  cursor: pointer;
  transition: color 0.18s;
  animation: leadFadeUp 0.45s ease 0.95s both;
}

.lead-success-dismiss:hover { color: rgba(255,255,255,0.55); }

/* Trust footer removed */
.lead-trust-footer {
  display: none;
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.lead-avatars {
  display: flex;
  flex-shrink: 0;
}

.lead-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid rgba(14,12,28,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-left: -7px;
  flex-shrink: 0;
}

.lead-avatars .lead-avatar:first-child { margin-left: 0; }

.lead-privacy {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 0.71rem;
  color: rgba(255,255,255,0.28);
  margin: 0;
  line-height: 1.5;
}

.lead-privacy strong {
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}

/* Mobile — bottom sheet */
@media (max-width: 540px) {
  .lead-modal {
    padding: 0;
    align-items: flex-end;
  }

  .lead-drag-handle {
    display: block;
    margin-bottom: 10px;
  }

  .lead-modal-content {
    padding: 14px 18px 32px;
    max-width: 100%;
    border-radius: 18px 18px 0 0;
    max-height: 90svh;
    transform: translateY(100%);
    transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.3s;
  }

  .lead-modal.is-open .lead-modal-content {
    transform: translateY(0) scale(1);
  }

  .lead-modal-close {
    top: 36px;
    right: 12px;
  }

  .lead-modal-title {
    font-size: 1.1rem;
  }

  .lead-preview-img {
    width: 44px;
    height: 44px;
  }

  .lead-download-btn {
    padding: 13px 20px;
    font-size: 0.92rem;
  }
}
