/* ThermoPress 360 - Product Page Styles
   Updated: February 19, 2026 - Gallery: nav arrows, swipe hint, thumbs-wrapper with scroll buttons,
   image opacity transition, data-src pattern. ATC retry. */

:root {
  --tp-navy: #0A2B4C;
  --tp-coral: #FF7A59;
  --tp-blue: #A2C1D9;
  --tp-grey: #EDEFF1;
  --tp-bg: #F8F9FA;
  --tp-text: #0A2B4C;
  --tp-text-muted: #5A6B7A;
  --tp-radius-lg: 20px;
  --tp-radius-pill: 9999px;
}

/* ========== HERO SECTION ========== */
.tp-hero {
  padding: 2rem 0 3rem;
  background: white;
}

.tp-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .tp-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}

.tp-gallery {
  width: 100%;
  min-width: 0;
}

.tp-gallery-main {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--tp-radius-lg);
  overflow: hidden;
  background: var(--tp-bg);
}

.tp-gallery-main-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: opacity 0.15s ease;
}

/* Gallery prev/next arrows */
.tp-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 3px 12px rgba(0,0,0,0.12);
  transition: all 0.2s ease;
  color: var(--tp-navy);
}

.tp-gallery-nav:hover {
  background: var(--tp-coral);
  color: white;
}

.tp-gallery-nav--prev { left: 0.75rem; }
.tp-gallery-nav--next { right: 0.75rem; }

@media (max-width: 767px) {
  .tp-gallery-nav { width: 34px; height: 34px; }
  .tp-gallery-nav--prev { left: 0.5rem; }
  .tp-gallery-nav--next { right: 0.5rem; }
}

/* Swipe hint (mobile only) */
.tp-gallery-swipe-hint {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(10, 43, 76, 0.85);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--tp-radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  animation: tpFadeInOut 4s ease-in-out forwards;
  z-index: 2;
}

.tp-gallery-swipe-hint svg {
  animation: tpBounceRight 1s ease-in-out infinite;
}

@keyframes tpBounceRight {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

@keyframes tpFadeInOut {
  0% { opacity: 0; }
  10% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; pointer-events: none; }
}

@media (min-width: 768px) {
  .tp-gallery-swipe-hint { display: none; }
}

/* Thumbnails wrapper with scroll arrows */
.tp-gallery-thumbs-wrapper {
  margin-top: 0.75rem;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  box-sizing: border-box;
}

.tp-thumbs-nav {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid var(--tp-grey);
  border-radius: 50%;
  cursor: pointer;
  color: var(--tp-navy);
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(10, 43, 76, 0.08);
}

.tp-thumbs-nav:hover {
  background: var(--tp-coral);
  color: white;
  border-color: var(--tp-coral);
}

.tp-gallery-thumbs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.25rem 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
  min-width: 0;
  max-width: calc(100% - 72px);
}

.tp-gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.tp-thumb {
  flex-shrink: 0;
  width: 56px;
  height: 70px;
  border-radius: 10px;
  overflow: hidden;
  scroll-snap-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: var(--tp-bg);
  transition: border-color 0.2s;
}

@media (min-width: 768px) {
  .tp-thumb {
    width: 64px;
    height: 80px;
  }
}

.tp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tp-thumb--active,
.tp-thumb:hover {
  border-color: var(--tp-coral);
}

/* Buy Box */
.tp-buybox {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.tp-title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 900;
  color: var(--tp-navy);
  line-height: 1.2;
  margin: 0.25rem 0 0;
}

.tp-subtitle {
  font-size: 1rem;
  color: var(--tp-text-muted);
  margin: 0.5rem 0 0;
  font-weight: 400;
  line-height: 1.6;
}

.tp-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tp-stars {
  display: flex;
  gap: 2px;
}

.tp-rating-text {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--tp-text-muted);
}

/* Volume Selector */
.tp-volume-selector {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tp-volume-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1rem;
  border: 2px solid var(--tp-grey);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  background: white;
}

.tp-volume-option:hover {
  border-color: var(--tp-blue);
}

