/* ─── PRODUCT LANDING PAGE ───────────────────────────────────────────────── */
.product-page {
  background:
    radial-gradient(circle at top left, rgba(57,182,254,0.08), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}
.product-page .header {
  top: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.07);
}
.plp-header-back {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,0.05); color: #444;
  flex-shrink: 0; transition: background 0.2s;
}
.plp-header-back:hover { background: rgba(0,0,0,0.1); color: #111; }
.plp-header-right {
  margin-left: auto; display: flex; align-items: center; gap: 12px;
}
.plp-header-cod {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 600; color: #16a34a;
  background: rgba(22,163,74,0.08); border-radius: 999px;
  padding: 5px 12px;
}
.plp-header-order-btn {
  display: inline-flex; align-items: center;
  background: #ffffff; color: #1583d4;
  font-size: 13px; font-weight: 800; letter-spacing: -0.01em;
  padding: 9px 22px; border-radius: 999px;
  box-shadow: 0 4px 14px -4px rgba(0,0,0,0.22);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.plp-header-order-btn:hover { background: #eaf6ff; color: #1170bd; transform: translateY(-1px); box-shadow: 0 9px 22px -7px rgba(0,0,0,0.28); }
@media (max-width: 480px) {
  .plp-header-cod { display: none; }
  .plp-header-order-btn { padding: 7px 16px; font-size: 12px; }
}
.btn-back {
  font-size: 13px; font-weight: 700; color: #445;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.92); transition: all 0.2s;
  border: 1px solid rgba(148,163,184,0.16);
  white-space: nowrap;
}
.btn-back:hover { background: #fff; color: #1A1A2E; }

/* ─── LOADING ────────────────────────────────────────────────────────────── */
.product-loading {
  min-height: 80vh; display: flex; align-items: center; justify-content: center;
}
.spinner {
  width: 48px; height: 48px; border-radius: 50%;
  border: 4px solid #f0f0f0; border-top-color: #39B6FE;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── NOT FOUND ──────────────────────────────────────────────────────────── */
.product-not-found {
  min-height: 70vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  color: #aaa; font-size: 16px;
}
.product-not-found span { font-size: 64px; }
.product-not-found h2 { color: #555; }
.product-not-found a { color: #39B6FE; font-weight: 600; }

/* ─── HERO LAYOUT ────────────────────────────────────────────────────────── */
.plp-hero {
  padding: 96px 20px 52px;
  background: linear-gradient(180deg, rgba(248,251,255,0.85) 0%, #fff 100%);
}
.plp-container { max-width: 1140px; margin: 0 auto; }
.plp-hero .plp-container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 42px; align-items: start;
}

/* ─── IMAGE COLUMN ───────────────────────────────────────────────────────── */
.plp-image-col { position: sticky; top: 92px; }
.plp-image-wrap {
  position: relative; border-radius: 24px; overflow: hidden;
  box-shadow: 0 30px 70px rgba(15,23,42,0.14);
  aspect-ratio: 1 / 1; background: linear-gradient(180deg, #f3f7fb 0%, #edf2f8 100%);
  border: 1px solid rgba(148,163,184,0.12);
}
.plp-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.plp-image-wrap:hover img { transform: scale(1.04); }

.plp-badge-wrap { position: absolute; top: 16px; left: 16px; }
.plp-badge {
  padding: 6px 14px; border-radius: 8px;
  font-size: 13px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase;
}
.plp-badge.badge-HOT { background: #39B6FE; color: #fff; }
.plp-badge.badge-NEW { background: #1D3557; color: #fff; }
.plp-badge.badge-SALE { background: #F4A261; color: #fff; }

.plp-discount-circle {
  position: absolute; top: 16px; right: 16px;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #39B6FE, #1a9fe0);
  color: #fff; font-size: 13px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; text-align: center;
  line-height: 1.2; box-shadow: 0 4px 14px rgba(57,182,254,0.4);
}

.plp-trust-row {
  display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap;
}
.plp-trust-item {
  flex: 1; min-width: 100px;
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; padding: 14px 10px; border-radius: 16px;
  background: rgba(255,255,255,0.9); font-size: 12px; font-weight: 700; color: #445;
  border: 1px solid rgba(148,163,184,0.12);
  box-shadow: 0 10px 24px rgba(15,23,42,0.05);
  text-align: center;
}
.plp-trust-item span { font-size: 20px; }

/* ─── INFO COLUMN ────────────────────────────────────────────────────────── */
.plp-info-col { display: flex; flex-direction: column; gap: 14px; }

.plp-collection-tag {
  display: inline-block; padding: 6px 12px; border-radius: 999px;
  background: rgba(57,182,254,0.1); font-size: 11px; font-weight: 800;
  color: #1a9fe0; text-transform: uppercase; letter-spacing: 0.08em;
  width: fit-content;
}
.plp-proof-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.plp-proof-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(148,163,184,0.14);
  color: #1A1A2E;
  font-size: 13px;
  font-weight: 700;
}
.plp-proof-item.muted {
  color: #667085;
  font-weight: 600;
}
.plp-proof-stars {
  color: #f4a261;
  letter-spacing: 0.08em;
}

.plp-product-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 800; color: #1A1A2E; line-height: 1.3;
}
.plp-viewers-live {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(239,68,68,0.07); border: 1px solid rgba(239,68,68,0.15);
  border-radius: 999px; padding: 5px 12px;
  font-size: 12px; font-weight: 700; color: #dc2626;
  width: fit-content;
}
.plp-live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #ef4444; flex-shrink: 0;
  animation: live-blink 1.4s ease-in-out infinite;
}
@keyframes live-blink {
  0%, 100% { opacity: 1; } 50% { opacity: 0.25; }
}
.plp-account-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 14px 0 18px;
}
.plp-favorite-btn,
.plp-account-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.2s ease;
}
.plp-favorite-btn {
  border: 1px solid rgba(236,72,153,0.2);
  background: rgba(255,255,255,0.94);
  color: #be185d;
  cursor: pointer;
}
.plp-favorite-btn.active {
  background: linear-gradient(135deg, #ec4899, #db2777);
  color: #fff;
  box-shadow: 0 12px 28px rgba(219,39,119,0.24);
}
.plp-account-link {
  border: 1px solid rgba(57,182,254,0.16);
  background: rgba(57,182,254,0.08);
  color: #0d8de8;
}
.plp-favorite-btn:hover,
.plp-account-link:hover {
  transform: translateY(-1px);
}

.plp-urgency-bar {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, #fff7ed, #ffffff);
  border: 1px solid rgba(251,146,60,0.2);
  box-shadow: 0 14px 34px rgba(15,23,42,0.05);
}
.plp-urgency-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(251,146,60,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.plp-urgency-bar strong {
  display: block;
  margin-bottom: 4px;
  color: #9a3412;
  font-size: 15px;
}
.plp-urgency-bar p {
  color: #7c2d12;
  font-size: 13px;
  line-height: 1.65;
}

/* ─── PRICE BLOCK ────────────────────────────────────────────────────────── */
.plp-price-block {
  background: linear-gradient(135deg, #ffffff, #f3f9ff);
  border: 1px solid rgba(57,182,254,0.14); border-radius: 24px;
  padding: 24px 24px; display: flex;
  align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  box-shadow: 0 18px 45px rgba(15,23,42,0.07);
}
.plp-price-copy { display: flex; flex-direction: column; gap: 8px; }
.plp-price-caption {
  font-size: 12px;
  font-weight: 800;
  color: #98a2b3;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.plp-prices { display: flex; align-items: baseline; gap: 12px; }
.plp-price {
  font-family: 'Poppins', sans-serif;
  font-size: 46px; font-weight: 900; color: #0f172a; line-height: 1;
}
.plp-old-price { font-size: 20px; color: #94a3b8; text-decoration: line-through; font-weight: 600; }
.plp-price-foot {
  color: #667085;
  font-size: 13px;
}
.plp-save-badge {
  display: flex; align-items: center; gap: 5px;
  background: linear-gradient(135deg, #39B6FE, #1a9fe0); color: #fff;
  padding: 10px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 800;
  box-shadow: 0 10px 24px rgba(57,182,254,0.28);
}

/* ─── COD NOTICE ─────────────────────────────────────────────────────────── */
.plp-cod-notice {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,0.95); border: 1px solid rgba(16,185,129,0.18);
  border-radius: 18px; padding: 18px 20px;
  box-shadow: 0 14px 34px rgba(15,23,42,0.05);
}
.plp-cod-icon { font-size: 28px; flex-shrink: 0; }
.plp-cod-notice strong { font-size: 15px; color: #065f46; display: block; margin-bottom: 2px; }
.plp-cod-notice p { font-size: 13px; color: #15803d; margin: 0; }

/* ─── VARIANTS ───────────────────────────────────────────────────────────── */
.plp-variants {
  background: rgba(255,255,255,0.95);
  border: 1px solid #e5eef8;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 16px 38px rgba(15,23,42,0.05);
}
.plp-variants-title {
  font-size: 18px;
  font-weight: 800;
  color: #1A1A2E;
  margin-bottom: 14px;
}
.plp-variants-grid {
  display: grid;
  gap: 14px;
}
.plp-variant-group label {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 700;
  color: #475467;
}
.plp-variant-group select {
  width: 100%;
  padding: 13px 14px;
  border-radius: 12px;
  border: 2px solid #e5e7eb;
  background: #fff;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.plp-variant-group select:focus {
  border-color: #39B6FE;
  box-shadow: 0 0 0 3px rgba(57,182,254,0.12);
}

/* ─── CONSULTATION ───────────────────────────────────────────────────────── */
.plp-consult-section {
  max-width: 760px;
  margin: 8px auto 64px;
  padding: 0 16px;
}
.plp-consult-card {
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(243,249,255,0.94));
  border: 1px solid rgba(57,182,254,0.14);
  box-shadow: 0 16px 38px rgba(15,23,42,0.06);
}
.plp-consult-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}
.plp-consult-head h3 {
  font-size: 20px;
  color: #1A1A2E;
  margin-bottom: 6px;
}
.plp-consult-head p {
  color: #667085;
  font-size: 14px;
  line-height: 1.7;
}
.plp-consult-badge {
  flex-shrink: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(57,182,254,0.1);
  color: #1a9fe0;
  font-size: 12px;
  font-weight: 800;
}
.plp-consult-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.plp-consult-grid input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 2px solid #e5e7eb;
  background: #fff;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.plp-consult-grid input:focus {
  border-color: #39B6FE;
  box-shadow: 0 0 0 4px rgba(57,182,254,0.12);
}
.plp-consult-btn {
  width: 100%;
  padding: 17px 20px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #39B6FE, #1a9fe0);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(57,182,254,0.32);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}
.plp-consult-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(57,182,254,0.42);
  filter: saturate(1.05);
}
.plp-consult-btn:active {
  transform: translateY(0);
  box-shadow: 0 10px 20px rgba(57,182,254,0.28);
}
.plp-consult-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 10px 20px rgba(57,182,254,0.2);
}
.plp-consult-legal {
  margin-top: 10px;
  color: #667085;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}
.plp-consult-legal a {
  color: #1a9fe0;
  text-decoration: underline;
}

/* ─── ORDER FORM ─────────────────────────────────────────────────────────── */
.plp-order-form {
  background: linear-gradient(160deg, #0f172a 0%, #1a2744 100%);
  border-radius: 24px;
  padding: 22px 22px 18px;
  box-shadow: 0 26px 60px rgba(15,23,42,0.22);
  border: 1px solid rgba(255,255,255,0.06);
}
.plp-form-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.plp-form-title {
  font-size: 18px; font-weight: 800; color: #fff;
}
.plp-form-badge {
  flex-shrink: 0;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(22,163,74,0.18);
  border: 1px solid rgba(22,163,74,0.3);
  color: #4ade80;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}
.plp-form-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}
.plp-form-inputs input {
  width: 100%; padding: 15px 16px;
  background: rgba(255,255,255,0.07); border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 12px; color: #fff; font-size: 15px; font-family: inherit; outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.plp-form-inputs input::placeholder { color: rgba(255,255,255,0.28); }
.plp-form-inputs input:focus { border-color: #39B6FE; background: rgba(255,255,255,0.1); }
@media (max-width: 480px) {
  .plp-form-inputs { grid-template-columns: 1fr; gap: 8px; }
}

.plp-order-btn {
  width: 100%; padding: 19px 20px;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #fff; border: none; border-radius: 14px;
  font-size: 17px; font-weight: 800; cursor: pointer; letter-spacing: 0.01em;
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 6px 24px rgba(22,163,74,0.5), 0 0 0 0 rgba(22,163,74,0.4);
  animation: cta-pulse 2.4s ease-in-out infinite;
  position: relative; overflow: hidden;
}
.plp-order-btn::after {
  content: '';
  position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  animation: cta-shine 3s ease-in-out infinite;
}
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(22,163,74,0.5); }
  50% { box-shadow: 0 8px 36px rgba(22,163,74,0.72); transform: translateY(-1px); }
}
@keyframes cta-shine {
  0% { left: -100%; } 50%, 100% { left: 160%; }
}
.plp-order-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(22,163,74,0.65); animation: none; }
.plp-order-btn:active { transform: scale(0.98); animation: none; }
.plp-order-btn:disabled { opacity: 0.6; cursor: not-allowed; animation: none; }

.plp-under-btn {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; margin-top: 12px;
}
.plp-under-btn span {
  padding: 6px 10px; border-radius: 999px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.75);
  font-size: 11px; font-weight: 700;
}
.plp-legal-note {
  margin-top: 12px;
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 11px;
  line-height: 1.6;
}
.plp-legal-note a {
  color: rgba(127,207,255,0.7);
  text-decoration: underline;
}
.plp-cutoff-card {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(249,115,22,0.14), rgba(255,255,255,0.08));
  border: 1px solid rgba(251,146,60,0.22);
}
.plp-cutoff-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.plp-cutoff-top strong {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}
.plp-cutoff-status {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: #fff0c2;
  font-size: 12px;
  font-weight: 800;
}
.plp-cutoff-timer {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 10px;
}
.plp-cutoff-text {
  color: rgba(255,244,220,0.82);
  font-size: 13px;
  line-height: 1.7;
}

/* ─── SUCCESS ────────────────────────────────────────────────────────────── */
.plp-success {
  background: #1A1A2E; border-radius: 20px; padding: 36px 28px;
  text-align: center;
}
.plp-success-icon { font-size: 64px; margin-bottom: 12px; animation: pop 0.5s ease; }
@keyframes pop { from { transform: scale(0.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.plp-success h3 { font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.plp-success p { font-size: 15px; color: rgba(255,255,255,0.6); margin-bottom: 24px; line-height: 1.6; }
.plp-success p strong { color: #fff; }
.plp-success-steps {
  display: flex; gap: 10px; justify-content: center; margin-bottom: 24px; flex-wrap: wrap;
}
.plp-step {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06); border-radius: 10px;
  padding: 10px 14px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7);
}
.plp-step span {
  width: 22px; height: 22px; border-radius: 50%;
  background: #39B6FE; color: #fff; font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.plp-back-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8);
  padding: 12px 22px; border-radius: 12px; font-size: 14px; font-weight: 600;
  transition: background 0.2s;
}
.plp-back-btn:hover { background: rgba(255,255,255,0.15); color: #fff; }

.plp-reward-card {
  margin: 24px auto 20px;
  max-width: 520px;
  padding: 24px 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(57,182,254,0.14));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
}
.plp-reward-kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: #7fcfff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.plp-reward-copy h4 {
  color: #fff;
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 8px;
}
.plp-reward-copy p {
  color: rgba(255,255,255,0.68);
  font-size: 14px;
  line-height: 1.6;
}
.plp-reward-trigger {
  width: 100%;
  margin-top: 18px;
  padding: 18px 16px;
  border: none;
  border-radius: 20px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 16px 32px rgba(249,115,22,0.26);
  transition: transform 0.22s, box-shadow 0.22s, filter 0.22s;
}
.plp-reward-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(249,115,22,0.34);
  filter: saturate(1.05);
}
.plp-reward-trigger.revealing {
  pointer-events: none;
}
.plp-reward-trigger-text {
  font-size: 17px;
  font-weight: 800;
}
.plp-giftbox {
  position: relative;
  width: 56px;
  height: 52px;
  display: inline-block;
  flex-shrink: 0;
  transform-origin: center center;
}
.plp-giftbox.spin {
  animation: reward-spin 1.05s ease-in-out forwards;
}
.plp-gift-lid,
.plp-gift-body {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff6d8, #ffd166);
}
.plp-gift-lid {
  top: 2px;
  width: 52px;
  height: 14px;
  z-index: 2;
  box-shadow: 0 8px 14px rgba(0,0,0,0.1);
}
.plp-gift-body {
  top: 14px;
  width: 46px;
  height: 34px;
}
.plp-gift-ribbon {
  position: absolute;
  background: #ef4444;
  z-index: 3;
}
.plp-gift-ribbon.v {
  top: 6px;
  left: 50%;
  width: 8px;
  height: 42px;
  transform: translateX(-50%);
  border-radius: 999px;
}
.plp-gift-ribbon.h {
  top: 18px;
  left: 50%;
  width: 50px;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 999px;
}
.plp-reward-card.revealed .plp-gift-lid {
  animation: reward-lid 0.55s ease forwards;
}
.plp-reward-card.revealed .plp-gift-body {
  animation: reward-body 0.55s ease forwards;
}
.plp-reward-result {
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}
.plp-reward-result strong {
  display: block;
  color: #fff;
  font-size: 22px;
  line-height: 1.18;
  margin-bottom: 8px;
}
.plp-reward-result p {
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.6;
}
.plp-reward-badge {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(34,197,94,0.14);
  color: #86efac;
  font-size: 12px;
  font-weight: 800;
}
.plp-reward-code-wrap {
  margin-top: 14px;
}
.plp-reward-code-wrap span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.56);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.plp-reward-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.96);
  color: #0f172a;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.plp-reward-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: 16px;
  padding: 0 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #39B6FE, #1a9fe0);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(57,182,254,0.24);
}

@keyframes reward-spin {
  0% { transform: rotate(0deg) scale(1); }
  40% { transform: rotate(14deg) scale(1.08); }
  80% { transform: rotate(-12deg) scale(1.04); }
  100% { transform: rotate(0deg) scale(1); }
}

@keyframes reward-lid {
  0% { transform: translateX(-50%) translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateX(-50%) translateY(-16px) rotate(-12deg); opacity: 1; }
}

@keyframes reward-body {
  0% { transform: translateX(-50%) scale(1); }
  100% { transform: translateX(-50%) scale(1.03); }
}

/* ─── FEATURES SECTION ───────────────────────────────────────────────────── */
.plp-story-section {
  padding: 0 20px 50px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
}
.plp-story-stack {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.plp-story-card {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: stretch;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,250,255,0.98));
  border: 1px solid rgba(57,182,254,0.1);
  box-shadow: 0 20px 48px rgba(15,23,42,0.06);
}
.plp-story-card.reverse {
  grid-template-columns: 0.96fr 1.04fr;
}
.plp-story-copy {
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  min-height: 360px;
}
.plp-story-copy > * {
  max-width: 560px;
}
.plp-story-label {
  display: inline-flex;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(57,182,254,0.1);
  color: #1a9fe0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.plp-story-copy h3 {
  color: #0f172a;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.14;
  margin: 0;
  text-wrap: balance;
}
.plp-story-copy p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.82;
  margin: 0;
}
.plp-story-visual {
  position: relative;
  min-height: 360px;
  padding: 18px;
  background:
    radial-gradient(circle at top right, rgba(57,182,254,0.16), transparent 42%),
    linear-gradient(135deg, #edf5ff, #f8fbff);
}
.plp-story-visual-frame {
  width: 100%;
  height: 100%;
  min-height: 324px;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow:
    inset 0 0 0 1px rgba(57,182,254,0.08),
    0 14px 32px rgba(41, 77, 122, 0.12);
}
.plp-story-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.plp-features-section { padding: 48px 20px; background: #f8f8f8; }
.plp-features-title {
  font-family: 'Poppins', sans-serif; font-size: 28px; font-weight: 800;
  color: #1A1A2E; text-align: center; margin-bottom: 32px;
}
.plp-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.plp-feature-card {
  background: rgba(255,255,255,0.95); border-radius: 20px; padding: 24px 20px;
  text-align: center; box-shadow: 0 14px 34px rgba(15,23,42,0.06);
  border: 1px solid rgba(148,163,184,0.12);
  transition: transform 0.2s;
}
.plp-feature-card:hover { transform: translateY(-3px); }
.plp-feature-icon { font-size: 32px; margin-bottom: 12px; }
.plp-feature-card h4 { font-size: 15px; font-weight: 700; color: #1A1A2E; margin-bottom: 6px; }
.plp-feature-card p { font-size: 13px; color: #888; line-height: 1.6; }

/* ─── REVIEWS ────────────────────────────────────────────────────────────── */
.plp-reviews-section {
  padding: 0 20px 56px;
  background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 100%);
}
.plp-reviews-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
.plp-reviews-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(57,182,254,0.1);
  color: #1a9fe0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.plp-reviews-sub {
  color: #667085;
  font-size: 14px;
  line-height: 1.7;
  max-width: 640px;
}
.plp-review-summary {
  min-width: 180px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(57,182,254,0.14);
  box-shadow: 0 16px 34px rgba(15,23,42,0.05);
  text-align: center;
}
.plp-review-summary strong {
  display: block;
  margin-bottom: 4px;
  color: #0f172a;
  font-size: 34px;
  font-weight: 900;
}
.plp-review-summary span {
  color: #64748b;
  font-size: 13px;
}
.plp-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}
.plp-review-card,
.plp-review-empty,
.plp-review-form-card {
  border-radius: 24px;
  border: 1px solid rgba(57,182,254,0.12);
  background: rgba(255,255,255,0.97);
  box-shadow: 0 18px 40px rgba(15,23,42,0.05);
}
.plp-review-card {
  padding: 22px 20px;
}
.plp-review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.plp-review-name {
  color: #0f172a;
  font-size: 15px;
  font-weight: 800;
}
.plp-review-stars {
  color: #f59e0b;
  letter-spacing: 0.08em;
  font-size: 14px;
}
.plp-review-text {
  color: #475467;
  font-size: 14px;
  line-height: 1.75;
}
.plp-review-image {
  margin-top: 14px;
  border-radius: 18px;
  overflow: hidden;
}
.plp-review-image img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  display: block;
}
.plp-review-date {
  display: block;
  margin-top: 12px;
  color: #98a2b3;
  font-size: 12px;
}
.plp-review-empty {
  padding: 26px 22px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
}
.plp-review-form-card {
  padding: 24px 22px;
}
.plp-review-form-head h3 {
  color: #0f172a;
  font-size: 22px;
  margin-bottom: 8px;
}
.plp-review-form-head p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 18px;
}
.plp-review-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.plp-review-form-grid input,
.plp-review-rating-row select,
.plp-review-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 2px solid #e5e7eb;
  background: #fff;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.plp-review-form-grid input:focus,
.plp-review-rating-row select:focus,
.plp-review-form textarea:focus {
  border-color: #39B6FE;
  box-shadow: 0 0 0 4px rgba(57,182,254,0.12);
}
.plp-review-upload {
  margin-bottom: 12px;
}
.plp-review-upload label {
  display: block;
  margin-bottom: 8px;
  color: #475467;
  font-size: 13px;
  font-weight: 700;
}
.plp-review-upload input[type="file"] {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 2px dashed #cbd5e1;
  background: #f8fbff;
  color: #475467;
  font-size: 14px;
  font-family: inherit;
}
.plp-review-upload-note {
  margin-top: 8px;
  color: #98a2b3;
  font-size: 12px;
}
.plp-review-image-preview {
  margin-top: 12px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(57,182,254,0.14);
}
.plp-review-image-preview img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  display: block;
}
.plp-review-rating-row {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}
.plp-review-rating-row label {
  color: #475467;
  font-size: 13px;
  font-weight: 700;
}
.plp-review-form textarea {
  min-height: 130px;
  resize: vertical;
  margin-bottom: 14px;
}
.plp-review-btn {
  width: 100%;
  min-height: 54px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #39B6FE, #1a9fe0);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(57,182,254,0.26);
}

/* ─── STICKY BAR (mobile) ────────────────────────────────────────────────── */
.sticky-order-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  background: rgba(16,24,39,0.96); padding: 12px 20px;
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  transform: translateY(100%); transition: transform 0.3s;
}
.sticky-order-bar.visible { transform: translateY(0); }
.sticky-bar-price { font-size: 20px; font-weight: 800; color: #39B6FE; }
.sticky-bar-btn {
  background: linear-gradient(135deg, #39B6FE, #1a9fe0);
  color: #fff; border: none; border-radius: 12px;
  padding: 12px 22px; font-size: 15px; font-weight: 700;
  cursor: pointer; white-space: nowrap;
  box-shadow: 0 4px 14px rgba(57,182,254,0.4);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .plp-hero .plp-container { grid-template-columns: 1fr; gap: 32px; }
  .plp-image-col { position: static; }
  .plp-hero { padding: 80px 16px 28px; }
  .plp-form-top { flex-direction: column; }
  .plp-consult-head { flex-direction: column; }
  .plp-reviews-head { flex-direction: column; }
  .plp-story-card,
  .plp-story-card.reverse { grid-template-columns: 1fr; }
  .plp-story-copy { min-height: auto; }
}
@media (max-width: 600px) {
  .plp-price { font-size: 30px; }
  .plp-order-btn { font-size: 15px; padding: 16px; }
  .plp-order-form { padding: 18px 16px; }
  .plp-account-actions { gap: 10px; }
  .plp-favorite-btn, .plp-account-link { width: 100%; }
  .plp-proof-row { gap: 8px; }
  .plp-proof-item { width: 100%; justify-content: center; }
  .plp-consult-grid { grid-template-columns: 1fr; }
  .plp-review-form-grid { grid-template-columns: 1fr; }
  .plp-price-block { padding: 18px 16px; }
  .plp-features-grid { grid-template-columns: 1fr 1fr; }
  .plp-reward-card { padding: 20px 16px; }
  .plp-reward-trigger { flex-direction: column; }
  .plp-reward-copy h4,
  .plp-reward-result strong { font-size: 20px; }
  .plp-story-copy { padding: 24px 18px; }
  .plp-story-copy h3 { font-size: 24px; }
  .plp-story-visual { min-height: 240px; padding: 12px; }
  .plp-story-visual-frame { min-height: 228px; border-radius: 18px; }
  .plp-trust-row { gap: 8px; }
  .plp-trust-item { padding: 10px 8px; font-size: 11px; }
  .plp-trust-item span { font-size: 18px; }
  .plp-urgency-bar { padding: 12px 14px; gap: 10px; }
  .plp-urgency-icon { width: 36px; height: 36px; font-size: 18px; }
  .plp-urgency-bar p { font-size: 13px; }
  .plp-cutoff-card { padding: 16px; }
  .plp-cutoff-timer { font-size: 32px; }
  .plp-form-trust { gap: 8px; flex-wrap: wrap; }
  .plp-form-trust span { font-size: 11px; }
  .btn-back { font-size: 12px; padding: 7px 10px; }
  .plp-product-title { font-size: clamp(18px, 5vw, 22px); }
  .plp-success-steps { flex-direction: column; align-items: stretch; }
}
@media (max-width: 480px) {
  .plp-hero { padding: 76px 14px 20px; }
  .plp-image-wrap { border-radius: 18px; }
  .plp-features-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .plp-feature-card { padding: 16px 12px; }
  .plp-features-section { padding: 32px 14px; }
  .plp-reviews-section, .plp-consult-section, .plp-story-section { padding-left: 14px; padding-right: 14px; }
  .plp-review-form-card, .plp-consult-card { padding: 20px 16px; }
}

/* ─── PASTED LANDING HTML ────────────────────────────────────────────────────── */
.plp-landing-html {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 20px;
  font-size: 16px;
  line-height: 1.75;
  color: #1e293b;
}
.plp-landing-html img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 20px auto;
}
.plp-landing-html h1, .plp-landing-html h2, .plp-landing-html h3 {
  font-weight: 700;
  line-height: 1.2;
  margin: 32px 0 12px;
  color: #0f172a;
}
.plp-landing-html h1 { font-size: clamp(28px, 4vw, 48px); }
.plp-landing-html h2 { font-size: clamp(22px, 3vw, 36px); }
.plp-landing-html h3 { font-size: clamp(18px, 2.5vw, 28px); }
.plp-landing-html p { margin: 12px 0; }
.plp-landing-html ul, .plp-landing-html ol { padding-left: 24px; margin: 12px 0; }
.plp-landing-html li { margin: 6px 0; }
@media (max-width: 600px) {
  .plp-landing-html { padding: 32px 16px; font-size: 15px; }
}

/* Sticky Order Now button */
.sticky-order-now {
  position: fixed;
  bottom: 20px;
  left: 16px; right: 16px;
  transform: translateY(100px);
  opacity: 0;
  z-index: 999;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s;
}
.sticky-order-now.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.sticky-order-now button {
  width: 100%;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 18px 24px;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(22,163,74,0.55);
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s;
  letter-spacing: 0.01em;
}
.sticky-order-now button:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(22,163,74,0.6); }
.sticky-order-now button:active { transform: scale(0.98); }
@media (min-width: 600px) {
  .sticky-order-now { left: 50%; right: auto; transform: translate(-50%, 100px); max-width: 420px; width: 100%; }
  .sticky-order-now.visible { transform: translate(-50%, 0); }
}

/* ─── SOCIAL PROOF ───────────────────────────────────────────────────────── */
.plp-social-proof {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: #374151; font-weight: 500;
  margin-bottom: 10px;
}
.plp-social-proof strong { color: #111; font-weight: 800; }
.plp-social-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 3px rgba(22,163,74,0.2);
  animation: live-pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(22,163,74,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(22,163,74,0.08); }
}

/* ─── STOCK SCARCITY ─────────────────────────────────────────────────────── */
.plp-stock-line {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 700; color: #ef4444;
  margin-top: 2px;
}

/* ─── NO RISK LINE ───────────────────────────────────────────────────────── */
.plp-no-risk {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: #4ade80;
  margin-bottom: 8px; margin-top: 4px;
}


/* ─── CONSULTATION — helpful consultant design ──────────────────────────────── */
.plp-consult-card { margin-top: 16px; position: relative; overflow: hidden; }
.plp-consult-person {
  display: flex; align-items: center; gap: 13px;
  margin-bottom: 16px; padding-bottom: 16px;
  border-bottom: 1px solid rgba(57,182,254,0.14);
}
.plp-consult-avatar {
  position: relative; width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg,#eaf6ff,#cdecff);
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(57,182,254,0.25);
}
.plp-consult-avatar svg { border-radius: 50%; display: block; }
.plp-consult-photo {
  width: 100%; height: 100%; border-radius: 50%;
  object-fit: cover; object-position: center 22%; display: block;
}
.plp-consult-online {
  position: absolute; right: 2px; bottom: 2px; width: 14px; height: 14px;
  border-radius: 50%; background: #22c55e; border: 2.5px solid #fff;
  animation: plpPulse 2s infinite;
}
@keyframes plpPulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.plp-consult-person-info { display: flex; flex-direction: column; gap: 1px; }
.plp-consult-person-info strong { font-size: 16px; color: #1A1A2E; }
.plp-consult-person-info > span { font-size: 12.5px; color: #667085; }
.plp-consult-status { color: #16a34a !important; font-weight: 700; font-size: 12px !important; }
.plp-consult-trust {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-top: 12px; font-size: 12px; color: #667085;
}
