/* Non-React Car Rental Widget Styles */

/* ===== Premium Cards ===== */
.offers-widget .hover-highlight {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.offers-widget .hover-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.offers-widget .hover-highlight:hover::before {
  left: 100%;
}

.offers-widget .hover-highlight:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.offers-widget .card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
}

.offers-widget .supplier-logo-overlay {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  padding: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.offers-widget .supplier-logo {
  width: 50px;
  height: 25px;
  object-fit: contain;
}

.offers-widget .badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 10;
  border: none;
  box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
  font-weight: 600;
  letter-spacing: 0.5px;
  background-color: #dc3545;
  padding: 4px 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .offers-widget .supplier-logo-overlay {
    bottom: 5px;
    right: 5px;
  }

  /* .offers-widget .supplier-logo {
    width: 35px;
    height: 18px;
  } */

  .offers-widget .badge {
    top: 5px;
    left: 5px;
    font-size: 0.7rem;
  }
}