/**
 * Estilos de Frontend - JA Tienda Híbrida
 */

/* Selector de tipo de cliente */
.ja-customer-type-selector {
    margin: 1rem 0;
    padding: 1rem;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
}

.ja-customer-type-selector label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.ja-customer-type-selector select {
    width: 100%;
    max-width: 300px;
    padding: 0.5rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    background-color: #fff;
}

.ja-customer-type-selector select:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Indicador de tipo de cliente */
.ja-customer-type-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
}

.ja-customer-type-badge.mayorista {
    background-color: #ffc107;
    color: #000;
}

.ja-customer-type-badge.minorista {
    background-color: #17a2b8;
    color: #fff;
}

/* Información de precios */
.ja-price-info {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #666;
}

.ja-price-comparison {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    padding: 1rem;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.ja-price-item {
    flex: 1;
}

.ja-price-item label {
    display: block;
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.ja-price-item .price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}
