/* ERG Supply custom styles */

/* Flash messages */
.flash-message {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.flash-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.flash-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.flash-info { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }
.flash-warning { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }

/* Product card hover */
.product-card:hover .product-image {
  transform: scale(1.05);
}
.product-image {
  transition: transform 0.3s ease;
}

/* Savings badge */
.savings-badge {
  background: linear-gradient(135deg, #059669, #10b981);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Price comparison */
.price-amazon {
  color: #9ca3af;
  text-decoration: line-through;
  font-size: 0.875rem;
}

/* Quantity input */
.qty-input {
  width: 4rem;
  text-align: center;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  padding: 0.375rem;
}

/* Search autocomplete */
.search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  z-index: 50;
  max-height: 20rem;
  overflow-y: auto;
}

/* Hero gradient */
.hero-gradient {
  background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 50%, #1e40af 100%);
}

/* Mobile: prevent zoom on input focus (iOS) */
@media (max-width: 639px) {
  input[type="text"],
  input[type="number"],
  input[type="email"],
  input[type="password"],
  select,
  textarea {
    font-size: 16px !important;
  }
}

/* Stripe Elements container */
#payment-element {
  min-height: 200px;
}
