/**
 * Estilos públicos - Pedidos Mayoristas
 */

/* Precios mayoristas */
.pm-wholesale-price {
  color: #2e7d32;
  font-weight: 600;
}

.pm-wholesale-badge {
  display: inline-block;
  background: #2e7d32;
  color: #fff;
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 500;
  margin-left: 8px;
}

.pm-savings {
  color: #d32f2f;
  font-size: 13px;
  font-weight: 500;
}

/* Mínimo de pedido */
.pm-minimum-order-notice {
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 4px;
  padding: 12px 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pm-minimum-order-notice .pm-icon {
  font-size: 20px;
  color: #856404;
}

.pm-minimum-order-notice p {
  margin: 0;
  color: #856404;
}

/* Tabla de productos mayoristas */
.pm-product-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.pm-product-table th,
.pm-product-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.pm-product-table th {
  background: #f5f5f5;
  font-weight: 600;
}

/* Formulario de cantidad */
.pm-quantity-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pm-quantity-wrapper input[type="number"] {
  width: 80px;
  text-align: center;
}

.pm-quantity-btn {
  width: 30px;
  height: 30px;
  border: 1px solid #ddd;
  background: #f5f5f5;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pm-quantity-btn:hover {
  background: #e0e0e0;
}

/* Resumen del pedido */
.pm-order-summary {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 20px;
}

.pm-order-summary h3 {
  margin-top: 0;
}

.pm-order-summary .pm-total {
  font-size: 24px;
  font-weight: 700;
  color: #2e7d32;
}

/* Estado del crédito */
.pm-credit-status {
  background: #e3f2fd;
  border: 1px solid #2196f3;
  border-radius: 4px;
  padding: 12px 16px;
  margin-bottom: 20px;
}

.pm-credit-available {
  color: #1565c0;
  font-weight: 600;
}