.tp-volume-option--active {
  border-color: var(--tp-coral);
  background: rgba(255, 122, 89, 0.04);
  box-shadow: 0 0 0 1px var(--tp-coral);
}

.tp-volume-header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.tp-volume-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #CBD5E0;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s;
}

.tp-volume-option--active .tp-volume-radio {
  border-color: var(--tp-coral);
}

.tp-volume-option--active .tp-volume-radio::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tp-coral);
}

.tp-volume-qty {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--tp-navy);
}

.tp-volume-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.1875rem 0.5rem;
  border-radius: 9999px;
  background: rgba(45, 139, 95, 0.1);
  color: #2D8B5F;
  white-space: nowrap;
}

.tp-volume-badge--best {
  background: var(--tp-coral);
  color: white;
}

.tp-volume-price-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.125rem;
}

.tp-volume-price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--tp-navy);
  white-space: nowrap;
}

.tp-volume-unit {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--tp-text-muted);
}

.tp-volume-total {
  font-size: 0.6875rem;
  color: var(--tp-text-muted);
  font-weight: 600;
}

.tp-volume-per {
  font-size: 0.6875rem;
  color: var(--tp-text-muted);
  font-weight: 600;
}

/* ATC Button */
.tp-btn-atc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 2rem;
  background: var(--tp-coral);
  color: white;
  border: none;
  border-radius: var(--tp-radius-pill);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

@media (max-width: 479px) {
  .tp-btn-atc {
    font-size: 0.9375rem;
    padding: 0.875rem 1.5rem;
    gap: 0.5rem;
  }
}

.tp-btn-atc:hover {
  background: #e5613d;
  transform: translateY(-1px);
}

.tp-btn-atc:active {
  transform: translateY(0);
}

.tp-atc-divider {
  opacity: 0.5;
}

/* Delivery Estimator */
.delivery-estimator {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, rgba(45, 139, 95, 0.08) 0%, rgba(45, 139, 95, 0.03) 100%);
  border: 1px solid rgba(45, 139, 95, 0.15);
  border-radius: 12px;
}

.delivery-icon {
  flex-shrink: 0;
  color: #2D8B5F;
  margin-top: 1px;
}

.delivery-text {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--tp-navy);
  margin: 0;
}

.delivery-text strong {
  color: #2D8B5F;
  font-weight: 700;
}

/* USP Strip */
.buybox-usps {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--tp-grey);
  width: 100%;
  box-sizing: border-box;
}

.usp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  text-align: center;
  flex: 1;
  min-width: 0;
}

.usp-icon-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.usp-item span {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--tp-text-muted);
  line-height: 1.35;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 480px) {
  .usp-icon-img {
    width: 40px;
    height: 40px;
  }
  .usp-item span {
    font-size: 0.75rem;
  }
}

@media (min-width: 640px) {
  .buybox-usps {
    gap: 1rem;
  }
  .usp-icon-img {
    width: 48px;
    height: 48px;
  }
  .usp-item span {
    font-size: 0.8125rem;
    line-height: 1.4;
  }
}

/* Payment Methods */
.buybox-payment {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--tp-grey);
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
}

.payment-label {
  font-size: 0.75rem;
  color: var(--tp-text-muted);
  font-weight: 500;
  width: 100%;
  text-align: center;
  margin-bottom: 0.25rem;
}

.payment-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  flex-wrap: wrap;
}

@media (min-width: 480px) {
  .buybox-payment {
    gap: 0.75rem;
  }
  .payment-label {
    width: auto;
    margin-bottom: 0;
  }
  .payment-icons {
    gap: 0.5rem;
  }
}

.payment-icons .payment-icon {
  height: 24px;
  width: auto;
  flex-shrink: 0;
}

@media (min-width: 480px) {
  .payment-icons .payment-icon {
    height: 28px;
  }
}

.payment-cod {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--tp-navy);
  background: var(--tp-grey);
  padding: 0.3125rem 0.5rem;
  border-radius: 6px;
  flex-shrink: 0;
}

@media (min-width: 480px) {
  .payment-cod {
    font-size: 0.75rem;
    padding: 0.375rem 0.625rem;
  }
}

