/* ============ SV Thank-You Widget ============ */
.svp-ty {
  font-family: 'Rajdhani', system-ui, -apple-system, sans-serif;
  background: #F8F8F8;
  padding: 48px 28px 60px;
  color: #0A0A0A;
}
.svp-ty__wrap {
  max-width: 920px;
  margin: 0 auto;
}
.svp-ty-placeholder {
  text-align: center;
  padding: 60px 20px;
  font-family: 'Rajdhani', system-ui, sans-serif;
  color: #5a5a5a;
}

/* Hero */
.svp-ty__hero {
  text-align: center;
  margin: 0 0 36px;
}
.svp-ty__icon {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  background: #3a8a3a;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 6px 22px rgba(58,138,58,0.25);
}
.svp-ty__headline {
  font-family: 'Rajdhani', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 12px;
  letter-spacing: 0.5px;
  color: #0A0A0A;
}
.svp-ty__subhead {
  font-size: 16px;
  line-height: 1.5;
  color: #5a5a5a;
  margin: 0 auto;
  max-width: 560px;
}

/* Meta row */
.svp-ty__meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #FFFFFF;
  border: 1px solid #D5D5D5;
  padding: 18px 22px;
  margin: 0 0 24px;
}
.svp-ty__meta-cell {
  display: flex; flex-direction: column; gap: 4px;
  padding: 6px 12px;
  border-left: 1px solid #ECECEC;
}
.svp-ty__meta-cell:first-child { border-left: none; padding-left: 0; }
.svp-ty__meta-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9A9A9A;
  font-weight: 600;
}
.svp-ty__meta-value {
  font-size: 16px;
  font-weight: 600;
  color: #0A0A0A;
}
.svp-ty__meta-value--total { color: #E31010; font-size: 18px; }

/* Section title */
.svp-ty__section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #0A0A0A;
  margin: 0 0 14px;
  padding: 0 0 8px;
  border-bottom: 2px solid #E31010;
}

/* Items */
.svp-ty__items {
  background: #FFFFFF;
  border: 1px solid #D5D5D5;
  padding: 22px 22px 8px;
  margin: 0 0 24px;
}
.svp-ty__item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #ECECEC;
}
.svp-ty__item:last-child { border-bottom: none; }
.svp-ty__item-img {
  width: 64px; height: 64px;
  object-fit: cover;
  border-radius: 2px;
  background: #F2F2F2;
  display: block;
}
.svp-ty__item-info { min-width: 0; }
.svp-ty__item-name {
  font-size: 16px;
  font-weight: 600;
  color: #0A0A0A;
  margin: 0 0 6px;
}
.svp-ty__item-qty {
  font-weight: 500;
  color: #7a7a7a;
  margin-left: 4px;
}
.svp-ty__addons {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin: 6px 0 0;
}
.svp-ty__addon {
  display: inline-flex; align-items: center; gap: 6px;
  background: #F2F2F2;
  color: #2A2A2A;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
}
.svp-ty__addon-price {
  color: #E31010;
  font-weight: 700;
}
.svp-ty__item-price {
  font-size: 18px;
  font-weight: 700;
  color: #E31010;
  white-space: nowrap;
  text-align: right;
}

/* Totals */
.svp-ty__totals {
  background: #FFFFFF;
  border: 1px solid #D5D5D5;
  padding: 18px 22px;
  margin: 0 0 24px;
}
.svp-ty__totals-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0;
}
.svp-ty__totals-row.is-grand {
  border-top: 1px solid #ECECEC;
  margin-top: 6px;
  padding-top: 14px;
}
.svp-ty__totals-lbl { color: #5a5a5a; font-size: 14px; }
.svp-ty__totals-val { color: #0A0A0A; font-size: 14px; font-weight: 600; }
.svp-ty__totals-row.is-grand .svp-ty__totals-lbl { color: #0A0A0A; font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; }
.svp-ty__totals-row.is-grand .svp-ty__totals-val { color: #E31010; font-size: 22px; font-weight: 700; }

/* Customer / Vehicle */
.svp-ty__customer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 0 24px;
}
.svp-ty__customer-block {
  background: #FFFFFF;
  border: 1px solid #D5D5D5;
  padding: 18px;
}
.svp-ty__customer-block h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #0A0A0A;
  margin: 0 0 10px;
  padding: 0 0 6px;
  border-bottom: 1px solid #ECECEC;
}
.svp-ty__customer-block p {
  font-size: 14px;
  line-height: 1.5;
  color: #2A2A2A;
  margin: 0 0 4px;
}
.svp-ty__customer-block p strong { color: #0A0A0A; font-weight: 600; }

/* Next steps */
.svp-ty__steps {
  background: #0A0A0A;
  color: #FFFFFF;
  padding: 22px 26px;
  margin: 0 0 28px;
  border-radius: 2px;
}
.svp-ty__steps-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.5);
  margin: 0 0 10px;
}
.svp-ty__steps-body {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255,255,255,0.7);
  white-space: pre-line;
}

/* CTAs */
.svp-ty__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 8px 0 0;
}
.svp-ty__btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 30px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 200px;
}
.svp-ty__btn--primary {
  background: #E31010;
  color: #FFFFFF;
}
.svp-ty__btn--primary:hover { background: #c80e0e; color: #fff; }
.svp-ty__btn--secondary {
  background: rgba(0,0,0,0);
  color: #0A0A0A;
  border-color: #D5D5D5;
}
.svp-ty__btn--secondary:hover { background: #0A0A0A; color: #fff; border-color: #0A0A0A; }

/* Responsive */
@media (max-width: 768px) {
  .svp-ty { padding: 30px 16px 40px; }
  .svp-ty__headline { font-size: 26px; }
  .svp-ty__meta { grid-template-columns: repeat(2, 1fr); }
  .svp-ty__meta-cell { border-left: none; padding: 6px 0; }
  .svp-ty__meta-cell:nth-child(odd) { border-right: 1px solid #ECECEC; padding-right: 12px; }
  .svp-ty__meta-cell:nth-child(even) { padding-left: 12px; }
  .svp-ty__customer { grid-template-columns: 1fr; }
  .svp-ty__item { grid-template-columns: 56px 1fr; }
  .svp-ty__item-img { width: 56px; height: 56px; }
  .svp-ty__item-price { grid-column: 1 / -1; text-align: left; padding-left: 72px; }
}