/* Warranty Registration Success Page */
.warranty-success-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.ws-container {
  max-width: 600px;
  width: 100%;
  text-align: center;
}

/* Animated Checkmark */
.ws-check-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}

.ws-checkmark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.ws-checkmark-circle {
  stroke: #10B981;
  stroke-width: 2;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: ws-stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.ws-checkmark-check {
  stroke: #10B981;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: ws-stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.4s forwards;
}

@keyframes ws-stroke {
  100% { stroke-dashoffset: 0; }
}

/* Title */
.ws-title {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin: 0 0 8px;
}

.ws-subtitle {
  font-size: 16px;
  color: #6B7280;
  margin: 0 0 8px;
}

.ws-ref {
  font-size: 14px;
  color: #9CA3AF;
  margin: 0 0 32px;
}

/* Cards */
.ws-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  text-align: left;
}

.ws-card-header {
  background: #F9FAFB;
  padding: 14px 20px;
  font-weight: 600;
  font-size: 15px;
  color: #111;
  border-bottom: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
}

.ws-card-body {
  padding: 20px;
}

/* Coverage Grid */
.ws-coverage-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ws-coverage-item {
  text-align: center;
  padding: 8px 12px;
}

.ws-coverage-years {
  font-size: 36px;
  font-weight: 800;
  color: #111;
  line-height: 1;
}

.ws-coverage-years.ws-bonus {
  color: #10B981;
}

.ws-coverage-years.ws-total {
  color: #10B981;
  font-size: 42px;
}

.ws-coverage-label {
  font-size: 12px;
  color: #6B7280;
  margin-top: 4px;
  line-height: 1.3;
}

.ws-coverage-plus,
.ws-coverage-equals {
  font-size: 24px;
  font-weight: 700;
  color: #D1D5DB;
}

.ws-coverage-total {
  background: #F0FDF4;
  border-radius: 8px;
  padding: 12px 16px;
}

/* Covered Items */
.ws-covered-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.ws-covered-item {
  font-size: 14px;
  padding: 4px 0;
}

.ws-covered-yes {
  color: #059669;
}

.ws-covered-no {
  color: #9CA3AF;
  grid-column: 1 / -1;
}

/* Email Notice */
.ws-email-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F3F4F6;
  border-radius: 8px;
  padding: 14px 20px;
  margin: 24px 0;
  font-size: 14px;
  color: #4B5563;
}

/* Buttons */
.ws-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.ws-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
}

.ws-btn-primary {
  background: #111;
  color: #fff;
}

.ws-btn-primary:hover {
  background: #333;
  color: #fff;
  text-decoration: none;
}

.ws-btn-secondary {
  background: #F3F4F6;
  color: #374151;
}

.ws-btn-secondary:hover {
  background: #E5E7EB;
  color: #374151;
  text-decoration: none;
}

/* Mobile */
@media (max-width: 480px) {
  .ws-title { font-size: 22px; }
  .ws-coverage-grid { gap: 6px; }
  .ws-coverage-years { font-size: 28px; }
  .ws-coverage-years.ws-total { font-size: 32px; }
  .ws-covered-grid { grid-template-columns: 1fr; }
  .ws-actions { flex-direction: column; }
  .ws-btn { text-align: center; }
}