/* ========== STATS BAR (mirrors PRX PDP) ========== */
.stats-bar {
  width: 100%;
  background: var(--tp-navy);
  padding: 2rem 1rem;
}

.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1rem;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--tp-coral);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .stats-bar {
    padding: 2.5rem 2rem;
  }

  .stats-bar-inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 900px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 0.875rem;
  }
}

@media (min-width: 1024px) {
  .stat-number {
    font-size: 3rem;
  }

  .stat-label {
    font-size: 0.9375rem;
  }
}

/* ========== SECTION GRID (image + text side by side) ========== */
.tp-section-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.tp-section-image {
  border-radius: var(--tp-radius-lg);
  overflow: hidden;
  max-width: 360px;
  margin: 0 auto;
  order: 2;
}

.tp-section-text {
  order: 1;
}

.tp-section-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--tp-radius-lg);
}

@media (min-width: 768px) {
  .tp-section-grid {
    grid-template-columns: 2fr 3fr;
    gap: 3rem;
  }

  .tp-section-image {
    order: unset;
    max-width: none;
  }

  .tp-section-text {
    order: unset;
  }

  .tp-section-grid--reverse {
    grid-template-columns: 3fr 2fr;
  }

  .tp-section-grid--reverse .tp-section-image {
    order: 2;
  }

  .tp-section-grid--reverse .tp-section-text {
    order: 1;
  }
}

.tp-section-text .section-headline {
  text-align: left;
}

/* ========== PAIN RECOGNITION ========== */
.tp-pain {
  padding: 4rem 0;
  background: white;
}

.tp-pain .section-headline {
  margin-bottom: 2rem;
}

.tp-pain-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tp-pain-list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--tp-text);
}

.tp-pain-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tp-coral);
}

.tp-pain-closing {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--tp-navy);
  margin: 2rem 0 0;
}

/* ========== FAILED SOLUTIONS ========== */
.tp-failed {
  padding: 4rem 0;
  background: var(--tp-grey);
}

.tp-failed .section-headline {
  margin-bottom: 1.5rem;
}

.tp-failed-body {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--tp-text-muted);
  margin: 0 0 1.5rem;
}

.tp-failed-punchline {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--tp-navy);
  margin: 0;
}

/* ========== HOW IT WORKS (MECHANISMS) ========== */
.tp-mechanisms {
  padding: 4rem 0;
  background: white;
}

.tp-mechanisms .section-headline {
  margin-bottom: 0.5rem;
}

.tp-mechanism-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .tp-mechanism-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tp-mech-card {
  background: white;
  border-radius: var(--tp-radius-lg);
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(10, 43, 76, 0.08);
  border-left: 4px solid transparent;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.tp-mech-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(10, 43, 76, 0.12);
}

.tp-mech-card--heat { border-left-color: #FF6B35; }
.tp-mech-card--cold { border-left-color: #4FC3F7; }
.tp-mech-card--compression { border-left-color: #7E57C2; }
.tp-mech-card--dark { border-left-color: #37474F; }

.tp-mech-icon {
  margin-bottom: 1rem;
}

.tp-mech-icon img {
  width: 40px;
  height: 40px;
}

.tp-mech-card h3 {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--tp-navy);
  margin: 0 0 0.75rem;
}

.tp-mech-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--tp-text-muted);
  margin: 0 0 0.75rem;
}

.tp-mech-use {
  font-size: 0.8125rem !important;
  font-weight: 600;
  font-style: italic;
  color: var(--tp-text) !important;
  margin-top: auto !important;
  margin-bottom: 0 !important;
  padding-top: 0.5rem;
  border-top: 1px solid var(--tp-grey);
}

/* ========== WHAT YOU GET (FEATURES) ========== */
.tp-features {
  padding: 4rem 0;
  background: white;
}

.tp-features .section-headline {
  margin-bottom: 2rem;
}

.tp-features-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .tp-features-grid {
    flex-direction: row;
    gap: 2.5rem;
    align-items: center;
  }
}

.tp-features-image--desktop {
  display: none;
}

.tp-features-image--mobile {
  order: -1;
  width: 100%;
}

.tp-features-image--mobile img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

