/* DealNow Widget Styles */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.dealnow-container {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  padding: 20px;
  background: white;
}

.dealnow-content {
  text-align: center;
  width: 100%;
}

.dealnow-header {
  margin-bottom: 24px;
}

.dealnow-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  color: #000000;
  text-align: center;
  margin-bottom: 8px;
}

.dealnow-vehicle {
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  color: #00B3DE;
  text-align: center;
}

.dealnow-offer {
  margin-top: 16px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  color: #063829;
}

.dealnow-offer-label {
  display: inline;
}

.dealnow-offer-amount {
  display: inline;
  margin-left: 8px;
}

/* Loading States */
.dealnow-loading {
  text-align: center;
  padding: 20px;
}

.dealnow-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s ease-in-out infinite;
  border-radius: 4px;
  margin: 0 auto 12px;
}

.dealnow-skeleton-title {
  height: 36px;
  width: 60%;
}

.dealnow-skeleton-subtitle {
  height: 36px;
  width: 50%;
}

.dealnow-skeleton-price {
  height: 20px;
  width: 25%;
  margin-top: 16px;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Error State */
.dealnow-error {
  text-align: center;
  color: #dc2626;
  font-size: 14px;
  padding: 20px;
}

/* CTA Button */
.dealnow-cta-button {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 24px auto 0;
  padding: 14px 32px;
  background: #00B3DE;
  color: white;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease;
}

.dealnow-cta-button:hover {
  background: #0099c2;
}

.dealnow-cta-button:active {
  background: #007fa3;
}

.dealnow-cta-button:focus {
  outline: 2px solid #00B3DE;
  outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .dealnow-title,
  .dealnow-vehicle {
    font-size: 24px;
    line-height: 32px;
  }

  .dealnow-offer {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .dealnow-title,
  .dealnow-vehicle {
    font-size: 20px;
    line-height: 28px;
  }

  .dealnow-offer {
    font-size: 14px;
  }
}
