/* ========== THANK YOU PAGE ========== */
.ty-headline-warning {
  padding: var(--space-8) 0;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  text-align: center;
  border-bottom: 4px solid var(--color-warning);
}
.ty-headline-warning__loader {
  width: 96px;
  height: 96px;
  margin: 0 auto var(--space-4);
  position: relative;
}
.ty-headline-warning__loader-track {
  fill: none;
  stroke: rgba(245, 158, 11, 0.2);
  stroke-width: 8;
}
.ty-headline-warning__loader-progress {
  fill: none;
  stroke: var(--color-warning);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 264 294;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}
.ty-headline-warning__percent {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: var(--fs-xl);
  color: #92400e;
}
.ty-headline-warning__title {
  font-size: var(--fs-2xl);
  color: #92400e;
  margin-bottom: var(--space-2);
}
.ty-headline-warning__text {
  font-size: var(--fs-base);
  color: #78350f;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .ty-headline-warning__title { font-size: var(--fs-3xl); }
}

.ty-next-steps {
  padding: var(--space-10) 0;
  background: #fff;
}
.ty-next-steps__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  max-width: 640px;
  margin: 0 auto;
  counter-reset: step;
}
.ty-next-steps__item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-5);
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  counter-increment: step;
}
.ty-next-steps__item::before {
  content: counter(step);
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: var(--fs-xl);
}
.ty-next-steps__title { font-weight: 700; margin-bottom: var(--space-1); }
.ty-next-steps__text { color: var(--color-text-muted); font-size: var(--fs-sm); }

.ty-stock-warning {
  padding: var(--space-8) 0;
  background: var(--color-urgency);
  color: #fff;
  text-align: center;
}
.ty-stock-warning__icon { font-size: 3rem; margin-bottom: var(--space-3); }
.ty-stock-warning h2 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-3);
}
.ty-stock-warning p { max-width: 600px; margin: 0 auto; opacity: 0.95; }

.ty-call-hours {
  padding: var(--space-10) 0;
}
.ty-call-hours__box {
  max-width: 560px;
  margin: 0 auto;
  background: var(--color-warning-bg);
  border: 2px solid var(--color-warning);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
}
.ty-call-hours__icon { font-size: 2.5rem; margin-bottom: var(--space-3); }
.ty-call-hours__title {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-3);
  color: #92400e;
}
.ty-call-hours__hours {
  font-size: var(--fs-lg);
  font-weight: 700;
  margin: var(--space-3) 0;
  color: #78350f;
}
.ty-call-hours__promise {
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid #fcd34d;
  font-size: var(--fs-sm);
  color: #78350f;
}

.ty-product-recall {
  padding: var(--space-10) 0;
  background: var(--color-bg-alt);
}
.ty-product-recall__inner {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: var(--space-6);
  align-items: center;
}
@media (min-width: 768px) {
  .ty-product-recall__inner { grid-template-columns: 1fr 1.2fr; }
}
/* No product hero on disk yet — thank-you pages use site photos only */
.ty-product-recall__inner--text-only {
  grid-template-columns: 1fr;
  max-width: 560px;
}
.ty-product-recall__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}
.ty-product-recall__title {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-3);
}
.ty-product-recall__text {
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  line-height: 1.6;
}
.ty-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: #25d366;
  color: #fff;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
}
.ty-whatsapp-btn:hover { background: #1eb759; transform: translateY(-2px); }

/* Site branding photos (team + operator) — same aspect as source assets */
.ty-site-photos {
  padding: var(--space-8) 0;
  background: #f8fafc;
  border-top: 1px solid var(--color-border);
}
.ty-site-photos .container {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.ty-site-photos__figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 2848 / 1331;
  background: var(--color-bg-alt);
  box-shadow: 0 4px 16px -8px rgba(0, 0, 0, 0.12);
}
.ty-site-photos__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