@media (min-width: 768px) {
  .tp-features-image--mobile {
    display: none;
  }

  .tp-features-image--desktop {
    display: block;
    order: 1;
    flex-shrink: 0;
    width: 280px;
  }

  .tp-features-image--desktop img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
  }
}

@media (min-width: 1024px) {
  .tp-features-image--desktop {
    width: 320px;
  }
}

.tp-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
  min-width: 0;
}

.tp-features-list li {
  position: relative;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--tp-text);
  background: white;
  border-radius: 10px;
  border: 1px solid rgba(10, 43, 76, 0.06);
  box-shadow: 0 1px 3px rgba(10, 43, 76, 0.04);
  transition: box-shadow 0.2s;
}

.tp-features-list li:hover {
  box-shadow: 0 2px 8px rgba(10, 43, 76, 0.08);
}

.tp-features-list li::before {
  content: '';
  position: absolute;
  left: 0.75rem;
  top: 0.875rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 11px no-repeat,
    linear-gradient(135deg, #2D8B5F 0%, #34A77A 100%);
}

.tp-features-list li strong {
  color: var(--tp-navy);
  font-weight: 700;
}

/* ========== HOW TO USE ========== */
.tp-howto {
  padding: 4rem 0;
  background: var(--tp-bg);
}

.tp-howto .section-headline {
  margin-bottom: 2rem;
}

.tp-howto-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .tp-howto-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tp-howto-card {
  background: white;
  border-radius: var(--tp-radius-lg);
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(10, 43, 76, 0.08);
  border-top: 4px solid transparent;
}

.tp-howto-card--warm {
  border-top-color: #FF6B35;
}

.tp-howto-card--cold {
  border-top-color: #4FC3F7;
}

.tp-howto-card h3 {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--tp-navy);
  margin: 0 0 1.25rem;
}

.tp-howto-steps {
  padding-left: 1.5rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tp-howto-steps li {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--tp-text-muted);
}

.tp-howto-steps li::marker {
  font-weight: 700;
  color: var(--tp-navy);
}

.tp-howto-footer {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--tp-navy);
  margin: 2rem 0 0;
}

/* ========== SOCIAL PROOF ========== */
.tp-reviews {
  padding: 4rem 0;
  background: var(--tp-blue);
}

.tp-reviews .section-headline {
  color: var(--tp-navy);
  margin-bottom: 2rem;
}

.tp-reviews-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .tp-reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tp-review-card {
  background: white;
  border-radius: var(--tp-radius-lg);
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(10, 43, 76, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.tp-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(10, 43, 76, 0.12);
}

.tp-review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.75rem;
}

.tp-review-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--tp-coral);
  background: rgba(255, 122, 89, 0.1);
  padding: 0.25rem 0.625rem;
  border-radius: var(--tp-radius-pill);
  margin-bottom: 1rem;
  align-self: flex-start;
}

.tp-review-card blockquote {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--tp-text);
  margin: 0 0 1.25rem;
  font-style: italic;
  flex: 1;
}

.tp-review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--tp-grey);
}

.tp-review-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tp-coral) 0%, #E86A4A 100%);
  color: white;
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
}

.tp-review-info {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.tp-review-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--tp-navy);
}

.tp-review-verified {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #2D8B5F;
}

/* ========== THE QUESTION ========== */
/* The emotional pivot — only gradient on the page. Forces reflection, then resolve. */
.tp-question {
  padding: 4rem 0;
  background: linear-gradient(180deg, white 0%, #FFF5F1 100%);
}

.tp-question-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.tp-question-text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--tp-text);
  margin: 0 0 1.25rem;
}

.tp-question-price {
  font-size: 1.25rem;
  color: var(--tp-navy);
  margin: 0;
}

.tp-question-price strong {
  font-size: 1.5rem;
  font-weight: 900;
}

.tp-question-cta {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--tp-coral);
  text-decoration: none;
  transition: color 0.2s;
}

.tp-question-cta:hover {
  color: #e5613d;
}

/* ========== RESCUE PROTOCOL ========== */
.tp-protocol {
  padding: 4rem 0;
  background: white;
}

.tp-protocol-card {
  background: linear-gradient(135deg, #FFF7F5 0%, white 100%);
  border: 2px solid var(--tp-coral);
  border-radius: var(--tp-radius-lg);
  padding: 1.75rem;
  max-width: 640px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .tp-protocol-card {
    padding: 2rem 2.25rem;
  }
}

.tp-protocol-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--tp-coral);
  background: rgba(255, 122, 89, 0.1);
  padding: 0.3rem 0.65rem;
  border-radius: var(--tp-radius-pill);
  margin-bottom: 0.75rem;
}

.tp-protocol-title {
  font-size: clamp(1.125rem, 2.5vw, 1.3rem);
  font-weight: 900;
  color: var(--tp-navy);
  margin: 0.5rem 0 1rem;
  line-height: 1.3;
}

.tp-protocol-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tp-protocol-image {
  text-align: center;
  order: -1;
}

.tp-protocol-image img {
  width: 160px;
  height: auto;
  border-radius: 12px;
}

@media (min-width: 768px) {
  .tp-protocol-body {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }

  .tp-protocol-text {
    flex: 1;
    min-width: 0;
  }

  .tp-protocol-image {
    flex-shrink: 0;
    order: 1;
  }

  .tp-protocol-image img {
    width: 180px;
  }
}

.tp-protocol-text p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--tp-text-muted);
  margin: 0 0 0.5rem;
}

.tp-protocol-text p:last-child {
  margin-bottom: 0;
}

.tp-protocol-pricing {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}

.tp-protocol-price {
  font-size: 1rem;
  color: var(--tp-navy);
}

.tp-protocol-price strong {
  font-size: 1.25rem;
  font-weight: 900;
}

.tp-protocol-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

.tp-protocol-includes span,
.tp-protocol-includes a {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  background: rgba(162, 193, 217, 0.15);
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--tp-navy);
}

.tp-protocol-includes span::before,
.tp-protocol-includes a::before {
  content: '✓';
  margin-right: 0.35rem;
  color: #2D8B5F;
  font-weight: 700;
}

.tp-protocol-link {
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.tp-protocol-link:hover {
  color: var(--tp-coral);
}

.tp-protocol-save {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #2D8B5F;
}

.tp-protocol-btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  background: var(--tp-coral);
  color: white;
  border: none;
  border-radius: var(--tp-radius-pill);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.tp-protocol-btn:hover {
  background: #e5613d;
  transform: translateY(-1px);
}

/* ========== FAQ SECTION ========== */
.tp-faq {
  padding: 4rem 0;
  background: var(--tp-bg);
}

.tp-faq .section-headline {
  margin-bottom: 2rem;
}

.tp-faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.tp-faq .faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(10, 43, 76, 0.06);
}

.tp-faq .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 1.25rem;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--tp-navy);
  list-style: none;
}

.tp-faq .faq-question::-webkit-details-marker { display: none; }

.tp-faq .faq-icon {
  flex-shrink: 0;
  transition: transform 0.2s;
}

.tp-faq .faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.tp-faq .faq-answer {
  padding: 0 1.25rem 1.125rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--tp-text-muted);
}

.tp-faq .faq-answer p {
  margin: 0 0 0.75rem;
}

.tp-faq .faq-answer p:last-child {
  margin-bottom: 0;
}

/* ========== FINAL CTA ========== */
.tp-final-cta {
  padding: 4rem 0;
  background: #FFF7F5;
}

.tp-final-content {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.tp-final-content h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 900;
  color: var(--tp-navy);
  margin: 0 0 1rem;
}

.tp-final-content > p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--tp-text-muted);
  margin: 0 0 1rem;
}

.tp-final-trust {
  font-weight: 700;
  color: var(--tp-navy) !important;
  margin-bottom: 1.75rem !important;
}

.tp-final-content .tp-btn-atc {
  max-width: 440px;
  margin: 0 auto 1.25rem;
}

/* ========== SHARED HELPERS ========== */
.section-headline {
  text-align: center;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 900;
  color: var(--tp-navy);
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.section-subline {
  text-align: center;
  font-size: 1.0625rem;
  color: var(--tp-text-muted);
  margin: 0;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
